]> git.pld-linux.org Git - packages/python3.git/commitdiff
- seems no longer needed for Python 3.2
authorwrobell <wrobell@pld-linux.org>
Tue, 22 Feb 2011 20:39:52 +0000 (20:39 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    python3-cast-fix.patch -> 1.2

python3-cast-fix.patch [deleted file]

diff --git a/python3-cast-fix.patch b/python3-cast-fix.patch
deleted file mode 100644 (file)
index 21ba1e1..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- Python-3.1/Modules/python.c~       2009-05-29 18:22:26.000000000 +0200
-+++ Python-3.1/Modules/python.c        2009-06-29 16:18:12.800560478 +0200
-@@ -57,7 +57,7 @@
-       /* Overallocate; as multi-byte characters are in the argument, the
-          actual output could use less memory. */
-       argsize = strlen(arg) + 1;
--      res = PyMem_Malloc(argsize*sizeof(wchar_t));
-+      res = (wchar_t *)PyMem_Malloc(argsize*sizeof(wchar_t));
-       if (!res) goto oom;
-       in = (unsigned char*)arg;
-       out = res;
This page took 0.042705 seconds and 4 git commands to generate.