1. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  2. 7000e9e Issue #8644: Improve accuracy of timedelta.total_seconds method. by Mark Dickinson · 14 years ago
  3. 860852f Revert r81012. buildbot problems and its questionable of me to even by Gregory P. Smith · 14 years ago
  4. 56fe656 Fixes [issue7245] Better Ctrl-C support in pdb. by Gregory P. Smith · 14 years ago
  5. e54ddf1 Skip signal handler re-installation if it is not necessary. Issue 8354. by Jean-Paul Calderone · 14 years ago
  6. 534b8de towards 2.7 release candidate 1 by Benjamin Peterson · 14 years ago
  7. c251607 bump version to 2.7 beta 2 by Benjamin Peterson · 14 years ago
  8. dac6aeb4 Revert r80963 - it broke compilation everywhere by Antoine Pitrou · 14 years ago
  9. 2f88bfd Issue #8084: ensure that the --user directory by Ronald Oussoren · 14 years ago
  10. a0bea5d - Issue #8510: Update to autoconf2.65. by Matthias Klose · 14 years ago
  11. d875d3c Fix for issue #7724: make it possible to build using by Ronald Oussoren · 14 years ago
  12. 3843cd8 Issue #8571: Fix an internal error when compressing or decompressing a by Antoine Pitrou · 14 years ago
  13. 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à · 14 years ago
  14. d2f3e3f Issue #8625: Turn off gcc optimization in debug builds. by Mark Dickinson · 14 years ago
  15. 38f8122 Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fills by Tarek Ziadé · 14 years ago
  16. 5fb89df Mention how Clang's static anaylzer was run over Objects/ and Python/. by Brett Cannon · 14 years ago
  17. 9545a23 In a number of places code still revers by Ronald Oussoren · 14 years ago
  18. 8efa867 NEWS by Barry Warsaw · 14 years ago
  19. 3320696 The C function used by uuid.uuid4 is broken on by Ronald Oussoren · 14 years ago
  20. 9b90f7a Update the NEWS entry for issue #8211. by Marc-André Lemburg · 14 years ago
  21. 926fd4e Issue #8313: traceback.format_exception_only() encodes unicode message to by Victor Stinner · 14 years ago
  22. 06a7e20 On Windows, ctypes does no longer check the stack before and after by Thomas Heller · 14 years ago
  23. a8d2668 Issue #1533: fix inconsistency in range function argument processing: by Mark Dickinson · 14 years ago
  24. 4f96f5f Issue #8567: Fix incorrect precedence of signals in Decimal module. by Mark Dickinson · 14 years ago
  25. 268e487 Issue #8404: Fix set operations on dictionary views. by Alexandre Vassalotti · 14 years ago
  26. 945df9a Mention the code clean-up thanks to Clang's static analyzer in Modules. by Brett Cannon · 14 years ago
  27. f7fd8e4 Issue #7865: The close() method of :mod:`io` objects should not swallow by Antoine Pitrou · 14 years ago
  28. 27a1370 Issue #8576: logging updated to remove usage of find_unused_port(). by Vinay Sajip · 14 years ago
  29. c1f5c2f Update the Vim syntax highlight file. by Brett Cannon · 14 years ago
  30. 951919f Issue #4687: Fix accuracy of garbage collection runtimes displayed with by Antoine Pitrou · 14 years ago
  31. 4ef1c7e For for issue #7192: with this patch webbrowser.get("firefox") works on OSX by Ronald Oussoren · 14 years ago
  32. 54f9f83 Issue #8576: Remove use of find_unused_port() in test_smtplib and by Antoine Pitrou · 14 years ago
  33. a5cd182 Fixed #8577. distutils.sysconfig.get_python_inc() now differenciates buildir and srcdir by Tarek Ziadé · 14 years ago
  34. 01d149f Fix for issue #3646: with this patch it is possible to do a by Ronald Oussoren · 14 years ago
  35. 5c4c461 Issue #8464: tarfile.open(name, mode="w|") no longer creates by Lars Gustäbel · 14 years ago
  36. f56a288 Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versions by Antoine Pitrou · 14 years ago
  37. ed920434 Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-encoding: chunked" by Senthil Kumaran · 14 years ago
  38. 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 · 14 years ago
  39. 54677da Also mention patch submitter's name in NEWS, not just in the commit message by Nick Coghlan · 14 years ago
  40. 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 · 14 years ago
  41. 616de77 Issue #3928: Support 'os.mknod()' in Solaris by Jesus Cea · 14 years ago
  42. 6a10281 Issue #7449, last part (11): fix many tests if thread support is disabled by Victor Stinner · 14 years ago
  43. 4c7bcf1 Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newline by Antoine Pitrou · 14 years ago
  44. d9d147b Issue #7449, part 1: fix test_support.py for Python compiled without thread by Victor Stinner · 14 years ago
  45. a9bd6d5 reject None as the buffering argument like the C implementation does #8546 by Benjamin Peterson · 14 years ago
  46. 1dc6b08 Issue #8549: Fix compiling the _ssl extension under AIX. Patch by by Antoine Pitrou · 14 years ago
  47. 3939dcd Issue #6656: fix locale.format_string to handle escaped percents and mappings. by R. David Murray · 14 years ago
  48. 1994969 When DeprecationWarning was silenced by default, it also silenced any use of -Q by Brett Cannon · 14 years ago
  49. a624040 Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, by Antoine Pitrou · 14 years ago
  50. fc69af1 Issue #5103: SSL handshake would ignore the socket timeout and block by Antoine Pitrou · 14 years ago
  51. 4d3e372 The do_handshake() method of SSL objects now adjusts the blocking mode of by Antoine Pitrou · 14 years ago
  52. 5183ebd - Issue #8509: Fix quoting in help strings and code snippets in configure.in. by Matthias Klose · 14 years ago
  53. 4341e54 #7507: quote "!" in pipes.quote(); it is a special character for some shells. by Georg Brandl · 14 years ago
  54. b558f17 Issue #5238: Calling makefile() on an SSL object would prevent the by Antoine Pitrou · 14 years ago
  55. dfb299b Issue #7943: Fix circular reference created when instantiating an SSL by Antoine Pitrou · 14 years ago
  56. f6ce3cb issue8451: Making syslog module use sys.argv[0] for "ident". by Sean Reifscheider · 14 years ago
  57. a5c4b55 Issue #8108: Fix the unwrap() method of SSL objects when the socket has by Antoine Pitrou · 14 years ago
  58. 18e63fb Issue #7332: Remove the 16KB stack-based buffer in by Antoine Pitrou · 14 years ago
  59. 8a96d20 - Build the ossaudio extension on GNU/kFreeBSD. by Matthias Klose · 14 years ago
  60. c715a9e Issue #8484: Load all ciphers and digest algorithms when initializing by Antoine Pitrou · 14 years ago
  61. f0a4cce Add Tim Golden. by Martin v. Löwis · 14 years ago
  62. a92e81b Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm by Victor Stinner · 14 years ago
  63. 607f7c0 Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands by Giampaolo Rodolà · 14 years ago
  64. 8a12f94 Fixed #8463: added missing reference to bztar in shutil's documentation. by Tarek Ziadé · 14 years ago
  65. 7c587bf Issue #8438: Remove reference to the missing "surrogateescape" encoding by Antoine Pitrou · 14 years ago
  66. 37805e5 Fix for issue #7072 by Ronald Oussoren · 14 years ago
  67. cf445fc Fix Issue #3817: 225 is now considered a valid response code for ABOR by Giampaolo Rodolà · 14 years ago
  68. 24f09fd Issue #8279: Fix test_gdb failures. by Martin v. Löwis · 14 years ago
  69. 923cf65 Add Giampaolo. by Martin v. Löwis · 14 years ago
  70. 0a6373c Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change the by Antoine Pitrou · 14 years ago
  71. e0e8a87 Issue #3864: Skip three test_signal tests on freebsd6 due to platform bug. by R. David Murray · 14 years ago
  72. 821a8ea have a clear error when passing something > sys.maxsize to bytearray by Benjamin Peterson · 14 years ago
  73. 8c6d9d7 Fix issue2987: RFC2732 support for urlparse (IPv6 addresses) by Senthil Kumaran · 14 years ago
  74. 4fabac5 #5341: typo. by Georg Brandl · 14 years ago
  75. 661303f Issue #5277: Fix quote counting when parsing RFC 2231 encoded parameters. by R. David Murray · 14 years ago
  76. 1a14d3d Issue #7585: use tab between components in unified and context diff headers. by R. David Murray · 15 years ago
  77. 27ef937 Issue #7472: ISO-2022 charsets now consistently use 7bit CTE. by R. David Murray · 15 years ago
  78. 7f7765c Issue #8330: Fix expected output in test_gdb. by Martin v. Löwis · 15 years ago
  79. ab5ce72 Fix misplaced items and incorrect title. by Antoine Pitrou · 15 years ago
  80. fc53153 Issue #8374: Update the internal alias table in the :mod:`locale` module by Antoine Pitrou · 15 years ago
  81. 884d0a3 Two typo fixes by Andrew M. Kuchling · 15 years ago
  82. 1240906 towards beta 2 by Benjamin Peterson · 15 years ago
  83. fbac6c1 bump version to 2.7b1 by Benjamin Peterson · 15 years ago
  84. 7bc26b9 Issue #8348: Fix test ftp url in test_urllib2net. by Martin v. Löwis · 15 years ago
  85. e84089e Issue #8204: Fix test_ttk notebook test by forcing focus. by Martin v. Löwis · 15 years ago
  86. 1b287c7 Issue #8344: Fix test_ttk bug on FreeBSD. by Martin v. Löwis · 15 years ago
  87. 6d22cfc Document the libffi FreeBSD fix. by Jeroen Ruigrok van der Werven · 15 years ago
  88. 16ea548 Issue #8314: Fix unsigned long long bug in libffi on Sparc v8. by Martin v. Löwis · 15 years ago
  89. 5a5a37c document new PYTHONWARNINGS env var by Philip Jenvey · 15 years ago
  90. aebbaeb #7301: add the environment variable $PYTHONWARNINGS to supplement the -W by Philip Jenvey · 15 years ago
  91. 3a1dfa2 remove a optimization that resulted in unexpected behavior #8929 by Benjamin Peterson · 15 years ago
  92. 3b4c989 Issue #8193: Fix test_zlib failure with zlib 1.2.4. by Antoine Pitrou · 15 years ago
  93. 8279167 Misc/NEWS entry for r79843. by Mark Dickinson · 15 years ago
  94. 2b051d7 Add JP. by Georg Brandl · 15 years ago
  95. f9de534 Issue #8321: Give access to OpenSSL version numbers from the `ssl` module, by Antoine Pitrou · 15 years ago
  96. 76a23c1 fix dis on new style classes #8310 by Benjamin Peterson · 15 years ago
  97. bb006cf Add tests for cmp_to_key. by Raymond Hettinger · 15 years ago
  98. a551f31 Add functools.CmpToKey() by Raymond Hettinger · 15 years ago
  99. 4ceeeb0 ensure that the locale does not affect the tokenization of identifiers by Benjamin Peterson · 15 years ago
  100. 5f516ed Add count() method to collections.deque(). by Raymond Hettinger · 15 years ago