1. 1cc60ed Updated to pysqlite 2.4.1. Documentation additions will come later. by Gerhard Häring · 17 years ago
  2. f4da777 Fix docstring typo. by Mark Dickinson · 17 years ago
  3. 08ff682 Handle the repeat keyword argument for itertools.product(). by Raymond Hettinger · 17 years ago
  4. 1ddf1d8 Add __format__ method to Decimal, to support PEP 3101 by Mark Dickinson · 17 years ago
  5. b4cbc98 Add alternate constructor for itertools.chain(). by Raymond Hettinger · 17 years ago
  6. 05bf633 Have itertools.chain() consume its inputs lazily instead of building a tuple of iterators at the outset. by Raymond Hettinger · 17 years ago
  7. acfd8ed Windows fix for signal test - skip it earlier by Christian Heimes · 17 years ago
  8. 392c159 Prevent SocketServer.ForkingMixIn from waiting on child processes that it by Jeffrey Yasskin · 17 years ago
  9. a629852 #2169: make generated HTML more valid by Andrew M. Kuchling · 17 years ago
  10. 69e1309 Thread.start() used sleep(0.000001) to make sure it didn't return before the by Jeffrey Yasskin · 17 years ago
  11. 180997b Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make by Jeffrey Yasskin · 17 years ago
  12. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 17 years ago
  13. 2ab0552 Larger test range by Raymond Hettinger · 17 years ago
  14. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  15. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
  16. ca37661 Add a timing flag to Trace so you can see where slowness occurs by Neal Norwitz · 17 years ago
  17. 75992ed Speed up this test by about 99%. Remove sleeps and replace with events. by Neal Norwitz · 17 years ago
  18. b0917c1 Don't use a hard coded port. This test could hang/fail if the port is in use. by Neal Norwitz · 17 years ago
  19. 39df661 Revert part of r60927 which made invalid assumptions about the API offered by db modules. by Raymond Hettinger · 17 years ago
  20. 9d63837 Make sure the itertools filter functions give the same performance for func=bool as func=None. by Raymond Hettinger · 17 years ago
  21. 4219da4 Issue 2117. Update compiler module to handle class decorators. by Facundo Batista · 17 years ago
  22. 734451a Use file descriptor for real stdout by Andrew M. Kuchling · 17 years ago
  23. aa5e3ce Move .setupterm() output so that we don't try to call endwin() if it fails by Andrew M. Kuchling · 17 years ago
  24. c6b5200 Fix a minor typo in a docstring. by Brett Cannon · 17 years ago
  25. 6057b2e Create a db_home directory with a unique name so multiple users can by Neal Norwitz · 17 years ago
  26. 6a123cb Remove duplicate 'import re' in decimal.py by Mark Dickinson · 17 years ago
  27. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 17 years ago
  28. 8c460d5 #1627: httplib now ignores negative Content-Length headers. by Georg Brandl · 17 years ago
  29. 2363503 #900744: If an invalid chunked-encoding header is sent by a server, by Georg Brandl · 17 years ago
  30. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  31. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  32. c12b988 Added simple test case. Thanks Benjamin Peterson. by Facundo Batista · 17 years ago
  33. 0bb8567 In test_heapq and test_bisect, test both the Python and the C implementation. by Georg Brandl · 17 years ago
  34. 8d01bb2 Use os.closerange() in popen2. by Georg Brandl · 17 years ago
  35. a885c15 Followup to r61011: Also avoid the reference cycle when the Thread's target by Jeffrey Yasskin · 17 years ago
  36. 3414ea9 Prevent classes like: by Jeffrey Yasskin · 17 years ago
  37. 1beea27 #1389051, #1092502: fix excessively large allocations when using read() on a socket by Andrew M. Kuchling · 17 years ago
  38. 1219a80 #1389051: IMAP module tries to read entire message in one chunk. Patch by Fredrik Lundh. by Andrew M. Kuchling · 17 years ago
  39. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  40. 19aff0c #1433694: minidom's .normalize() failed to set .nextSibling for last element. by Andrew M. Kuchling · 17 years ago
  41. 085f75a #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. by Andrew M. Kuchling · 17 years ago
  42. 322349e #1119331: ncurses will just call exit() if the terminal name isn't found. by Andrew M. Kuchling · 17 years ago
  43. ad61bc8 #2067: file.__exit__() now calls subclasses' close() method. by Georg Brandl · 17 years ago
  44. 7e251e8 Issue 1089358. Adds the siginterrupt() function, that is just a by Facundo Batista · 17 years ago
  45. 57826cf #2165: fix test_logging failure on some machines. by Georg Brandl · 17 years ago
  46. 1647923 #1492: allow overriding BaseHTTPServer's content type for error messages. by Georg Brandl · 17 years ago
  47. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  48. b12f0b5 Issue 1781. Now ConfigParser.add_section does not let you add a by Facundo Batista · 17 years ago
  49. 1660933 Issue 1776581. Minor corrections to smtplib, and two small tests. by Facundo Batista · 17 years ago
  50. fc2d010 Issue 1881. Increased the stack limit from 500 to 1500. Also added by Facundo Batista · 17 years ago
  51. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
  52. 73d7963 Improve the implementation of itertools.product() by Raymond Hettinger · 17 years ago
  53. fb0742f Tests for bin() builtin. These need to get merged into py3k, which has no tests for bin. by Eric Smith · 17 years ago
  54. a14a4e8 Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery) by Nick Coghlan · 17 years ago
  55. 50986cc First draft for itertools.product(). Docs and other updates forthcoming. by Raymond Hettinger · 17 years ago
  56. ce584d4 Moved test_format into the correct TestCase. by Eric Smith · 17 years ago
  57. 31ce5cb Update more instances of has_key(). by Raymond Hettinger · 17 years ago
  58. 8982cf5 Replace 'has_key()' with 'in'. by Thomas Heller · 17 years ago
  59. 8bc0965 Removed uses of dict.has_key() from distutils, and uses of by Guido van Rossum · 17 years ago
  60. 2d6c13e Close manifest file. by Andrew M. Kuchling · 17 years ago
  61. 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
  62. bc32fee Added code to correct combining str and unicode in ''.format(). Added test case. by Eric Smith · 17 years ago
  63. d50a5f2 Temporarily removed float tests. See issue 1600. by Eric Smith · 17 years ago
  64. d14600e Issue 1224. Now we support again the double slash in the URL. by Facundo Batista · 17 years ago
  65. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  66. b169eaa #2133: fix HTML color spec. by Georg Brandl · 17 years ago
  67. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  68. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but 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. 71fa93a Add __all__ to logging module. by Raymond Hettinger · 17 years ago
  72. 64d6843 mmap.PROT_READ does not exists on win32; Skip this test created by r60830. by Amaury Forgeot d'Arc · 17 years ago
  73. d8bcbf2 Re-enable tests, they were failing since gc.collect() clears the various freelists. by Amaury Forgeot d'Arc · 17 years ago
  74. f05fa33 Configured selection highlighting colors were ignored; updating highlighting by Kurt B. Kaiser · 17 years ago
  75. e312cfd ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat. by Kurt B. Kaiser · 17 years ago
  76. f67abcc Temporarily let these tests pass by Amaury Forgeot d'Arc · 17 years ago
  77. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 17 years ago
  78. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 17 years ago
  79. 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
  80. 36316e3 No need to register subclass of ABCs. by Raymond Hettinger · 17 years ago
  81. 1b56324 Add diagnostic message to help figure-out why SocketServer tests occasionally crash by Raymond Hettinger · 17 years ago
  82. 339f5e3 Change simple instances (in Fraction) of self.numerator and self.denominator to by Jeffrey Yasskin · 17 years ago
  83. 1c214d6 Performance optimizations on Fraction's constructor. by Jeffrey Yasskin · 17 years ago
  84. abe3237 Fix decimal repr which should have used single quotes like other reprs. by Raymond Hettinger · 17 years ago
  85. ddb164a Update notes on Decimal. by Raymond Hettinger · 17 years ago
  86. ac45aff Bring NEWS.txt up to date from check-in msgs. by Kurt B. Kaiser · 17 years ago
  87. 4516451 Make the test somewhat clearer (I hope). by Thomas Heller · 17 years ago
  88. a06a1a8 Add pickle support to ctypes types. by Thomas Heller · 17 years ago
  89. 57bd60b Working on issue #1762: Brought by Jeffrey Yasskin · 17 years ago
  90. 5f8bd37 Replace R=fractions.Fraction with F=fractions.Fraction in by Mark Dickinson · 17 years ago
  91. 0aa52a1 Revert change in r60712: turn alternate constructors back into by Mark Dickinson · 17 years ago
  92. e1b8247 Implementation of Fraction.limit_denominator. by Mark Dickinson · 17 years ago
  93. dad88dc Patch #1966: Break infinite loop in httplib when the servers by Martin v. Löwis · 17 years ago
  94. 8d365c3 what??! Correct r60225. by Kurt B. Kaiser · 17 years ago
  95. 116f72f Bring decimal a bit closer to the spec for Reals. by Raymond Hettinger · 17 years ago
  96. 19a5c29 Fix typo in comments by Raymond Hettinger · 17 years ago
  97. 48688d8 Add notes on how decimal fits into the model. by Raymond Hettinger · 17 years ago
  98. 21290ea Add tests for pickletools.optimize(). by Raymond Hettinger · 17 years ago
  99. 6bf51da Make sure that xstar headers are read correctly. by Lars Gustäbel · 17 years ago
  100. 31f6bc0 No need to register classes that already inherit from ABCs. by Raymond Hettinger · 17 years ago