1. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
  2. c5705a8 Document itertools.product(). by Raymond Hettinger · 17 years ago
  3. af16ece Fix a few typos and layout glitches (more work is needed). by Guido van Rossum · 17 years ago
  4. 8bc0965 Removed uses of dict.has_key() from distutils, and uses of by Guido van Rossum · 17 years ago
  5. b5e2684 Remove news about float repr() -- issue 1580 is still in limbo. by Guido van Rossum · 17 years ago
  6. 7ef40bf Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description). by Eric Smith · 17 years ago
  7. 5a3c135 Added PEP 3101. by Eric Smith · 17 years ago
  8. d14600e Issue 1224. Now we support again the double slash in the URL. by Facundo Batista · 17 years ago
  9. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  10. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 17 years ago
  11. f88a077 Now we handle different the backup copy, because of security by Facundo Batista · 17 years ago
  12. f9db8a3 Move test_logging over to doctest. by Brett Cannon · 17 years ago
  13. 632fad3 Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer by Amaury Forgeot d'Arc · 17 years ago
  14. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 18 years ago
  15. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 18 years ago
  16. 2f0da53 Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them. by Christian Heimes · 18 years ago
  17. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 18 years ago
  18. a06a1a8 Add pickle support to ctypes types. by Thomas Heller · 18 years ago
  19. 0a40ffb #2063: correct order of utime and stime in os.times() result on Windows. by Georg Brandl · 18 years ago
  20. dad88dc Patch #1966: Break infinite loop in httplib when the servers by Martin v. Löwis · 18 years ago
  21. e0d30ef Patch #1736: Fix file name handling of _msi.FCICreate. by Martin v. Löwis · 18 years ago
  22. d058cd2 Rename rational.Rational to fractions.Fraction, to avoid name clash by Mark Dickinson · 18 years ago
  23. da614dc Complete an open todo on pickletools -- add a pickle optimizer. by Raymond Hettinger · 18 years ago
  24. ac094dc Add missing NEWS entry for r60695 by Nick Coghlan · 18 years ago
  25. 95d6447 Issue #1706: Require Windows 2000+ by Christian Heimes · 18 years ago
  26. 01612e7 Update big5hkscs codec to conform to the HKSCS:2004 revision. by Hye-Shik Chang · 18 years ago
  27. b01aa43 issue 2045: Infinite recursion when printing a subclass of defaultdict, by Amaury Forgeot d'Arc · 18 years ago
  28. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 18 years ago
  29. 5b07ebc Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence. by Raymond Hettinger · 18 years ago
  30. 2fc9263 Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN by Mark Dickinson · 18 years ago
  31. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 18 years ago
  32. 6075a82 Limit free list of method and builtin function objects to 256 entries each. by Christian Heimes · 18 years ago
  33. b709077 * Use the same code to profile for test_profile and test_cprofile. by Georg Brandl · 18 years ago
  34. 0192e43 Issue #2004: Use mode 0700 for temporary directories and default by Lars Gustäbel · 18 years ago
  35. 6fd03bb #1750076: Debugger did not step on every iteration of a while statement. by Amaury Forgeot d'Arc · 18 years ago
  36. 578a8ca Correct quotes in NEWS file by Amaury Forgeot d'Arc · 18 years ago
  37. 422051a Patch #1953 by Christian Heimes · 18 years ago
  38. cab3d98 Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does. by Amaury Forgeot d'Arc · 18 years ago
  39. 70c0c02 Add an entry for r60537. by Brett Cannon · 18 years ago
  40. eeed5b7 Merge this fix from the pybsddb tree: by Gregory P. Smith · 18 years ago
  41. 951cc0f Fixed bug #1983: Return from fork() is pid_t, not int by Christian Heimes · 18 years ago
  42. 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 18 years ago
  43. cba36bb Bug #1234: Fixed semaphore errors on AIX 5.2 by Christian Heimes · 18 years ago
  44. 4d4f270 Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detection. The speedup is about 25% for split() (571 / 457 usec) and 35% (175 / 127 usec )for splitlines() by Christian Heimes · 18 years ago
  45. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 18 years ago
  46. 6caad7d Move C API entries to the corresponding section. by Georg Brandl · 18 years ago
  47. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 18 years ago
  48. 29604a1 #1940: make it possible to use curses.filter() before curses.initscr() by Georg Brandl · 18 years ago
  49. 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 18 years ago
  50. 31eaafe News entry for r60265 (Issue 1920). by Amaury Forgeot d'Arc · 18 years ago
  51. eead05f News about recently fixed crashers: by Guido van Rossum · 18 years ago
  52. d7cf32e Updated for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
  53. b2302ba Applied #1069410 by Christian Heimes · 18 years ago
  54. 082c9b0 Fixed bug #1915: Python compiles with --enable-unicode=no again. However several extension methods and modules do not work without unicode support. by Christian Heimes · 18 years ago
  55. c226c31 Let pprint() support sets and frozensets (suggested by David Mertz). by Raymond Hettinger · 18 years ago
  56. 95cd5c0 - Fix Issue #1703448: A joined thread could show up in the by Gregory P. Smith · 18 years ago
  57. c64386b accepts and closes issue #1221598: adds an optional callback to ftplib.FTP by Gregory P. Smith · 18 years ago
  58. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 18 years ago
  59. f2dae0e #1715: include sub-extension modules in pydoc text output. by Georg Brandl · 18 years ago
  60. 26543b1 Add NEWS entry for #1882. by Georg Brandl · 18 years ago
  61. 2bdc48c Updated to include news on recent logging fixes and documentation changes. by Vinay Sajip · 18 years ago
  62. 5016015 #1530959: change distutils build dir for --with-pydebug python builds. by Georg Brandl · 18 years ago
  63. 864de82 #1555501: document plistlib and move it to the general library. by Georg Brandl · 18 years ago
  64. 5ca3fd8 mmap is an extension module. by Georg Brandl · 18 years ago
  65. 845c403 #1087741: make mmap.mmap the type of mmap objects, not a by Georg Brandl · 18 years ago
  66. 66e7363 #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. by Georg Brandl · 18 years ago
  67. 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 18 years ago
  68. 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 18 years ago
  69. d5e6cf2 #1664522: in urllib, don't read non-existing directories in ftp mode, by Georg Brandl · 18 years ago
  70. 2235011 #856047: respect the ``no_proxy`` env var when checking for proxies by Georg Brandl · 18 years ago
  71. 9b0d46d #1178141: add addinfourl.code to get http status code from urllib. by Georg Brandl · 18 years ago
  72. f25680a note for r60121 by Gregory P. Smith · 18 years ago
  73. 4a2762d Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox. by Andrew M. Kuchling · 18 years ago
  74. 350d03b Fixes/Accepts Patch for issue1189216 - Work properly with archives by Gregory P. Smith · 18 years ago
  75. b9ba075 note about r60104 by Gregory P. Smith · 18 years ago
  76. 060e685 Patch #1019808 from Federico Schwindt: Return correct socket error when by Andrew M. Kuchling · 18 years ago
  77. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 18 years ago
  78. c6fde72 Fix #1146: TextWrap vs words 1-character shorter than the width. by Georg Brandl · 18 years ago
  79. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 18 years ago
  80. 562133b missing from r60088 checkin. by Skip Montanaro · 18 years ago
  81. 6e22be7 Comment in NEWS regarding the change in trace.py. by Facundo Batista · 18 years ago
  82. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 18 years ago
  83. e45a77a Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that will call by Andrew M. Kuchling · 18 years ago
  84. 2b1b195 Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a by Facundo Batista · 18 years ago
  85. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 18 years ago
  86. bd865db Added win_add2path.py to Tools/scripts/ Added builddoc.bat to Doc/ by Christian Heimes · 18 years ago
  87. 44bd6c0 Issue #1861: Add read-only attribute listing upcoming events in the order they will be run. by Raymond Hettinger · 18 years ago
  88. bde4ae4 Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339 by Gregory P. Smith · 18 years ago
  89. 2b3ba58 entry for r60015 by Gregory P. Smith · 18 years ago
  90. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 18 years ago
  91. 3ad2acc8 Add news entry. by Raymond Hettinger · 18 years ago
  92. 415c1e3 Raise a TypeError instead of a ValueError when too many initializers by Thomas Heller · 18 years ago
  93. 02ec289 Raise a TypeError if conflicting positional and named arguments are by Thomas Heller · 18 years ago
  94. 902d307 Convert the internal ctypes array type cache to a WeakValueDict so by Thomas Heller · 18 years ago
  95. cad3724 Issue #1786 (by myself): pdb should use its own stdin/stdout around an by Guido van Rossum · 18 years ago
  96. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 18 years ago
  97. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 18 years ago
  98. 351e1a3 Fix 1698398: Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object. by Raymond Hettinger · 18 years ago
  99. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 18 years ago
  100. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 18 years ago