| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bump to 3.1.4v3.1.4 | Benjamin Peterson | 2011-06-11 | 2 | -2/+2 |
| | | |||||
| * | fix regression in netrc comment handling (closes #12009) | Benjamin Peterson | 2011-06-10 | 2 | -0/+6 |
| | | |||||
| * | simply use the Python version for pyexpat.__version__ #12221 | Benjamin Peterson | 2011-05-31 | 1 | -0/+10 |
| | | |||||
| * | bump to 3.1.4rc1 | Benjamin Peterson | 2011-05-29 | 2 | -4/+4 |
| | | |||||
| * | Issue #12205: Fix test_subprocess failure due to uninstalled test data. | Ned Deily | 2011-05-29 | 1 | -0/+2 |
| | | |||||
| * | Issue #985064: Make plistlib more resilient to faulty input plists. | Ned Deily | 2011-05-28 | 2 | -0/+4 |
| | | | | | Patch by Mher Movsisyan. | ||||
| * | Issue #9670: Increase the default stack size for secondary threads on | Ned Deily | 2011-05-28 | 1 | -0/+5 |
| | | | | | | | Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (patch by Ronald Oussoren) | ||||
| * | Issue #12175: RawIOBase.readall() now returns None if read() returns None. | Victor Stinner | 2011-05-25 | 1 | -0/+2 |
| | | |||||
| * | Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if | Victor Stinner | 2011-05-25 | 1 | -0/+3 |
| | | | | | the file is closed. | ||||
| * | Issue #12100: Don't reset incremental encoders of CJK codecs at each call to | Victor Stinner | 2011-05-24 | 1 | -0/+4 |
| | | | | | | their encode() method anymore, but continue to call the reset() method if the final argument is True. | ||||
| * | Issue #5715: In socketserver, close the server socket in the child process. | Charles-François Natali | 2011-05-24 | 1 | -0/+2 |
| | | |||||
| * | correctly lookup __dir__ | Benjamin Peterson | 2011-05-23 | 1 | -0/+3 |
| | | |||||
| * | Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore | Victor Stinner | 2011-05-19 | 1 | -0/+3 |
| | | | | | to be able to unload the module. | ||||
| * | Backport commit 33543b4e0e5d from Python 3.2: #10801: In zipfile, support | Victor Stinner | 2011-05-18 | 1 | -0/+3 |
| | | | | | | different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky. | ||||
| * | Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" ↵ | Ronald Oussoren | 2011-05-17 | 1 | -0/+3 |
| | | | | | | | | | instead of "UTF8" On MacOSX and OpenBSD (and possibly other BSDs) "en_US.UTF-8" is a valid locale while "en_US.UTF8" is not. As the former works on Linux as well it is better to normalize to that value. | ||||
| * | Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas | Victor Stinner | 2011-05-16 | 1 | -0/+3 |
| | | | | | Stührk. | ||||
| * | Issue #10756: atexit normalizes the exception before displaying it. Patch by | Victor Stinner | 2011-05-15 | 1 | -0/+3 |
| | | | | | | | Andreas Stührk. Backport a fix already applied to Python 3.2+ (4a82be47a948 + 5060a92a8597). | ||||
| * | Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. | Victor Stinner | 2011-05-15 | 1 | -0/+3 |
| | | | | | Patch written by Charles-François Natali. | ||||
| * | Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. | Nadeem Vawda | 2011-05-14 | 1 | -0/+5 |
| | | | | | | Raise an OverflowError if the input data is too large, instead of silently truncating the input and returning an incorrect result. | ||||
| * | Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail | Nadeem Vawda | 2011-05-14 | 1 | -0/+3 |
| | | | | | attribute when called without a max_length argument. | ||||
| * | #5723: Improve json tests to be executed with and without accelerations. | Ezio Melotti | 2011-05-14 | 1 | -0/+2 |
| | | |||||
| * | Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence | Antoine Pitrou | 2011-05-12 | 1 | -0/+5 |
| | | | | | | | on a file opened in read+write mode (namely: reading, seeking a bit forward, writing, then seeking before the previous write but still within buffered data, and writing again). | ||||
| * | Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. | Kurt B. Kaiser | 2011-05-11 | 1 | -0/+4 |
| | | | | | | With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused IDLE to exit. Converted to valid Unicode null in PythonCmd(). | ||||
| * | Issue #10419: Fix build_scripts command of distutils to handle correctly | Victor Stinner | 2011-05-10 | 1 | -0/+4 |
| | | | | | | non-ASCII scripts. Open and write the script in binary mode, but ensure that the shebang is decodable from UTF-8 and from the encoding of the script. | ||||
| * | #12051: Fix segfault in json.dumps() while encoding highly-nested objects ↵ | Ezio Melotti | 2011-05-10 | 1 | -0/+3 |
| | | | | | using the C accelerations. | ||||
| * | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-09 | 1 | -0/+2 |
| | | | | | | | | OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter! | ||||
| * | Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, | Victor Stinner | 2011-05-09 | 1 | -0/+3 |
| | | | | | clear the end-of-file indicator after CTRL+d. | ||||
| * | Stop trying to use _xmlplus in the xml module. Closes #11164. | Martin v. Löwis | 2011-05-09 | 1 | -0/+2 |
| | | | | | Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
| * | #11910: Fix test_heapq to skip the C tests when _heapq is missing. | Ezio Melotti | 2011-05-09 | 1 | -0/+2 |
| | | |||||
| * | Add back Misc/NEWS entry that got lost during merge, and fix a couple of ↵ | Ezio Melotti | 2011-05-08 | 1 | -3/+5 |
| | | | | | other things. | ||||
| * | Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ↵ | Antoine Pitrou | 2011-05-07 | 2 | -0/+4 |
| | | | | | Kasun Herath. | ||||
| * | #12017: Fix segfault in json.loads() while decoding highly-nested objects ↵ | Ezio Melotti | 2011-05-07 | 1 | -0/+3 |
| | | | | | using the C accelerations. | ||||
| * | #11999: sync based on comparing mtimes, not mtime to system clock | R David Murray | 2011-05-07 | 1 | -0/+4 |
| | | |||||
| * | Fix for issue 10684: Folders get deleted when trying to change case with ↵ | Ronald Oussoren | 2011-05-06 | 1 | -0/+4 |
| | | | | | shutil.move (case insensitive file systems only) | ||||
| * | Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a | Victor Stinner | 2011-05-01 | 1 | -0/+3 |
| | | | | | mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. | ||||
| * | Issue #9756: credit the author, Andreas Stührk (Trundle) | Victor Stinner | 2011-05-01 | 2 | -1/+2 |
| | | |||||
| * | Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the | Victor Stinner | 2011-05-01 | 1 | -0/+5 |
| | | | | | | | check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type). | ||||
| * | #11971: fix man page; it's -OO not -O0 | R David Murray | 2011-05-01 | 1 | -2/+2 |
| | | | | | Patch by Lars Michelsen. | ||||
| * | #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵ | Ezio Melotti | 2011-04-27 | 1 | -0/+3 |
| | | | | | are too long. | ||||
| * | Update News entry for Issue11236 | Senthil Kumaran | 2011-04-26 | 1 | -0/+2 |
| | | |||||
| * | #6780: fix starts/endswith error message to mention that tuples are accepted ↵ | Ezio Melotti | 2011-04-26 | 1 | -0/+3 |
| | | | | | too. | ||||
| * | #11901: add description of how bitfields are laid out to hexversion docs | R David Murray | 2011-04-25 | 1 | -0/+1 |
| | | | | | Patch by Sijin Joseph. | ||||
| * | pybench prep_times calculation error (closes #11895) | Jesus Cea | 2011-04-25 | 1 | -0/+1 |
| | | |||||
| * | startswith and endswith don't accept None as slice index. Patch by Torsten ↵ | Jesus Cea | 2011-04-20 | 2 | -0/+4 |
| | | | | | Becker. (closes #11828) | ||||
| * | merge | Raymond Hettinger | 2011-04-19 | 1 | -0/+6 |
| |\ | |||||
| | * | Fix sporadic failure in test_startfile. | Nadeem Vawda | 2011-04-18 | 1 | -0/+2 |
| | | | | | | | | | | | | | Wait for the child process to terminate before ending the test, so that the regrtest cleanup code doesn't get an error when it tries to delete the temporary CWD. | ||||
| | * | Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -0/+4 |
| | | | | | | | | | | | Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file. | ||||
| * | | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -0/+3 |
| |/ | |||||
| * | Fix minor subclassing issue with collections.Counter | Raymond Hettinger | 2011-04-15 | 1 | -0/+2 |
| | | |||||
| * | Issue #5057: fix a bug in the peepholer that led to non-portable pyc files ↵ | Ezio Melotti | 2011-04-15 | 1 | -1/+5 |
| | | | | | between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]). | ||||
