- d6703b5 Issue #5640: Fix Shift-JIS incremental encoder for error handlers different by Victor Stinner · 15 years ago
- 93f6615 typo by Georg Brandl · 15 years ago
- 266e454 ensure the last line has a trailing newline #8782 by Benjamin Peterson · 15 years ago
- eb318d3 return NotImplemented from Mapping when comparing to a non-mapping #8729 by Benjamin Peterson · 15 years ago
- 6a26560 Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows by Antoine Pitrou · 15 years ago
- eb3cd30 Turned out that if you used explicit relative import syntax by Brett Cannon · 15 years ago
- 8f69227 #8759: Fixed user paths in sysconfig for posix and os2 schemes by Tarek Ziadé · 15 years ago
- 83137c2 Issue #7079: Fix a possible crash when closing a file object while using by Antoine Pitrou · 15 years ago
- af87f9f Issue #1285086: Speed up urllib.quote and urllib.unquote for simple cases. by Florent Xicluna · 15 years ago
- 422545f Fixed #8688: Distutils now recalculates MANIFEST everytime. by Tarek Ziadé · 15 years ago
- db99092 NEWS: strip trailing spaces by Victor Stinner · 15 years ago
- 42a0ba7 subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to by Brett Cannon · 15 years ago
- da9af75 test_site was failing under darwin for non-framework builds because a test was by Brett Cannon · 15 years ago
- fc3bfad Issue #8681: Make the zlib module's error messages more informative when by Antoine Pitrou · 15 years ago
- 37ffc3e Issue #8672: Add a zlib test ensuring that an incomplete stream can be by Antoine Pitrou · 15 years ago
- 932e162 Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop by Mark Dickinson · 15 years ago
- ff46d6e Issue #8490: adds a more solid test suite for asyncore by Giampaolo Rodolà · 15 years ago
- 6001b0b Remove spurious newlines, and add version number. by Antoine Pitrou · 15 years ago
- 7000e9e Issue #8644: Improve accuracy of timedelta.total_seconds method. by Mark Dickinson · 15 years ago
- 860852f Revert r81012. buildbot problems and its questionable of me to even by Gregory P. Smith · 15 years ago
- 56fe656 Fixes [issue7245] Better Ctrl-C support in pdb. by Gregory P. Smith · 15 years ago
- e54ddf1 Skip signal handler re-installation if it is not necessary. Issue 8354. by Jean-Paul Calderone · 15 years ago
- 534b8de towards 2.7 release candidate 1 by Benjamin Peterson · 15 years ago
- c251607 bump version to 2.7 beta 2 by Benjamin Peterson · 15 years ago
- dac6aeb4 Revert r80963 - it broke compilation everywhere by Antoine Pitrou · 15 years ago
- 2f88bfd Issue #8084: ensure that the --user directory by Ronald Oussoren · 15 years ago
- a0bea5d - Issue #8510: Update to autoconf2.65. by Matthias Klose · 15 years ago
- d875d3c Fix for issue #7724: make it possible to build using by Ronald Oussoren · 15 years ago
- 3843cd8 Issue #8571: Fix an internal error when compressing or decompressing a by Antoine Pitrou · 15 years ago
- f7454fa Fix asyncore issues 8573 and 8483: _strerror might throw ValueError; asyncore.__getattr__ cheap inheritance caused confusing error messages when accessing undefined class attributes; added an alias for __str__ which now is used as a fallback for __repr__ by Giampaolo Rodolà · 15 years ago
- d2f3e3f Issue #8625: Turn off gcc optimization in debug builds. by Mark Dickinson · 15 years ago
- 38f8122 Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fills by Tarek Ziadé · 15 years ago
- 5fb89df Mention how Clang's static anaylzer was run over Objects/ and Python/. by Brett Cannon · 15 years ago
- 8efa867 NEWS by Barry Warsaw · 15 years ago
- 3320696 The C function used by uuid.uuid4 is broken on by Ronald Oussoren · 15 years ago
- 9b90f7a Update the NEWS entry for issue #8211. by Marc-André Lemburg · 15 years ago
- 926fd4e Issue #8313: traceback.format_exception_only() encodes unicode message to by Victor Stinner · 15 years ago
- 06a7e20 On Windows, ctypes does no longer check the stack before and after by Thomas Heller · 15 years ago
- a8d2668 Issue #1533: fix inconsistency in range function argument processing: by Mark Dickinson · 15 years ago
- 4f96f5f Issue #8567: Fix incorrect precedence of signals in Decimal module. by Mark Dickinson · 15 years ago
- 268e487 Issue #8404: Fix set operations on dictionary views. by Alexandre Vassalotti · 15 years ago
- 945df9a Mention the code clean-up thanks to Clang's static analyzer in Modules. by Brett Cannon · 15 years ago
- f7fd8e4 Issue #7865: The close() method of :mod:`io` objects should not swallow by Antoine Pitrou · 15 years ago
- 27a1370 Issue #8576: logging updated to remove usage of find_unused_port(). by Vinay Sajip · 15 years ago
- c1f5c2f Update the Vim syntax highlight file. by Brett Cannon · 15 years ago
- 951919f Issue #4687: Fix accuracy of garbage collection runtimes displayed with by Antoine Pitrou · 15 years ago
- 4ef1c7e For for issue #7192: with this patch webbrowser.get("firefox") works on OSX by Ronald Oussoren · 15 years ago
- 54f9f83 Issue #8576: Remove use of find_unused_port() in test_smtplib and by Antoine Pitrou · 15 years ago
- a5cd182 Fixed #8577. distutils.sysconfig.get_python_inc() now differenciates buildir and srcdir by Tarek Ziadé · 15 years ago
- 01d149f Fix for issue #3646: with this patch it is possible to do a by Ronald Oussoren · 15 years ago
- 5c4c461 Issue #8464: tarfile.open(name, mode="w|") no longer creates by Lars Gustäbel · 15 years ago
- f56a288 Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versions by Antoine Pitrou · 15 years ago
- ed920434 Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-encoding: chunked" by Senthil Kumaran · 15 years ago
- c5e4485 Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' instead of '-c' while searching for the module to be executed by Nick Coghlan · 15 years ago
- 54677da Also mention patch submitter's name in NEWS, not just in the commit message by Nick Coghlan · 15 years ago
- dfb45df Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro) by Nick Coghlan · 15 years ago
- 616de77 Issue #3928: Support 'os.mknod()' in Solaris by Jesus Cea · 15 years ago
- 6a10281 Issue #7449, last part (11): fix many tests if thread support is disabled by Victor Stinner · 15 years ago
- 4c7bcf1 Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newline by Antoine Pitrou · 15 years ago
- d9d147b Issue #7449, part 1: fix test_support.py for Python compiled without thread by Victor Stinner · 15 years ago
- a9bd6d5 reject None as the buffering argument like the C implementation does #8546 by Benjamin Peterson · 15 years ago
- 1dc6b08 Issue #8549: Fix compiling the _ssl extension under AIX. Patch by by Antoine Pitrou · 15 years ago
- 3939dcd Issue #6656: fix locale.format_string to handle escaped percents and mappings. by R. David Murray · 15 years ago
- 1994969 When DeprecationWarning was silenced by default, it also silenced any use of -Q by Brett Cannon · 15 years ago
- a624040 Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, by Antoine Pitrou · 15 years ago
- fc69af1 Issue #5103: SSL handshake would ignore the socket timeout and block by Antoine Pitrou · 15 years ago
- 4d3e372 The do_handshake() method of SSL objects now adjusts the blocking mode of by Antoine Pitrou · 15 years ago
- 5183ebd - Issue #8509: Fix quoting in help strings and code snippets in configure.in. by Matthias Klose · 15 years ago
- 4341e54 #7507: quote "!" in pipes.quote(); it is a special character for some shells. by Georg Brandl · 15 years ago
- b558f17 Issue #5238: Calling makefile() on an SSL object would prevent the by Antoine Pitrou · 15 years ago
- dfb299b Issue #7943: Fix circular reference created when instantiating an SSL by Antoine Pitrou · 15 years ago
- f6ce3cb issue8451: Making syslog module use sys.argv[0] for "ident". by Sean Reifscheider · 15 years ago
- a5c4b55 Issue #8108: Fix the unwrap() method of SSL objects when the socket has by Antoine Pitrou · 15 years ago
- 18e63fb Issue #7332: Remove the 16KB stack-based buffer in by Antoine Pitrou · 15 years ago
- 8a96d20 - Build the ossaudio extension on GNU/kFreeBSD. by Matthias Klose · 15 years ago
- c715a9e Issue #8484: Load all ciphers and digest algorithms when initializing by Antoine Pitrou · 15 years ago
- a92e81b Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm by Victor Stinner · 15 years ago
- 607f7c0 Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands by Giampaolo Rodolà · 15 years ago
- 8a12f94 Fixed #8463: added missing reference to bztar in shutil's documentation. by Tarek Ziadé · 15 years ago
- 7c587bf Issue #8438: Remove reference to the missing "surrogateescape" encoding by Antoine Pitrou · 15 years ago
- 37805e5 Fix for issue #7072 by Ronald Oussoren · 15 years ago
- cf445fc Fix Issue #3817: 225 is now considered a valid response code for ABOR by Giampaolo Rodolà · 15 years ago
- 24f09fd Issue #8279: Fix test_gdb failures. by Martin v. Löwis · 15 years ago
- 0a6373c Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change the by Antoine Pitrou · 15 years ago
- e0e8a87 Issue #3864: Skip three test_signal tests on freebsd6 due to platform bug. by R. David Murray · 15 years ago
- 821a8ea have a clear error when passing something > sys.maxsize to bytearray by Benjamin Peterson · 15 years ago
- 8c6d9d7 Fix issue2987: RFC2732 support for urlparse (IPv6 addresses) by Senthil Kumaran · 15 years ago
- 4fabac5 #5341: typo. by Georg Brandl · 15 years ago
- 661303f Issue #5277: Fix quote counting when parsing RFC 2231 encoded parameters. by R. David Murray · 15 years ago
- 1a14d3d Issue #7585: use tab between components in unified and context diff headers. by R. David Murray · 15 years ago
- 27ef937 Issue #7472: ISO-2022 charsets now consistently use 7bit CTE. by R. David Murray · 15 years ago
- 7f7765c Issue #8330: Fix expected output in test_gdb. by Martin v. Löwis · 15 years ago
- ab5ce72 Fix misplaced items and incorrect title. by Antoine Pitrou · 15 years ago
- fc53153 Issue #8374: Update the internal alias table in the :mod:`locale` module by Antoine Pitrou · 15 years ago
- 884d0a3 Two typo fixes by Andrew M. Kuchling · 15 years ago
- 1240906 towards beta 2 by Benjamin Peterson · 15 years ago
- fbac6c1 bump version to 2.7b1 by Benjamin Peterson · 15 years ago
- 7bc26b9 Issue #8348: Fix test ftp url in test_urllib2net. by Martin v. Löwis · 15 years ago
- e84089e Issue #8204: Fix test_ttk notebook test by forcing focus. by Martin v. Löwis · 15 years ago
- 1b287c7 Issue #8344: Fix test_ttk bug on FreeBSD. by Martin v. Löwis · 15 years ago