1. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  2. c5e378d Testing for None should be done with 'is' by Raymond Hettinger · 20 years ago
  3. 0b569bb Stacks based on lists work better and read more clearly when they by Raymond Hettinger · 20 years ago
  4. 9f1340b Do not use the default namespace for attributes. by Martin v. Löwis · 20 years ago
  5. c60c203 Add a test script for the colorsys module. by Walter Dörwald · 20 years ago
  6. e3636e0 Fix a bug I introduced which causes all block openers at an indent level by Kurt B. Kaiser · 20 years ago
  7. d00587a 1. Add an Options menu entry: Code Context by Kurt B. Kaiser · 20 years ago
  8. 610c7e0 1. Polish variables in EditorWindow extension loading and Tkinter variable code. by Kurt B. Kaiser · 20 years ago
  9. 54d1a3b - New Extension: CodeContext. Provides block structuring hints for code by Kurt B. Kaiser · 20 years ago
  10. 9f62ecc SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  11. 0f5bf1e SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  12. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  13. 61e40bd Special case normalization of empty strings. Fixes #924361. Backported to 2.3. by Martin v. Löwis · 20 years ago
  14. c00fc84 Open file in universal newline mode when passing to compile(). Solution by Skip Montanaro · 20 years ago
  15. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  16. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 20 years ago
  17. cf6f1b6 M EditorWindow.py M IOBinding.py M NEWS.txt M configDialog.py by Kurt B. Kaiser · 20 years ago
  18. 249369c atof: correct parameter name by Skip Montanaro · 20 years ago
  19. 5bfd984 Refactor common code out of globaltrace_trackcallers() and by Skip Montanaro · 20 years ago
  20. cafc811 Added --trackcalls command line arg to display crude caller/callee by Skip Montanaro · 20 years ago
  21. 22ab06e Fix comment typo by Andrew M. Kuchling · 20 years ago
  22. d9b38d2 Remove specific Python version from #! by Andrew M. Kuchling · 20 years ago
  23. 69e18c9 OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied by Andrew MacIntyre · 20 years ago
  24. 4e10ed3 If a file is opened with an explicit buffer size >= 1, repeated by Andrew MacIntyre · 20 years ago
  25. 456d325 Fix support for the "prog" keyword to the OptionParser constructor, as well by Fred Drake · 20 years ago
  26. b67c943 [Bugfix candidate] Escape traceback type and value. There are probably additional cases where cgitb.py doesn't escape as paranoidly as it should (e.g. attribute names) by Andrew M. Kuchling · 20 years ago
  27. 59db96f When /tmp has certain sticky bits set, newly created subdirectories by Guido van Rossum · 20 years ago
  28. 116d83c SF bug 924242: socket._fileobject._getclosed() returns wrong value by Tim Peters · 20 years ago
  29. d732c95 Revert 1.51 booleans so that sre will still run on old pythons. by Raymond Hettinger · 20 years ago
  30. 968c56a Simple Optimizations: by Raymond Hettinger · 20 years ago
  31. 29e3837 Remove unnecessary test. (Thanks Skip) by Raymond Hettinger · 20 years ago
  32. 1c5701d Fix test failure for test_tcl on OS/X and Windows if a by David Ascher · 20 years ago
  33. 01ab279 Marshal clean-up (SF patch #873224) by Armin Rigo · 20 years ago
  34. 01c9f8c Simple optimizations: by Raymond Hettinger · 20 years ago
  35. 4b49823 make sure the default manifest generation includes files identified as by Fred Drake · 20 years ago
  36. 91e83e2 Added more Windows version names (thanks to Thomas Heller). by Marc-André Lemburg · 20 years ago
  37. 9001cde Fix last patch to be backwards-compatible with Python 1.5.2 . by Brett Cannon · 20 years ago
  38. 21beb4c Fixed a caching bug in platform.platform() where the argument of 'terse' was by Brett Cannon · 20 years ago
  39. 1c0f1f9 Defer compilation of regular expressions until first use. by Martin v. Löwis · 20 years ago
  40. bc503d1 Use True/False instead of 0/1 for character classes. by Martin v. Löwis · 20 years ago
  41. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  42. f167dc3 fix name in setacl method doc string by Piers Lauder · 20 years ago
  43. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 20 years ago
  44. a1dde13 Add test case for unicode(somestring, "idna"). by Martin v. Löwis · 20 years ago
  45. aaeffaf Replace sequential split/join calls on strings with a single replace call. by Brett Cannon · 20 years ago
  46. 708b4da Convert input to a string object. Fixes #909230. Backported 2.3. by Martin v. Löwis · 20 years ago
  47. 69200fa Replace code in urllib for basejoin (undocumented) with urlparse.urljoin . by Brett Cannon · 20 years ago
  48. 48713e8 Add runctx to __all__. by Guido van Rossum · 20 years ago
  49. 824b1b2 Added command line options for profile.py - one for stats output file by Nicholas Bastin · 20 years ago
  50. 05f842b Basic dependency checking. setup() has two new optional arguments by Anthony Baxter · 20 years ago
  51. a3837a0 Patch #911176: Move test function into __main__ by Martin v. Löwis · 20 years ago
  52. 1eb4bfc Added global runctx function to profile to fix SF Bug #716587 by Nicholas Bastin · 20 years ago
  53. 7069338 The fix in ceval.c 2.386 allows iteration-by-iteration line tracing even in by Armin Rigo · 20 years ago
  54. ee6c9b8 Fix (really) for tight loop line events by Nicholas Bastin · 20 years ago
  55. fa7bec7 Test for tight loop line event fix, SF bug #765624 by Nicholas Bastin · 20 years ago
  56. aea9459 Test for lack of implicit return line event by Nicholas Bastin · 20 years ago
  57. 39a0f04 New parser. Next up, making the current parser use this parser by Anthony Baxter · 20 years ago
  58. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 20 years ago
  59. 8d9b60f Change parse_qsl() to accept control-name's with no equal sign (e.g., "name") by Brett Cannon · 20 years ago
  60. 6680341 Normalized files in test_unicode_file to eliminate failure on OSX by Nicholas Bastin · 20 years ago
  61. 67867ea [Part of patch #909005] Added map parameter for file_dispatcher and dispatcher_with_send by Andrew M. Kuchling · 20 years ago
  62. 174bdbc [Part of patch #909005] Repeating exception changed from 'raise socket.error, why' to just raise. Make use of connect_ex() raise socket.error with 2-tuple instead of just error code by Andrew M. Kuchling · 20 years ago
  63. 419af88 [Part of patch #909005] Remove Mac code for writable by Andrew M. Kuchling · 20 years ago
  64. 0ebbbe3 [Part of patch #909005] Set initial poll flags by Andrew M. Kuchling · 20 years ago
  65. 68522b1 [Part of patch #909005] Use True/False by Andrew M. Kuchling · 20 years ago
  66. 56d7913 [Patch #900071] Be case-insensitive when removing 'usage:' string by Andrew M. Kuchling · 20 years ago
  67. 9303777 [Part of patch #909005] Handle POLLPRI flag, and various errors cases. Fixes bug #887279 by Andrew M. Kuchling · 20 years ago
  68. 6602520 SF bug 917108: warnings.py does not define _test(). by Tim Peters · 20 years ago
  69. 433fa69 Patch #853488: Add hlist entry_configure and entry_cget methods. by Martin v. Löwis · 20 years ago
  70. 4848557 Remove unused instance attributes. by Neil Schemenauer · 20 years ago
  71. 46cf4fc Back out last patch that removed an entry from sys.path if it was not an by Brett Cannon · 20 years ago
  72. c82208e Deal with case of when locale time values has characters that can be mistaken by Brett Cannon · 20 years ago
  73. 4f65331 Limit the nesting depth of a tuple passed as the second argument to by Brett Cannon · 20 years ago
  74. 70ec0b4 Fix for SF 777848. by Guido van Rossum · 20 years ago
  75. 27f4961 SF patch 508730 CGIHTTPServer execfile should save cwd by Tim Peters · 20 years ago
  76. cc45466 Remove non-existent paths. by Brett Cannon · 20 years ago
  77. 497331f Fix how line endings were handled when iterating over a .pth file by stripping by Brett Cannon · 20 years ago
  78. 1e13054 test_email: comment out two fail-test cases that no longer fail with the new by Thomas Wouters · 20 years ago
  79. 934d31b Speed HMAC.copy() by installing a secret backdoor argument to by Tim Peters · 20 years ago
  80. 0813d76 Merge in Anthony's new parser code, from the anthony-parser-branch: by Thomas Wouters · 20 years ago
  81. 6fd0b0d commit the portion of PyXML patch #919008 that is relevant to the by Fred Drake · 20 years ago
  82. 5c5316f Add a new unicode codec: ptcp154 (Kazakh) by Hye-Shik Chang · 20 years ago
  83. 1281f76 * supply a more useful error message when append() is called on the by Gregory P. Smith · 20 years ago
  84. bce64ec bugfix for people executing test_all to run the test suite. (call the by Gregory P. Smith · 20 years ago
  85. 6e4620b 1. Make builtin foreground Royal Purple instead of Barney Purple. by Kurt B. Kaiser · 20 years ago
  86. cd1e8a9 Port test_binascii.py to PyUnit and enhance tests. by Walter Dörwald · 20 years ago
  87. 0bc3d98 1. Bug in Patch 805830 fixed by Nigel Rowe by Kurt B. Kaiser · 20 years ago
  88. deb4da5 Add missing docstrings. by Raymond Hettinger · 20 years ago
  89. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 20 years ago
  90. 118e127 Two issues spotted by Ronald OUssoren: by Jack Jansen · 20 years ago
  91. c32cec1 Don't use "dict" as a variable, it shadows the builtin. Spotted by Bob Ippolito. by Jack Jansen · 20 years ago
  92. 0576d0a Force option should be applied to a single package, not recursively by Jack Jansen · 20 years ago
  93. 2d95f1a SF patch #911431: robot.txt must be robots.txt (Contributed by George Yoshida.) by Raymond Hettinger · 20 years ago
  94. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 20 years ago
  95. 989ddc0 - Added a downloader using urllib2 in stead of curl, based on code by Jack Jansen · 20 years ago
  96. 6cbba50 Make test_coercion.py less sensitive to platform fp quirks. Closes by Neil Schemenauer · 20 years ago
  97. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  98. d2c3626 Eliminate the double reverse option. It's only use case by Raymond Hettinger · 20 years ago
  99. 4b6b7f1 Remove calls to currentThread() in _Condition methods that were side-effect. by Brett Cannon · 21 years ago
  100. 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 21 years ago