1. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  2. 3ea7b41 Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because by Jeffrey Yasskin · 17 years ago
  3. 56eadd9 Add refcounting extension to build config. by Georg Brandl · 17 years ago
  4. cf25eb1 socket.error doesn't have a headers attribute like ProtocolError. by Neal Norwitz · 17 years ago
  5. 5b25bc0 Change isbasestring function as discussed on the cvs list a while ago by Christian Heimes · 17 years ago
  6. ed444e5 Try to handle socket.errors properly in is_unavailable by Neal Norwitz · 17 years ago
  7. ce8fd9d Remove effectless expression statement. by Georg Brandl · 17 years ago
  8. c519809 Update the comment and remove the close. If we close we can't flush anymore. by Neal Norwitz · 17 years ago
  9. 41ada16 Print periodic "still working" messages since this suite is slow. by Neal Norwitz · 17 years ago
  10. 8250fbe Reduce buffer size since we do not need 1k by Neal Norwitz · 17 years ago
  11. 183c534 Catch socket errors that are often the cause of transient failures. by Neal Norwitz · 17 years ago
  12. 9846de1 Retry connection in case it fails to reduce flakiness by Neal Norwitz · 17 years ago
  13. 041ee5d Add a tiny sleep and additional flush to force the file to really be synced. by Neal Norwitz · 17 years ago
  14. b3c8243 Update to newer version of ffi. Fixes crashes and test failures of longdouble by Neal Norwitz · 17 years ago
  15. e9057ff Initialize variable to prevent warning on some platform/config. by Neal Norwitz · 17 years ago
  16. c44af33 Add assertion that we do not blow out newl by Neal Norwitz · 17 years ago
  17. e7bb918 Whitespace cleanup by Neal Norwitz · 17 years ago
  18. 9bba7b7 Removed an unnecessary and confusing paragraph from the namedtuple docs. by Raymond Hettinger · 17 years ago
  19. 63c77b6 Docstring nit by Raymond Hettinger · 17 years ago
  20. cfb41c4 Add stdarg include for va_list to get this to compile on cygwin by Neal Norwitz · 17 years ago
  21. e1027f9 Use int for the sign rather than a char. char can be signed or unsigned. by Neal Norwitz · 17 years ago
  22. 448654f Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS by Neal Norwitz · 17 years ago
  23. 3e1a373 Make rational.gcd() public and allow Rational to take decimal strings, per by Jeffrey Yasskin · 17 years ago
  24. 46c61b2 Try to prevent this test from being flaky. We might need a sleep in here by Neal Norwitz · 17 years ago
  25. 6e07081 Eliminate the sleeps that assume the server will start in .5 seconds. by Neal Norwitz · 17 years ago
  26. 3d785e2 Consistently use tempfile.tempdir for the db_home directory. by Neal Norwitz · 17 years ago
  27. 7f47d93 On some systems (e.g., Ubuntu on hppa) the flush() by Neal Norwitz · 17 years ago
  28. 3718429 Reduce the race condition by signalling when the server is ready by Neal Norwitz · 17 years ago
  29. a121508 Always try to remove the test file even if close raises an exception by Neal Norwitz · 17 years ago
  30. 739a3c4 Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots, by Neal Norwitz · 17 years ago
  31. d006380 Update docs for new callpack params added in r60188 by Gregory P. Smith · 17 years ago
  32. a2af212 Unit test fix from Giampaolo Rodola, #1938 by Christian Heimes · 17 years ago
  33. 6caad7d Move C API entries to the corresponding section. by Georg Brandl · 17 years ago
  34. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 17 years ago
  35. 29604a1 #1940: make it possible to use curses.filter() before curses.initscr() by Georg Brandl · 17 years ago
  36. 2a7d991c Clarify "b" mode under Unix. by Georg Brandl · 17 years ago
  37. 0c3f168 Add some items by Andrew M. Kuchling · 17 years ago
  38. a736440 Fix markup again. by Georg Brandl · 17 years ago
  39. 0522548 Slashes allowed on Windows. by Georg Brandl · 17 years ago
  40. 4223199 Add missing things in re docstring. by Georg Brandl · 17 years ago
  41. fe7dd50 #1934: fix os.path.isabs docs. by Georg Brandl · 17 years ago
  42. dee3f65 Revert PySet_Add() changes. by Raymond Hettinger · 17 years ago
  43. d375723 Update test code for change to PySet_Add(). by Raymond Hettinger · 17 years ago
  44. b423f02 Let marshal build-up sets and frozensets one element at a time. by Raymond Hettinger · 17 years ago
  45. 08b50eb The OS X buildbot had errors with the unavailable exceptions disabled. Restore it. by Neal Norwitz · 17 years ago
  46. 7c1be2a Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to build-up values in a brand new frozenset. by Raymond Hettinger · 17 years ago
  47. 960efe9 Fix exception in tearDown on ppc buildbot. If there's no directory, by Neal Norwitz · 17 years ago
  48. 653272f Use a condition variable (threading.Event) rather than sleeps and checking a by Neal Norwitz · 17 years ago
  49. 5be3067 Prevent this test from failing if there are transient network problems by Neal Norwitz · 17 years ago
  50. 00417a3 Make 'testall' work again when building in a separate directory. by Thomas Wouters · 17 years ago
  51. a97744c Use the right (portable) definition of the max of a Py_ssize_t. by Thomas Wouters · 17 years ago
  52. 8d5cf4e Rewrite the list_inline_repeat overflow check slightly differently. by Guido van Rossum · 17 years ago
  53. 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 17 years ago
  54. 8608d91 Added the Python core headers Include/*.h and pyconfig.h as dependencies for the extensions in Modules/ by Christian Heimes · 17 years ago
  55. 543cabc setup.py doesn't pick up changes to a header file by Christian Heimes · 17 years ago
  56. 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 · 17 years ago
  57. 5f95a79 Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) by Neal Norwitz · 17 years ago
  58. 769d0ee Make the test more robust by trying to reconnect up to 3 times by Neal Norwitz · 17 years ago
  59. 9ec7bc3 More design notes by Raymond Hettinger · 17 years ago
  60. 9c6d81f Fix-up signature for approximation. by Raymond Hettinger · 17 years ago
  61. 7ea8225 Add one other review comment. by Raymond Hettinger · 17 years ago
  62. 921cb5d Mark todos and review comments. by Raymond Hettinger · 17 years ago
  63. a621674 Add support for copy, deepcopy, and pickle. by Raymond Hettinger · 17 years ago
  64. 909e334 More code cleanup. Remove unnecessary indirection to useless class methods. by Raymond Hettinger · 17 years ago
  65. 31eaafe News entry for r60265 (Issue 1920). by Amaury Forgeot d'Arc · 17 years ago
  66. 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 17 years ago
  67. 5310b69 Shorter pprint's for empty sets and frozensets. Fix indentation of frozensets. Add tests including two complex data structures. by Raymond Hettinger · 17 years ago
  68. 6170874 Expand tests to include nested graph structures. by Raymond Hettinger · 17 years ago
  69. 5b0e27e Add support for int(r) just like the other numeric classes. by Raymond Hettinger · 17 years ago
  70. 5ca9240 Invert the checks in get_[u]long and get_[u]longlong. The intent was by Thomas Heller · 17 years ago
  71. 5a05364 Add support for trunc(). by Raymond Hettinger · 17 years ago
  72. 71dba4c Replace Py_BuildValue with PyTuple_Pack because it is faster. by Thomas Heller · 17 years ago
  73. e4c03e4 Use a PyDictObject again for the array type cache; retrieving items by Thomas Heller · 17 years ago
  74. eead05f News about recently fixed crashers: by Guido van Rossum · 17 years ago
  75. 70ec29d Revert 60189 and restore performance. by Raymond Hettinger · 17 years ago
  76. 7a6eacd Clean-up and speed-up code by accessing numerator/denominator directly. There's no reason to enforce readonliness by Raymond Hettinger · 17 years ago
  77. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 17 years ago
  78. 4e3f124 Fi debug turd -- a call accidentally left out. by Guido van Rossum · 17 years ago
  79. d7cf32e Updated for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
  80. f38ba78 Added documentation for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
  81. 92aa2f8 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
  82. 97ef165 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
  83. 7b7ce78 Fix issue1789: The tutorial contained a misuse of the struct module. by Gregory P. Smith · 17 years ago
  84. 7070094 Fix the test_urllib2net failures that were caused by r58067. by Neal Norwitz · 17 years ago
  85. bf839e2 Fix the tests by restoring __import__. I think the test is still valid. by Neal Norwitz · 17 years ago
  86. f336c8b Cleanup by Raymond Hettinger · 17 years ago
  87. eb46190 Minor clean-up and more tests. by Raymond Hettinger · 17 years ago
  88. cf10926 Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions. by Raymond Hettinger · 17 years ago
  89. 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 17 years ago
  90. f30ba3d There was an error on exit if no sys.exitfunc was defined. Issue 1647. by Kurt B. Kaiser · 17 years ago
  91. 6f4ee2d Fix misleading comment reported in issue #1917. by Guido van Rossum · 17 years ago
  92. b4aaa76 Could not open files in .idlerc directory if latter was hidden on Windows. by Kurt B. Kaiser · 17 years ago
  93. 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
  94. b2302ba Applied #1069410 by Christian Heimes · 17 years ago
  95. 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 · 17 years ago
  96. 964ca42 patch 1754489 by vlahan: by Armin Rigo · 17 years ago
  97. 501dbbf Use Py_TYPE() instead of ->ob_type by Christian Heimes · 17 years ago
  98. 66b4ab7 I'm tired of these tests breaking at Google due to our large number of by Guido van Rossum · 17 years ago
  99. c226c31 Let pprint() support sets and frozensets (suggested by David Mertz). by Raymond Hettinger · 17 years ago
  100. 2230bcf docstring and comment updates suggested by Giampaolo Rodola' by Gregory P. Smith · 17 years ago