- 21 May, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
embedders of the interpreter to set sys.argv without also modifying sys.path. This helps fix `CVE-2008-5983 <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_.
-
- 20 May, 2010 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Brett Cannon yazdı
(e.g. from .os import sep) and it failed, import would still try the implicit relative import semantics of an absolute import (from os import sep). That's not right, so when level is negative, only do explicit relative import semantics. Fixes issue #7902. Thanks to Meador Inge for the patch.
-
Victor Stinner yazdı
Forward port some code from Python3: * join surrogate pairs if sizeof(Py_UNICODE)==2 * Enable non-BMP test on narrow builds using u"\U0001D121" instead of unichr(0x1D121)
-
- 19 May, 2010 4 kayıt (commit)
-
-
Tarek Ziadé yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Ezio Melotti yazdı
-
- 18 May, 2010 4 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
Fix issue #8573 (asyncore._strerror bug): fixed os.strerror typo; included NameError in the tuple of expected exception; added test case for asyncore._strerror.
-
Senthil Kumaran yazdı
-
Vinay Sajip yazdı
-
Senthil Kumaran yazdı
-
- 17 May, 2010 5 kayıt (commit)
-
-
Antoine Pitrou yazdı
it from another thread. Patch by Daniel Stutzbach.
-
Florent Xicluna yazdı
-
Tarek Ziadé yazdı
-
Florent Xicluna yazdı
-
Tarek Ziadé yazdı
-
- 16 May, 2010 4 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Antoine Pitrou yazdı
When the error queue is not emptied, strange things can happen on the next SSL call, depending on the OpenSSL version.
-
Antoine Pitrou yazdı
-
Victor Stinner yazdı
fo is not set if the open() fails.
-
- 15 May, 2010 6 kayıt (commit)
-
-
Victor Stinner yazdı
Regenerate (reindent) Python/graminit.c
-
Victor Stinner yazdı
Use untabify.py + emacs (python3 mode) + manual editions for Py_BEGIN_ALLOW_THREADS / Py_END_ALLOW_THREADS
-
Amaury Forgeot d'Arc yazdı
-
Victor Stinner yazdı
-
Benjamin Peterson yazdı
-
Stefan Krah yazdı
issuing a warning.
-
- 14 May, 2010 4 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
(Python2 doesn't have PyUnicode_DecodeFSDefault*() functions)
-
Victor Stinner yazdı
-
Brett Cannon yazdı
interpreter shutdown semantics. Same issue goes for the methods that __del__ called. Now all the methods capture the global objects it needs as default values to private parameters (could have stuck them on the class object itself, but since the objects have nothing directly to do with the class that seemed wrong). There is no test as making one that works is hard. This patch was verified against a consistently failing test in Mercurial's test suite, though, so it has been tested in some regard. Closes issue #5099. Thanks to Mary Stern for the bug report and Gabriel Genellina for writing another patch for the same issue and attempting to write a test.
-
- 13 May, 2010 9 kayıt (commit)
-
-
Brett Cannon yazdı
assuming framework-specific site-packages directories were being used.
-
Florent Xicluna yazdı
-
Florent Xicluna yazdı
-
Florent Xicluna yazdı
-
Benjamin Peterson yazdı
-
Florent Xicluna yazdı
-
Florent Xicluna yazdı
test_pep277 fails on "x86 Tiger" buildbot but not on "PPC Tiger".
-
Victor Stinner yazdı
Ooops, merge also r80334 (patch by r.david.murray)
-
Victor Stinner yazdı
UTF name on Mac OS X because the OS deny it (the name have to be a valid UTF8 string). Merge r80163 from py3k branch.
-