1. 6eba779 Fix typo in unicode character name. by Georg Brandl · 15 years ago
  2. 49b9192 #2768: add a note on how to get a file descriptor. by Georg Brandl · 15 years ago
  3. 304b10e Add 2.6.5. by Georg Brandl · 15 years ago
  4. dfd3618 #7092: silence some py3k warnings by Florent Xicluna · 15 years ago
  5. a7f242f #7092: Drop the cmp argument. by Florent Xicluna · 15 years ago
  6. d630c04 #7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports. by Florent Xicluna · 15 years ago
  7. f28dd0d Cleanup itertools recipes by Raymond Hettinger · 15 years ago
  8. 4bfd3bd Add and update itertools recipes. by Raymond Hettinger · 15 years ago
  9. 8d1da0f #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote. by Florent Xicluna · 15 years ago
  10. b5023df Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked by Antoine Pitrou · 15 years ago
  11. 76c8649 Issue #8276: PyEval_CallObject() is now only available in macro form. The by Antoine Pitrou · 15 years ago
  12. f54c268 Document link to Sorting HowTo by Raymond Hettinger · 15 years ago
  13. bf0dfb3 Issue #8032: For gdb7, a python-gdb.py file is added to the build, by Martin v. Löwis · 15 years ago
  14. a01da93 Fix a test_pydoc failure on Neal Norwitz's buildbot. by Brian Curtin · 15 years ago
  15. 6c9fc4c A couple small grammar fixes in test.rst, and rewrite the by R. David Murray · 15 years ago
  16. 4fcf7d4 Add -Wd and -3 to the flags used to run the tests on Windows. by Ezio Melotti · 15 years ago
  17. 90fd01b Add -Wd and -3 to the flags used to run the tests. by Ezio Melotti · 15 years ago
  18. 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
  19. ad59833 Fix typo by Florent Xicluna · 15 years ago
  20. a57df2c Issue #8268: Old-style classes (not just instances) now support weak references. by Antoine Pitrou · 15 years ago
  21. 26cc99d Fix test for xml.etree when using a non-ascii path. And use check_warnings instead of catch_warnings. by Florent Xicluna · 15 years ago
  22. f7f2d6f - Issue #8233: When run as a script, py_compile.py optionally takes a single by Barry Warsaw · 15 years ago
  23. fe4900c Correct what was intended to be a single-tuple to just be a != check. by Brian Curtin · 15 years ago
  24. fcc500e Silence a py3k warning. by Ezio Melotti · 15 years ago
  25. eb72991 Revert r79179 and merge r75584 to explain how to implement a queue using collection.deque instead of a list. by Ezio Melotti · 15 years ago
  26. aeb2e82 Fix #8225. xml.etree was displaying an incorrect link when viewed in help. by Brian Curtin · 15 years ago
  27. b102dda Revert rev. 79509; ctypes doesn't build on linux. by Thomas Heller · 15 years ago
  28. 08b56b6 Removed merge tracking for "svnmerge" for by Thomas Heller · 15 years ago
  29. 5006ba0 Merged revisions 79115,79424,79491 via svnmerge from by Thomas Heller · 15 years ago
  30. 8f66efe Fix small error in r79502 by Antoine Pitrou · 15 years ago
  31. 6032c25 Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. by Antoine Pitrou · 15 years ago
  32. 7e21325 add inspect.getcallargs, which binds function arguments like a normal call #3135 by Benjamin Peterson · 15 years ago
  33. ec71794 fix ACKS: alphabetic order and UTF-8 by Florent Xicluna · 15 years ago
  34. 75c6676 #8263: Now regrtest.py will report a failure if it receives a KeyboardInterrupt (SIGINT). by Florent Xicluna · 15 years ago
  35. 58b6566 Highlight the change of behavior related to r79494. Now VT and FF are linebreaks. by Florent Xicluna · 15 years ago
  36. 22b2438 #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. by Florent Xicluna · 15 years ago
  37. e6410c5 Backport of weakref.WeakSet and tests from Python 3. by Michael Foord · 15 years ago
  38. b8d688c Update itertools recipe for consume(). by Raymond Hettinger · 15 years ago
  39. d282b93 Add a note on optimizing the itertools recipes for production. by Raymond Hettinger · 15 years ago
  40. 5b027f8 Update itertools recipes. by Raymond Hettinger · 15 years ago
  41. a7e08fe Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals and assertNotAlmostEquals by Michael Foord · 15 years ago
  42. b35ecf4 Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous). by Michael Foord · 15 years ago
  43. ff88939 A fix for running unittest tests on platforms without the audioop module (e.g. jython and IronPython) by Michael Foord · 15 years ago
  44. 9588d99 Add Misc/NEWS entry for r79455. by Mark Dickinson · 15 years ago
  45. 71b7fac Make Fraction to complex comparisons with <=, <, >= or > raise TypeError. by Mark Dickinson · 15 years ago
  46. 355adc5 Ensure that the failed or unexpected tests are sorted before printing. by Florent Xicluna · 15 years ago
  47. eee91cd Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking by Antoine Pitrou · 15 years ago
  48. c7024e7 reorder imports by Benjamin Peterson · 15 years ago
  49. 79d1fa9 Makefile.pre.in for the unittest/test directory by Michael Foord · 15 years ago
  50. fa2f1cd Addition of -c command line option to unittest, to handle ctrl-c during a test run more elegantly by Michael Foord · 15 years ago
  51. ee62788 Move a support TestCase out of the main namespace in unittest.test.test_suite by Michael Foord · 15 years ago
  52. 95ac82b Remove incorrect docstring in unittest.test by Michael Foord · 15 years ago
  53. 35b3792 Turn unittest tests into a package by Michael Foord · 15 years ago
  54. fbe5199 Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana. by Brian Curtin · 15 years ago
  55. 0663873 make naming convention consistent by Benjamin Peterson · 15 years ago
  56. fd37dd4 Fix test_unittest and test_warnings when running "python -Werror -m test.regrtest" by Florent Xicluna · 15 years ago
  57. 8aa5a58 #8207: Fix test_pep277 on OS X by Florent Xicluna · 15 years ago
  58. c8a730b Syntax cleanup `== None` -> `is None` by Florent Xicluna · 15 years ago
  59. ff33e2f make an attempt to add capsule to the Windows build by Benjamin Peterson · 15 years ago
  60. 4a0661b Add various items by Andrew M. Kuchling · 15 years ago
  61. 4e9830f Remove extraneous experimental code checked in by accident. by Larry Hastings · 15 years ago
  62. c1f842b Fix a gcc warning introduced by r79397. by Victor Stinner · 15 years ago
  63. 37aab87 fix eol properties on capsule files by Benjamin Peterson · 15 years ago
  64. cf71456 set eol on email example by Benjamin Peterson · 15 years ago
  65. 1c7b0e3 set bsddb eol style by Benjamin Peterson · 15 years ago
  66. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  67. 53ff86e Fix _curses.tiget*() functions: deny None to avoid a crash. by Victor Stinner · 15 years ago
  68. 6cbf90f Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler by Victor Stinner · 15 years ago
  69. 2ec1f27 Replace license with simple attribution. by Steven Bethard · 15 years ago
  70. 2c6799a Revert r79384 (the fix failed). by Antoine Pitrou · 15 years ago
  71. fb224e3 replace copy right notice with simple attribution by Benjamin Peterson · 15 years ago
  72. 914bdbb Trying to fix #8108. Will watch the buildbot(s). by Antoine Pitrou · 15 years ago
  73. 36b9fbb Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available. by Florent Xicluna · 15 years ago
  74. f91a679 Various edits by Andrew M. Kuchling · 15 years ago
  75. 66d19e2 logging: Updated SysLogHandler documentation. by Vinay Sajip · 15 years ago
  76. 27e0240 Skip test_ascii_formatd if _ctypes is not available (BSD, ...). by Florent Xicluna · 15 years ago
  77. a3c39c0 logging: Documentation tweak. by Vinay Sajip · 15 years ago
  78. 0b79d0a Add Brian Curtin. by Martin v. Löwis · 15 years ago
  79. b0623d6 logging: Added LOG_FTP for SysLogHandler and updated documentation. by Vinay Sajip · 15 years ago
  80. f8d1d0f Another typo. by Ezio Melotti · 15 years ago
  81. d72a628 #8217: typo. by Ezio Melotti · 15 years ago
  82. d4b721b the == test doesn't work on Solaris #8210 by Benjamin Peterson · 15 years ago
  83. 3c919cf The SIGINT signal may happen earlier, during site.py initialization. by Florent Xicluna · 15 years ago
  84. 9858f63 add some unittest items by Andrew M. Kuchling · 15 years ago
  85. 446ff14 The standard error should be empty when the signal is killed, except on SIGINT. by Florent Xicluna · 15 years ago
  86. fc4d6d7 Silence test_subprocess. by Florent Xicluna · 15 years ago
  87. 875bdf7 Skip test_format_deprecation if _ctypes is not available. Add a filter to the warning check. by Florent Xicluna · 15 years ago
  88. 67b4e18 Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs by Senthil Kumaran · 15 years ago
  89. 996e88a Merged revisions 79313,79324 via svnmerge from by Benjamin Peterson · 15 years ago
  90. 0d0b80b Link specifically to the UCD version 5.2.0. by Ezio Melotti · 15 years ago
  91. 88b6f8b Remove link to objects.rst (gone in r79179). by Ezio Melotti · 15 years ago
  92. ae735a7 Update the version number of the Unicode Database in a few more places. by Ezio Melotti · 15 years ago
  93. 3bcc35b Merged revisions 79309 via svnmerge from by Benjamin Peterson · 15 years ago
  94. 176cda1 Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only). by Florent Xicluna · 15 years ago
  95. e1f4c92 #7667: Fix doctest failures with non-ASCII paths. by Florent Xicluna · 15 years ago
  96. 798e540 Merged revisions 79077,79137,79304-79305 via svnmerge from by Benjamin Peterson · 15 years ago
  97. 513d9ae Issue #7512: shutil.copystat() could raise an OSError when the filesystem by Antoine Pitrou · 15 years ago
  98. 0805e6e #7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes. by Florent Xicluna · 15 years ago
  99. eba2aca Preserve backward compatibility of the ctypes module. by Florent Xicluna · 15 years ago
  100. 9e7a4c9 Issue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated. by Florent Xicluna · 15 years ago