1. 4286138 #2220: handle matching failure more gracefully. by Georg Brandl · 17 years ago
  2. a7bd27f #2225: return nonzero status code from py_compile if not all files could be compiled. by Georg Brandl · 17 years ago
  3. d2bbe52 Patch #2232: os.tmpfile might fail on Windows if the user has no by Martin v. Löwis · 17 years ago
  4. 1df0340 #1725737: ignore other VC directories other than CVS and SVN's too. by Georg Brandl · 17 years ago
  5. 66f91ea C implementation of itertools.permutations(). by Raymond Hettinger · 17 years ago
  6. f3c0559 Issue 1872: Changed the struct module typecode from 't' to '?', for by Thomas Heller · 17 years ago
  7. f28896d Fix test_socketserver on Windows after r61099 added several signal.alarm() by Jeffrey Yasskin · 17 years ago
  8. 48309d5 Make the timeout longer to give slow machines a chance to pass the test by Neal Norwitz · 17 years ago
  9. ce52788 Catch OSError when trying to remove a file in case removal fails. This by Neal Norwitz · 17 years ago
  10. 2180725 Get this test to pass even when there is no sound card in the system. by Neal Norwitz · 17 years ago
  11. 31e8893 Remove the files/dirs after closing the DB so the tests work on Windows. by Neal Norwitz · 17 years ago
  12. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
  13. a28df13 fix typo by Fred Drake · 17 years ago
  14. 4a50d26 Close the file before trying to remove the directory so it works on Windows. by Neal Norwitz · 17 years ago
  15. d553d85 Beef-up docs and tests for itertools. Fix-up end-case for product(). by Raymond Hettinger · 17 years ago
  16. 10ac19b Issue 2226: Callable checked for the wrong abstract method. by Raymond Hettinger · 17 years ago
  17. 972fb07 Remove dependency on itertools -- a simple genexp suffices. by Raymond Hettinger · 17 years ago
  18. d2f7680 Actually import itertools. by Georg Brandl · 17 years ago
  19. 26bc177 15 -> 16, the 2nd by Georg Brandl · 17 years ago
  20. 728bee8 15 -> 16 by Christian Heimes · 17 years ago
  21. 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
  22. 7dbd918 Add test_main() functions to various tests where it was simple to do. Done so by Brett Cannon · 17 years ago
  23. 963c80f Add a note in the main test class' docstring that the order of execution of the by Brett Cannon · 17 years ago
  24. bfbf5b3 Add a note in the main test class' docstring that the order of execution of the by Brett Cannon · 17 years ago
  25. 6382ffc Move test_largefile over to using 'with' statements for open files. by Brett Cannon · 17 years ago
  26. 56c4deb Refactor test_logging to use unittest. This should finally solve the flakiness by Brett Cannon · 17 years ago
  27. 492e2bf Modify import of test_support so that the code can also be used with a by Gregory P. Smith · 17 years ago
  28. f40f684 Made sqlite3 module's regression tests work with SQLite versions that don't by Gerhard Häring · 17 years ago
  29. 9d225e6 Give IDLE a release date by Barry Warsaw · 17 years ago
  30. c853f5d bump idle version number by Barry Warsaw · 17 years ago
  31. 1cc60ed Updated to pysqlite 2.4.1. Documentation additions will come later. by Gerhard Häring · 17 years ago
  32. f4da777 Fix docstring typo. by Mark Dickinson · 17 years ago
  33. 08ff682 Handle the repeat keyword argument for itertools.product(). by Raymond Hettinger · 17 years ago
  34. 1ddf1d8 Add __format__ method to Decimal, to support PEP 3101 by Mark Dickinson · 17 years ago
  35. b4cbc98 Add alternate constructor for itertools.chain(). by Raymond Hettinger · 17 years ago
  36. 05bf633 Have itertools.chain() consume its inputs lazily instead of building a tuple of iterators at the outset. by Raymond Hettinger · 17 years ago
  37. acfd8ed Windows fix for signal test - skip it earlier by Christian Heimes · 17 years ago
  38. 392c159a Prevent SocketServer.ForkingMixIn from waiting on child processes that it by Jeffrey Yasskin · 17 years ago
  39. a629852 #2169: make generated HTML more valid by Andrew M. Kuchling · 17 years ago
  40. 69e1309 Thread.start() used sleep(0.000001) to make sure it didn't return before the by Jeffrey Yasskin · 17 years ago
  41. 180997b Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make by Jeffrey Yasskin · 17 years ago
  42. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 17 years ago
  43. 2ab0552 Larger test range by Raymond Hettinger · 17 years ago
  44. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  45. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
  46. ca37661 Add a timing flag to Trace so you can see where slowness occurs by Neal Norwitz · 17 years ago
  47. 75992ed Speed up this test by about 99%. Remove sleeps and replace with events. by Neal Norwitz · 17 years ago
  48. 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
  49. 39df661 Revert part of r60927 which made invalid assumptions about the API offered by db modules. by Raymond Hettinger · 17 years ago
  50. 9d63837 Make sure the itertools filter functions give the same performance for func=bool as func=None. by Raymond Hettinger · 17 years ago
  51. 4219da4 Issue 2117. Update compiler module to handle class decorators. by Facundo Batista · 17 years ago
  52. 734451a Use file descriptor for real stdout by Andrew M. Kuchling · 17 years ago
  53. aa5e3ce Move .setupterm() output so that we don't try to call endwin() if it fails by Andrew M. Kuchling · 17 years ago
  54. c6b5200 Fix a minor typo in a docstring. by Brett Cannon · 17 years ago
  55. 6057b2e Create a db_home directory with a unique name so multiple users can by Neal Norwitz · 17 years ago
  56. 6a123cb Remove duplicate 'import re' in decimal.py by Mark Dickinson · 17 years ago
  57. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 17 years ago
  58. 8c460d5 #1627: httplib now ignores negative Content-Length headers. by Georg Brandl · 17 years ago
  59. 2363503 #900744: If an invalid chunked-encoding header is sent by a server, by Georg Brandl · 17 years ago
  60. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  61. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  62. c12b988 Added simple test case. Thanks Benjamin Peterson. by Facundo Batista · 17 years ago
  63. 0bb8567 In test_heapq and test_bisect, test both the Python and the C implementation. by Georg Brandl · 17 years ago
  64. 8d01bb2 Use os.closerange() in popen2. by Georg Brandl · 17 years ago
  65. a885c15 Followup to r61011: Also avoid the reference cycle when the Thread's target by Jeffrey Yasskin · 17 years ago
  66. 3414ea9 Prevent classes like: by Jeffrey Yasskin · 17 years ago
  67. 1beea27 #1389051, #1092502: fix excessively large allocations when using read() on a socket by Andrew M. Kuchling · 17 years ago
  68. 1219a80 #1389051: IMAP module tries to read entire message in one chunk. Patch by Fredrik Lundh. by Andrew M. Kuchling · 17 years ago
  69. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  70. 19aff0c #1433694: minidom's .normalize() failed to set .nextSibling for last element. by Andrew M. Kuchling · 17 years ago
  71. 085f75a #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. by Andrew M. Kuchling · 17 years ago
  72. 322349e #1119331: ncurses will just call exit() if the terminal name isn't found. by Andrew M. Kuchling · 17 years ago
  73. ad61bc8 #2067: file.__exit__() now calls subclasses' close() method. by Georg Brandl · 17 years ago
  74. 7e251e8 Issue 1089358. Adds the siginterrupt() function, that is just a by Facundo Batista · 17 years ago
  75. 57826cf #2165: fix test_logging failure on some machines. by Georg Brandl · 17 years ago
  76. 1647923 #1492: allow overriding BaseHTTPServer's content type for error messages. by Georg Brandl · 17 years ago
  77. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  78. b12f0b5 Issue 1781. Now ConfigParser.add_section does not let you add a by Facundo Batista · 17 years ago
  79. 1660933 Issue 1776581. Minor corrections to smtplib, and two small tests. by Facundo Batista · 17 years ago
  80. fc2d010 Issue 1881. Increased the stack limit from 500 to 1500. Also added by Facundo Batista · 17 years ago
  81. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
  82. 73d7963 Improve the implementation of itertools.product() by Raymond Hettinger · 17 years ago
  83. fb0742f Tests for bin() builtin. These need to get merged into py3k, which has no tests for bin. by Eric Smith · 17 years ago
  84. 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
  85. 50986cc First draft for itertools.product(). Docs and other updates forthcoming. by Raymond Hettinger · 17 years ago
  86. ce584d4 Moved test_format into the correct TestCase. by Eric Smith · 17 years ago
  87. 31ce5cb Update more instances of has_key(). by Raymond Hettinger · 17 years ago
  88. 8982cf5 Replace 'has_key()' with 'in'. by Thomas Heller · 17 years ago
  89. 8bc0965 Removed uses of dict.has_key() from distutils, and uses of by Guido van Rossum · 17 years ago
  90. 2d6c13e Close manifest file. by Andrew M. Kuchling · 17 years ago
  91. 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
  92. bc32fee Added code to correct combining str and unicode in ''.format(). Added test case. by Eric Smith · 17 years ago
  93. d50a5f2 Temporarily removed float tests. See issue 1600. by Eric Smith · 17 years ago
  94. d14600e Issue 1224. Now we support again the double slash in the URL. by Facundo Batista · 17 years ago
  95. 759bfc6 Issue #1916. Added isgenerator() and isgeneratorfunction() to by Facundo Batista · 17 years ago
  96. b169eaa #2133: fix HTML color spec. by Georg Brandl · 17 years ago
  97. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  98. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 17 years ago
  99. f9db8a3 Move test_logging over to doctest. by Brett Cannon · 17 years ago
  100. 632fad3 Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer by Amaury Forgeot d'Arc · 17 years ago