| Commit message (Expand) | Author | Age | Files | Lines |
| * | version now 3.1.5rc1v3.1.5rc1 | Benjamin Peterson | 2012-02-23 | 2 | -2/+2 |
|
|
| * | Remove reST markup from --help output. Also: O(n**2) is dict construction, n... | Georg Brandl | 2012-02-21 | 1 | -1/+1 |
|
|
| * | Fix typo. | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
|
|
| * | Issue #13703: add a way to randomize the hash values of basic types (str, byt... | Georg Brandl | 2012-02-20 | 2 | -0/+34 |
|
|
| * | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer | Charles-François Natali | 2012-02-18 | 1 | -0/+3 |
|
|
| * | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ... | Antoine Pitrou | 2012-01-27 | 1 | -0/+3 |
|
|
| * | Issue #11603: Fix a crash when __str__ is rebound as __repr__. | Antoine Pitrou | 2011-07-15 | 1 | -0/+3 |
|
|
| * | Issue #12502: asyncore: fix polling loop with AF_UNIX sockets. | Charles-François Natali | 2011-07-14 | 1 | -0/+2 |
|
|
| * | Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by | Charles-François Natali | 2011-07-02 | 1 | -0/+3 |
|
|
| * | onto 3.1.5 | Benjamin Peterson | 2011-06-11 | 1 | -0/+12 |
|
|
| * | 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 |
|
|
| * | Issue #9670: Increase the default stack size for secondary threads on | Ned Deily | 2011-05-28 | 1 | -0/+5 |
|
|
| * | 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 |
|
|
| * | Issue #12100: Don't reset incremental encoders of CJK codecs at each call to | Victor Stinner | 2011-05-24 | 1 | -0/+4 |
|
|
| * | 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 |
|
|
| * | Backport commit 33543b4e0e5d from Python 3.2: #10801: In zipfile, support | Victor Stinner | 2011-05-18 | 1 | -0/+3 |
|
|
| * | Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" instea... | Ronald Oussoren | 2011-05-17 | 1 | -0/+3 |
|
|
| * | Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas | Victor Stinner | 2011-05-16 | 1 | -0/+3 |
|
|
| * | Issue #10756: atexit normalizes the exception before displaying it. Patch by | Victor Stinner | 2011-05-15 | 1 | -0/+3 |
|
|
| * | Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. | Victor Stinner | 2011-05-15 | 1 | -0/+3 |
|
|
| * | Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. | Nadeem Vawda | 2011-05-14 | 1 | -0/+5 |
|
|
| * | Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail | Nadeem Vawda | 2011-05-14 | 1 | -0/+3 |
|
|
| * | #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 |
|
|
| * | Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. | Kurt B. Kaiser | 2011-05-11 | 1 | -0/+4 |
|
|
| * | Issue #10419: Fix build_scripts command of distutils to handle correctly | Victor Stinner | 2011-05-10 | 1 | -0/+4 |
|
|
| * | #12051: Fix segfault in json.dumps() while encoding highly-nested objects usi... | Ezio Melotti | 2011-05-10 | 1 | -0/+3 |
|
|
| * | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-09 | 1 | -0/+2 |
|
|
| * | Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, | Victor Stinner | 2011-05-09 | 1 | -0/+3 |
|
|
| * | Stop trying to use _xmlplus in the xml module. Closes #11164. | Martin v. Löwis | 2011-05-09 | 1 | -0/+2 |
|
|
| * | #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 othe... | Ezio Melotti | 2011-05-08 | 1 | -3/+5 |
|
|
| * | Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ... | Antoine Pitrou | 2011-05-07 | 2 | -0/+4 |
|
|
| * | #12017: Fix segfault in json.loads() while decoding highly-nested objects usi... | Ezio Melotti | 2011-05-07 | 1 | -0/+3 |
|
|
| * | #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 shut... | Ronald Oussoren | 2011-05-06 | 1 | -0/+4 |
|
|
| * | Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a | Victor Stinner | 2011-05-01 | 1 | -0/+3 |
|
|
| * | 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 |
|
|
| * | #11971: fix man page; it's -OO not -O0 | R David Murray | 2011-05-01 | 1 | -2/+2 |
|
|
| * | #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are... | Ezio Melotti | 2011-04-27 | 1 | -0/+3 |
|
|
| * | Update News entry for Issue11236 | Senthil Kumaran | 2011-04-26 | 1 | -0/+2 |
|
|