Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | (backport)Fix #10154 and #10090: locale normalizes the UTF-8 encoding to ↵ | Ronald Oussoren | 2011-05-17 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | "UTF-8" 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. | |||||
* | | | stop using the old brain-dead interface for providing attributes/methods | Benjamin Peterson | 2011-05-17 | 1 | -0/+4 | |
|/ / | | | | | | | This closes #12099. | |||||
* | | NEWS entry for fix of issue #9516 | Ronald Oussoren | 2011-05-15 | 1 | -0/+3 | |
| | | ||||||
* | | 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: In the `io` module, fix a flushing bug when doing a certain | Antoine Pitrou | 2011-05-12 | 1 | -0/+5 | |
| | | | | | | | | | | | | type of I/O sequence 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). | |||||
* | | #12051: Fix segfault in json.dumps() while encoding highly-nested objects ↵ | Ezio Melotti | 2011-05-10 | 1 | -0/+3 | |
| | | | | | | | | using the C accelerations. | |||||
* | | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in | Antoine Pitrou | 2011-05-10 | 2 | -0/+4 | |
| | | | | | | | | order to accept exactly one connection. Patch by Daniel Evers. | |||||
* | | (Merge 3.1) 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! | |||||
* | | (Merge 3.1) Issue #1195: Fix input() if it is interrupted by CTRL+d and then | Victor Stinner | 2011-05-09 | 1 | -0/+3 | |
| | | | | | | | | CTRL+c, clear the end-of-file indicator after CTRL+d. | |||||
* | | Issue 11164: Remove obsolete allnodes test from minidom test. | 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 | |
| | | ||||||
* | | Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ↵ | Antoine Pitrou | 2011-05-07 | 2 | -0/+4 | |
| | | | | | | | | Kasun Herath. | |||||
* | | #10169: Fix argument parsing in socket.sendto() to avoid error masking. | Ezio Melotti | 2011-05-07 | 1 | -0/+2 | |
| | | ||||||
* | | #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 | |
| | | ||||||
* | | Backport fix for issue #10684 from 3.x | Ronald Oussoren | 2011-05-06 | 1 | -0/+4 | |
| | | ||||||
* | | #11982: fix json.loads('""') to return u'' rather than ''. | Ezio Melotti | 2011-05-04 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-05-03 | 1 | -0/+4 | |
| | | | | | | | | | | doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes). | |||||
* | | Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was not | Victor Stinner | 2011-05-03 | 1 | -0/+3 | |
| | | | | | | | | written if PY_SSIZE_T_CLEAN is defined. | |||||
* | | (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X | Victor Stinner | 2011-05-03 | 1 | -0/+3 | |
| | | | | | | | | | | to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. | |||||
* | | (Merge 3.1) Issue #9756: credit the author, Andreas Stührk (Trundle) | Victor Stinner | 2011-05-01 | 2 | -1/+2 | |
| | | ||||||
* | | (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper | Victor Stinner | 2011-05-01 | 1 | -0/+5 | |
| | | | | | | | | | | | | descriptor, the 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. | |||||
* | | Fix closes issue10761: tarfile.extractall failure when symlinked files are ↵ | Senthil Kumaran | 2011-04-28 | 1 | -0/+3 | |
| | | | | | | | | present. | |||||
* | | Move NEWS entry to the right section. | Antoine Pitrou | 2011-04-27 | 1 | -4/+4 | |
| | | ||||||
* | | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* | Antoine Pitrou | 2011-04-27 | 1 | -0/+4 | |
| | | | | | | | | | | APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali. | |||||
* | | #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵ | Ezio Melotti | 2011-04-27 | 1 | -0/+3 | |
| | | | | | | | | are too long. | |||||
* | | Update NEWS 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) | |||||
* | | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -0/+3 | |
| | | ||||||
* | | 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. | |||||
* | | (Merge 3.1) 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. | |||||
* | | merge 11442 NEWS | Martin v. Löwis | 2011-04-17 | 1 | -0/+3 | |
|\ \ | |/ | ||||||
| * | merge 11442 NEWS | Martin v. Löwis | 2011-04-17 | 1 | -0/+3 | |
| |\ | ||||||
| | * | Issue 11442: Add NEWS entry for e9724d7abbc2 | Martin v. Löwis | 2011-04-17 | 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 | -0/+4 | |
| | | | | | | | | | | | | between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. u"\U00012345"[0]). | |||||
* | | | Issue #11467: Fix urlparse behavior when handling urls which contains scheme | Senthil Kumaran | 2011-04-15 | 1 | -0/+3 | |
| | | | | | | | | | | | | specific part only digits. Patch by Santoso Wijaya. | |||||
* | | | Fix Issue11474 - url2pathname() handling of '/C|/' on Windows | Senthil Kumaran | 2011-04-14 | 1 | -0/+3 | |
| | | | ||||||
* | | | #9233: Fix json.loads({}) to return a dict (instead of a list), when _json ↵ | Ezio Melotti | 2011-04-13 | 1 | -1/+4 | |
| | | | | | | | | | | | | is not available. | |||||
* | | | Issue 11718: Teach IDLE's open module dialog to find packages. | Raymond Hettinger | 2011-04-13 | 1 | -0/+6 | |
| | | | ||||||
* | | | update news in 2.7 for Issue #11703 | Senthil Kumaran | 2011-04-13 | 1 | -0/+3 | |
| | | | ||||||
* | | | #10019: Fix regression relative to 2.6: add newlines if indent=0 | R David Murray | 2011-04-13 | 1 | -0/+3 | |
| | | | | | | | | | | | | Patch by Amaury Forgeot d'Arc, updated by Sando Tosi. | |||||
* | | | Issue #11830: Remove unnecessary introspection code in the decimal module. | Raymond Hettinger | 2011-04-12 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | It was causing a failed import in the Turkish locale where the locale sensitive str.upper() method caused a name mismatch. | |||||
* | | | Add NEWS item for #5162. | brian.curtin | 2011-04-11 | 1 | -0/+3 | |
| | | | ||||||
* | | | #4877: Fix a segfault in xml.parsers.expat while attempting to parse a ↵ | Ezio Melotti | 2011-04-11 | 1 | -1/+4 | |
| | | | | | | | | | | | | closed file. |