1. a5573b3 The output directory for tests that compare against stdout is now gone! by Brett Cannon · 17 years ago
  2. aa5778d Remove our implementation of memmove() and strerror(); both are in the C89 by Brett Cannon · 17 years ago
  3. b7ec8e5 test_errno was a no-op test; now it actually tests things and uses unittest. by Brett Cannon · 17 years ago
  4. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 17 years ago
  5. 0bb7950 Move test_extcall to doctest. by Brett Cannon · 17 years ago
  6. ba17cfc Convert test_dummy_threading and test_dbm to unittest. by Brett Cannon · 17 years ago
  7. 6eeaddc Convert test_strftime, test_getargs, and test_pep247 to use unittest. by Brett Cannon · 17 years ago
  8. 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 17 years ago
  9. 0aed07a Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. by Eric Smith · 17 years ago
  10. f48f9d3 Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms by Gregory P. Smith · 17 years ago
  11. 1b4e45b Allow Gnu gcc's to build python on OSX by removing -Wno-long-double, by Jeffrey Yasskin · 17 years ago
  12. 400aeda Add a warning for code like: assert (0, 'message') by Neal Norwitz · 17 years ago
  13. 32ed8c2 . by Skip Montanaro · 17 years ago
  14. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  15. bf7b0b7 Patch #2284: add -x64 option to rt.bat. by Martin v. Löwis · 17 years ago
  16. 1f5182b Convert test_fcntl to unittest. by Brett Cannon · 17 years ago
  17. 4a6e8d6 Move test_gdbm to use unittest. by Brett Cannon · 17 years ago
  18. 2e0f9f3 Convert test_contains, test_crypt, and test_select to unittest. by Brett Cannon · 17 years ago
  19. b8d3735 Move test_tokenize to doctest. by Brett Cannon · 17 years ago
  20. 66865d2 Move test_thread over to unittest. Commits GHOP 237. by Brett Cannon · 17 years ago
  21. 53bdf09 Issue 2274: Add heapq.heappushpop(). by Raymond Hettinger · 17 years ago
  22. c54aec1 Issue 1106316. post_mortem()'s parameter, traceback, is now by Facundo Batista · 17 years ago
  23. 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 17 years ago
  24. e75f59a Progress on issue #1193577 by adding a polling .shutdown() method to by Jeffrey Yasskin · 17 years ago
  25. 98aa805 Bug #2220: handle rlcompleter attribute match failure more gracefully. by Georg Brandl · 17 years ago
  26. a7bd27f #2225: return nonzero status code from py_compile if not all files could be compiled. by Georg Brandl · 17 years ago
  27. 810ea29 Add missing NEWS entry for r61263. by Georg Brandl · 17 years ago
  28. d2bbe52 Patch #2232: os.tmpfile might fail on Windows if the user has no by Martin v. Löwis · 17 years ago
  29. 66f91ea C implementation of itertools.permutations(). by Raymond Hettinger · 17 years ago
  30. f3c0559 Issue 1872: Changed the struct module typecode from 't' to '?', for by Thomas Heller · 17 years ago
  31. 78b8f44 News entry for yesterdays commit. by Thomas Heller · 17 years ago
  32. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
  33. c6511a8 Typo fix by Andrew M. Kuchling · 17 years ago
  34. 91ae0c9 Typo fix by Andrew M. Kuchling · 17 years ago
  35. 608c1d8 Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too? by Christian Heimes · 17 years ago
  36. 56c4deb Refactor test_logging to use unittest. This should finally solve the flakiness by Brett Cannon · 17 years ago
  37. 11ab807 Added note about update of sqlite3 module. by Gerhard Häring · 17 years ago
  38. 65475fd Set things up for 2.6a2. by Barry Warsaw · 17 years ago
  39. 7c07523 Add date to NEWS by Barry Warsaw · 17 years ago
  40. a8ee94b fix typo by Fred Drake · 17 years ago
  41. 5297361 Bump to version 2.6a1 by Barry Warsaw · 17 years ago
  42. 1ddf1d8 Add __format__ method to Decimal, to support PEP 3101 by Mark Dickinson · 17 years ago
  43. b4cbc98 Add alternate constructor for itertools.chain(). by Raymond Hettinger · 17 years ago
  44. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  45. ca37661 Add a timing flag to Trace so you can see where slowness occurs by Neal Norwitz · 17 years ago
  46. 8c460d5 #1627: httplib now ignores negative Content-Length headers. by Georg Brandl · 17 years ago
  47. 2363503 #900744: If an invalid chunked-encoding header is sent by a server, by Georg Brandl · 17 years ago
  48. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  49. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  50. 4034685 Issue #2051 and patch from Alexander Belopolsky: by Christian Heimes · 17 years ago
  51. f0476e8 Patch #1957: syslogmodule: Release GIL when calling syslog(3) by Christian Heimes · 17 years ago
  52. ad61bc8 #2067: file.__exit__() now calls subclasses' close() method. by Georg Brandl · 17 years ago
  53. 7e251e8 Issue 1089358. Adds the siginterrupt() function, that is just a by Facundo Batista · 17 years ago
  54. 1647923 #1492: allow overriding BaseHTTPServer's content type for error messages. by Georg Brandl · 17 years ago
  55. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  56. b12f0b5 Issue 1781. Now ConfigParser.add_section does not let you add a by Facundo Batista · 17 years ago
  57. fc2d010 Issue 1881. Increased the stack limit from 500 to 1500. Also added by Facundo Batista · 17 years ago
  58. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
  59. c5705a8 Document itertools.product(). by Raymond Hettinger · 17 years ago
  60. af16ece Fix a few typos and layout glitches (more work is needed). by Guido van Rossum · 17 years ago
  61. 8bc0965 Removed uses of dict.has_key() from distutils, and uses of by Guido van Rossum · 17 years ago
  62. b5e2684 Remove news about float repr() -- issue 1580 is still in limbo. by Guido van Rossum · 17 years ago
  63. 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
  64. 5a3c135 Added PEP 3101. by Eric Smith · 17 years ago
  65. d14600e Issue 1224. Now we support again the double slash in the URL. by Facundo Batista · 17 years ago
  66. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  67. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 17 years ago
  68. f88a077 Now we handle different the backup copy, because of security by Facundo Batista · 17 years ago
  69. f9db8a3 Move test_logging over to doctest. by Brett Cannon · 17 years ago
  70. 632fad3 Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer by Amaury Forgeot d'Arc · 17 years ago
  71. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 17 years ago
  72. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 17 years ago
  73. 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 · 17 years ago
  74. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
  75. a06a1a8 Add pickle support to ctypes types. by Thomas Heller · 17 years ago
  76. 0a40ffb #2063: correct order of utime and stime in os.times() result on Windows. by Georg Brandl · 17 years ago
  77. dad88dc Patch #1966: Break infinite loop in httplib when the servers by Martin v. Löwis · 17 years ago
  78. e0d30ef Patch #1736: Fix file name handling of _msi.FCICreate. by Martin v. Löwis · 17 years ago
  79. d058cd2 Rename rational.Rational to fractions.Fraction, to avoid name clash by Mark Dickinson · 17 years ago
  80. da614dc Complete an open todo on pickletools -- add a pickle optimizer. by Raymond Hettinger · 17 years ago
  81. ac094dc Add missing NEWS entry for r60695 by Nick Coghlan · 17 years ago
  82. 95d6447 Issue #1706: Require Windows 2000+ by Christian Heimes · 17 years ago
  83. 01612e7 Update big5hkscs codec to conform to the HKSCS:2004 revision. by Hye-Shik Chang · 17 years ago
  84. b01aa43 issue 2045: Infinite recursion when printing a subclass of defaultdict, by Amaury Forgeot d'Arc · 17 years ago
  85. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 17 years ago
  86. 5b07ebc Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence. by Raymond Hettinger · 17 years ago
  87. 2fc9263 Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN by Mark Dickinson · 17 years ago
  88. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  89. 6075a82 Limit free list of method and builtin function objects to 256 entries each. by Christian Heimes · 17 years ago
  90. b709077 * Use the same code to profile for test_profile and test_cprofile. by Georg Brandl · 17 years ago
  91. 0192e43 Issue #2004: Use mode 0700 for temporary directories and default by Lars Gustäbel · 17 years ago
  92. 6fd03bb #1750076: Debugger did not step on every iteration of a while statement. by Amaury Forgeot d'Arc · 17 years ago
  93. 578a8ca Correct quotes in NEWS file by Amaury Forgeot d'Arc · 17 years ago
  94. 422051a Patch #1953 by Christian Heimes · 17 years ago
  95. cab3d98 Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does. by Amaury Forgeot d'Arc · 17 years ago
  96. 70c0c02 Add an entry for r60537. by Brett Cannon · 17 years ago
  97. eeed5b7 Merge this fix from the pybsddb tree: by Gregory P. Smith · 17 years ago
  98. 951cc0f Fixed bug #1983: Return from fork() is pid_t, not int by Christian Heimes · 17 years ago
  99. 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 17 years ago
  100. cba36bb Bug #1234: Fixed semaphore errors on AIX 5.2 by Christian Heimes · 17 years ago