1. 27ef937 Issue #7472: ISO-2022 charsets now consistently use 7bit CTE. by R. David Murray · 15 years ago
  2. 7f7765c Issue #8330: Fix expected output in test_gdb. by Martin v. Löwis · 15 years ago
  3. ab5ce72 Fix misplaced items and incorrect title. by Antoine Pitrou · 15 years ago
  4. fc53153 Issue #8374: Update the internal alias table in the :mod:`locale` module by Antoine Pitrou · 15 years ago
  5. 884d0a3 Two typo fixes by Andrew M. Kuchling · 15 years ago
  6. 1240906 towards beta 2 by Benjamin Peterson · 15 years ago
  7. fbac6c1 bump version to 2.7b1 by Benjamin Peterson · 15 years ago
  8. 7bc26b9 Issue #8348: Fix test ftp url in test_urllib2net. by Martin v. Löwis · 15 years ago
  9. e84089e Issue #8204: Fix test_ttk notebook test by forcing focus. by Martin v. Löwis · 15 years ago
  10. 1b287c7 Issue #8344: Fix test_ttk bug on FreeBSD. by Martin v. Löwis · 15 years ago
  11. 6d22cfc Document the libffi FreeBSD fix. by Jeroen Ruigrok van der Werven · 15 years ago
  12. 16ea548 Issue #8314: Fix unsigned long long bug in libffi on Sparc v8. by Martin v. Löwis · 15 years ago
  13. aebbaeb #7301: add the environment variable $PYTHONWARNINGS to supplement the -W by Philip Jenvey · 15 years ago
  14. 3a1dfa2 remove a optimization that resulted in unexpected behavior #8929 by Benjamin Peterson · 15 years ago
  15. 3b4c989 Issue #8193: Fix test_zlib failure with zlib 1.2.4. by Antoine Pitrou · 15 years ago
  16. 8279167 Misc/NEWS entry for r79843. by Mark Dickinson · 15 years ago
  17. f9de534 Issue #8321: Give access to OpenSSL version numbers from the `ssl` module, by Antoine Pitrou · 15 years ago
  18. 76a23c1 fix dis on new style classes #8310 by Benjamin Peterson · 15 years ago
  19. bb006cf Add tests for cmp_to_key. by Raymond Hettinger · 15 years ago
  20. a551f31 Add functools.CmpToKey() by Raymond Hettinger · 15 years ago
  21. 4ceeeb0 ensure that the locale does not affect the tokenization of identifiers by Benjamin Peterson · 15 years ago
  22. 5f516ed Add count() method to collections.deque(). by Raymond Hettinger · 15 years ago
  23. 8a95071 Add Misc/NEWS entry for r79609. by Mark Dickinson · 15 years ago
  24. 4846a8e Issue #8300: Let struct.pack use __index__ to convert and pack non-integers. by Mark Dickinson · 15 years ago
  25. 34c35b2 Add subtract() method to collections.Counter() objects. by Raymond Hettinger · 15 years ago
  26. 0000295 Issue #1222585: Added LDCXXSHARED for C++ support by Tarek Ziadé · 15 years ago
  27. 1c7c11e give TypeError when trying to set T_STRING_INPLACE by Benjamin Peterson · 15 years ago
  28. 85108e6 Add note about #1220212 (os.kill on Windows) by Brian Curtin · 15 years ago
  29. a04c7a0 Issue #8038: Addition of unittest.TestCase.assertNotRegexpMatches by Michael Foord · 15 years ago
  30. 7c63eee Issue #8294: Allow float and Decimal arguments in Fraction constructor. by Mark Dickinson · 15 years ago
  31. 19479fa Add a line about #7347 to Misc\News by Brian Curtin · 15 years ago
  32. d44b2fc Issue 7994: Make object.__format__ with a non-empty format string a PendingDecprecationWarning. Still need to remove uses of this from various tests. by Eric Smith · 15 years ago
  33. 3b958e3 Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is by Larry Hastings · 15 years ago
  34. 5ac006d Capsule-related changes: by Larry Hastings · 15 years ago
  35. f3eeca1 Issue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable. by Mark Dickinson · 15 years ago
  36. e096e82 Issue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation. by Mark Dickinson · 15 years ago
  37. 99d8096 Issue #2531: Make float-to-decimal comparisons return correct results. by Mark Dickinson · 15 years ago
  38. 76c8649 Issue #8276: PyEval_CallObject() is now only available in macro form. The by Antoine Pitrou · 15 years ago
  39. bf0dfb3 Issue #8032: For gdb7, a python-gdb.py file is added to the build, by Martin v. Löwis · 15 years ago
  40. a57df2c Issue #8268: Old-style classes (not just instances) now support weak references. by Antoine Pitrou · 15 years ago
  41. f7f2d6f - Issue #8233: When run as a script, py_compile.py optionally takes a single by Barry Warsaw · 15 years ago
  42. 6032c25 Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. by Antoine Pitrou · 15 years ago
  43. 7e21325 add inspect.getcallargs, which binds function arguments like a normal call #3135 by Benjamin Peterson · 15 years ago
  44. 75c6676 #8263: Now regrtest.py will report a failure if it receives a KeyboardInterrupt (SIGINT). by Florent Xicluna · 15 years ago
  45. 58b6566 Highlight the change of behavior related to r79494. Now VT and FF are linebreaks. by Florent Xicluna · 15 years ago
  46. 22b2438 #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. by Florent Xicluna · 15 years ago
  47. e6410c5 Backport of weakref.WeakSet and tests from Python 3. by Michael Foord · 15 years ago
  48. 9588d99 Add Misc/NEWS entry for r79455. by Mark Dickinson · 15 years ago
  49. eee91cd Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking by Antoine Pitrou · 15 years ago
  50. 8aa5a58 #8207: Fix test_pep277 on OS X by Florent Xicluna · 15 years ago
  51. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  52. 6cbf90f Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler by Victor Stinner · 15 years ago
  53. b0623d6 logging: Added LOG_FTP for SysLogHandler and updated documentation. by Vinay Sajip · 15 years ago
  54. 176cda1 Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only). by Florent Xicluna · 15 years ago
  55. e1f4c92 #7667: Fix doctest failures with non-ASCII paths. by Florent Xicluna · 15 years ago
  56. 513d9ae Issue #7512: shutil.copystat() could raise an OSError when the filesystem by Antoine Pitrou · 15 years ago
  57. 9e7a4c9 Issue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated. by Florent Xicluna · 15 years ago
  58. c9d1a78 Issue #7860: platform.uname now reports the correct 'machine' type by R. David Murray · 15 years ago
  59. 804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. by Vinay Sajip · 15 years ago
  60. 6557aac pybsddb 4.8.4 integration. Please, comment in issue #8156 by Jesus Cea · 15 years ago
  61. 31e928e Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time. by Vinay Sajip · 15 years ago
  62. c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
  63. 3017a7b Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. by Vinay Sajip · 15 years ago
  64. 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
  65. 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
  66. 448da71 Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets. by Antoine Pitrou · 15 years ago
  67. f83b308 Issue #1628484: The Makefile doesn't ignore the CFLAGS environment by Antoine Pitrou · 15 years ago
  68. 77a8849 #8180: Fix test_pep277 on OS X and add more tests for special Unicode normalization cases. by Florent Xicluna · 15 years ago
  69. cf82fa6 Issue #8179: Fix macpath.realpath() on a non-existing path. by Florent Xicluna · 15 years ago
  70. e9fbf2b - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument. by Matthias Klose · 15 years ago
  71. a70f349 Make python-config support multiple option flags on the same command line, rather than requiring one invocation per flag. by Collin Winter · 15 years ago
  72. 001a395 Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. by Collin Winter · 15 years ago
  73. 2e0a53f Issue #8024: Update the Unicode database to 5.2 by Florent Xicluna · 15 years ago
  74. d7b731d Issue #8104: socket.recv_into() and socket.recvfrom_into() now support by Antoine Pitrou · 15 years ago
  75. 0dee9c1 prevent lambda functions from having docstrings #8164 by Benjamin Peterson · 15 years ago
  76. 8b41168 - Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox by Matthias Klose · 15 years ago
  77. 3cc8f21 Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache. by Florent Xicluna · 15 years ago
  78. b13d04c - Issue #8140: extend compileall to compile single files. Add -i option. by Matthias Klose · 15 years ago
  79. 358e7ff - Issue #7356: ctypes.util: Make parsing of ldconfig output independent of by Matthias Klose · 15 years ago
  80. 24e4e16 Issue #6716: Quote -x arguments of compileall in MSI installer. by Martin v. Löwis · 15 years ago
  81. 54cc539 - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. by Matthias Klose · 15 years ago
  82. 817acef - Issue #8142: Update libffi to the 3.0.9 release. by Matthias Klose · 15 years ago
  83. 11d9323 fix freebsd linking #7705 by Benjamin Peterson · 15 years ago
  84. 8122bdd Add a link about the Public Review Issue #29 by Ezio Melotti · 15 years ago
  85. ba83f82 Format and rewrap 2.7 NEWS consistently. by Georg Brandl · 15 years ago
  86. 02b3f0a Issue #7993: Add a test of IO packet processing bandwidth to ccbench. by Antoine Pitrou · 15 years ago
  87. 7522734 NEWS: issue #7774 is related to Library (sys), not Core and Builtins by Victor Stinner · 15 years ago
  88. ecfa08f Issue #8117: Updated NEWS entry and added to logging documentation. by Vinay Sajip · 15 years ago
  89. 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 15 years ago
  90. 3e8c189 Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too. by Florent Xicluna · 15 years ago
  91. 4a7e0c85 Issue #7774: Set sys.executable to an empty string if argv[0] has been by Victor Stinner · 15 years ago
  92. 8567761 Issue #7880: Fix sysconfig when the python executable is a symbolic link. by Florent Xicluna · 15 years ago
  93. 6664426 Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt by Victor Stinner · 15 years ago
  94. 47627d5 #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. by Florent Xicluna · 15 years ago
  95. 4617e50 Issue #7143: get_payload used to strip any trailing newline from a by R. David Murray · 15 years ago
  96. 154b7ad Issue #1530559: When packing a non-integer with any integer conversion by Mark Dickinson · 15 years ago
  97. 21e99f4 #5341: more built-in vs builtin fixes. by Georg Brandl · 15 years ago
  98. 6de9e93 Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are by Florent Xicluna · 15 years ago
  99. 5da7e7c post release update by Benjamin Peterson · 15 years ago
  100. 8e7c117 bump version to 2.7a4 by Benjamin Peterson · 15 years ago