1. ffa5a50 Small fixes in freeze.py. by Gustavo Niemeyer · 20 years ago
  2. 253d1f4 Record UnixWare 7.1.4 as broken. Fixes #929689. Backported to 2.3. by Martin v. Löwis · 20 years ago
  3. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  4. 156c49a Revert last change. by Raymond Hettinger · 20 years ago
  5. 6924a00 Use sets instead of lists for membership testing by Raymond Hettinger · 20 years ago
  6. 30633c9 [Bug #945063] Get file extension correct. (2.3 bugfix candidate) by Andrew M. Kuchling · 20 years ago
  7. 67a521e note that descriptor objects must be instances of new-style types by Fred Drake · 20 years ago
  8. e143bbb fix documentation for ContentHandler.ignorableWhitespace() by Fred Drake · 20 years ago
  9. 56fcc23 markup adjustments by Fred Drake · 20 years ago
  10. ae20722 Consider output encoding in XMLGenerator. Fixes #938076. Backported to 2.3. by Martin v. Löwis · 20 years ago
  11. 0ea558f Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637. by Martin v. Löwis · 20 years ago
  12. 456ab1d Swap public and system ID in start_doctype_decl. Fixes #780300. by Martin v. Löwis · 20 years ago
  13. 8b3e871 Patch #944110: Properly process empty passwords. Fixes #944082. by Martin v. Löwis · 20 years ago
  14. f1f0560 Patch #940026: Explain "in" when it is first used. Backported to 2.3. by Martin v. Löwis · 20 years ago
  15. 99872c1 [Bug #810879] Document that copyfile() can fail if you don't have permissions; also, fix a double negative. by Andrew M. Kuchling · 20 years ago
  16. 0fefc14 Fix small grammatical mistake. by Brett Cannon · 20 years ago
  17. fdfe618 Nits: by Raymond Hettinger · 20 years ago
  18. 0468e41 SF patch #947476: Apply freelist technique to lists by Raymond Hettinger · 20 years ago
  19. 8aa8c84 add an index entry for __getnewargs__() by Fred Drake · 20 years ago
  20. 0de77d1 - note that __getinitargs__() is only for old-style classes by Fred Drake · 20 years ago
  21. 04d92c3 Remove list of pickle protocol names used by the copy module; there by Fred Drake · 20 years ago
  22. cee8879 note that the error code for socket.gaierror will be one of the EAI_* by Fred Drake · 20 years ago
  23. 4fe97ca SF #814606: merge from release23-maint branch: clarify/cleanup by Greg Ward · 20 years ago
  24. e9c2ecf Removed 'U' from the documentation for Py_BuildValue to bring it in line by Nicholas Bastin · 20 years ago
  25. 5068c87 Document readline module functions added in Python 2.3. See: by Phillip J. Eby · 20 years ago
  26. 843c734 Using reversed() is not compatible with Python 1.5.2. by Guido van Rossum · 20 years ago
  27. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  28. c5e378d Testing for None should be done with 'is' by Raymond Hettinger · 20 years ago
  29. 0b569bb Stacks based on lists work better and read more clearly when they by Raymond Hettinger · 20 years ago
  30. 2d5914b Fix [ 947405 ] os.utime() raises bad exception for unicode filenames by Mark Hammond · 20 years ago
  31. 9f1340b Do not use the default namespace for attributes. by Martin v. Löwis · 20 years ago
  32. d7911a3 Minor documentation nits. by Raymond Hettinger · 20 years ago
  33. f5f9a370 Add an example application to the docs. by Raymond Hettinger · 20 years ago
  34. 6fbf703 the headers in an HTTP request are HTTP headers, not MIME headers by Fred Drake · 20 years ago
  35. c60c203 Add a test script for the colorsys module. by Walter Dörwald · 20 years ago
  36. ceeb191 remove out-of-date count of the functions in winsound by Fred Drake · 20 years ago
  37. 6d4c7b0 fix typo reported in a long-buried email by Fred Drake · 20 years ago
  38. 1a74a12 The filename of this module changed again... by Thomas Heller · 20 years ago
  39. e898d19 Complete perky's name change patch. by Raymond Hettinger · 20 years ago
  40. e3636e0 Fix a bug I introduced which causes all block openers at an indent level by Kurt B. Kaiser · 20 years ago
  41. ce97fbe Correct the file name of _heapq module. by Hye-Shik Chang · 20 years ago
  42. d00587a 1. Add an Options menu entry: Code Context by Kurt B. Kaiser · 20 years ago
  43. 610c7e0 1. Polish variables in EditorWindow extension loading and Tkinter variable code. by Kurt B. Kaiser · 20 years ago
  44. 46a16f2 SF bug #940579: section 5.10: 'not' returns boolean, not int by Raymond Hettinger · 20 years ago
  45. 6024722 Remove the Modules/heaqmodule.c, and add Modules/_heapmodule.c, so by Thomas Heller · 20 years ago
  46. cc10a85 Forgot to mention the SF number, and that Bob Ippolito provided the patch. by Thomas Heller · 20 years ago
  47. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago
  48. 1a9d32b cvs ignore the user options files *.suo by Thomas Heller · 20 years ago
  49. 8598b10 Modules/heapqmodule.c removed. Modules/_heapmodule.c added. by Thomas Heller · 20 years ago
  50. 54d1a3b - New Extension: CodeContext. Provides block structuring hints for code by Kurt B. Kaiser · 20 years ago
  51. 9f62ecc SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  52. 0f5bf1e SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  53. 1660e0c * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  54. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  55. 61e40bd Special case normalization of empty strings. Fixes #924361. Backported to 2.3. by Martin v. Löwis · 20 years ago
  56. e5fced7 SF bug #936827: PyNumber_And() 's description by Raymond Hettinger · 20 years ago
  57. b4fb862 The wininst-6.exe template binary for bdist_wininst is now linked by Thomas Heller · 20 years ago
  58. 89adf0a The wininst-7.1.exe template binary for bdist_wininst is now linked by Thomas Heller · 20 years ago
  59. 0ed6634 really scream out that people should use the file objects instead of by Fred Drake · 20 years ago
  60. c00fc84 Open file in universal newline mode when passing to compile(). Solution by Skip Montanaro · 20 years ago
  61. 10659f2 bring description of optional and keyword args for DictReader and DictWriter by Skip Montanaro · 20 years ago
  62. 26510d4 delete timing output - it appears after the </html> line. by Skip Montanaro · 20 years ago
  63. 9614219 Minor reformatting. by Thomas Heller · 20 years ago
  64. 8efc74d remove bogus markup that caused the docs to be wrong by Fred Drake · 20 years ago
  65. 54f9439 Bug #934635: Fix a bug where the configure script couldn't detect by Hye-Shik Chang · 20 years ago
  66. 0046839 Change two instance of format strings for PyString_FromFormat() to use %ld by Brett Cannon · 20 years ago
  67. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  68. 45d0b5c Use Py_RETURN_NONE macro where applicable. by Raymond Hettinger · 20 years ago
  69. 501f02c Small refactoring saving one function() and eliminating some indirection. by Raymond Hettinger · 20 years ago
  70. 40a0382 * Specialize ins1() into app1() for appends. Saves several unnecessary by Raymond Hettinger · 20 years ago
  71. 71b2411 Record test_bsddb3 test results on WinXP. by Tim Peters · 20 years ago
  72. a0d781a Update the OpenSSL version example from c to d (the current stable one), by Tim Peters · 20 years ago
  73. 0e93309 The native bz2 tests worked fine for me under WinXP Pro + VC7.1, so by Tim Peters · 20 years ago
  74. 011de6c Record Tcl and Tk test results for WinXP Pro. by Tim Peters · 20 years ago
  75. c8aa08b Some (but not all) of the why code bitfield tests ran faster as by Raymond Hettinger · 20 years ago
  76. b888200 add AF_UNIX notes by Andrew MacIntyre · 20 years ago
  77. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 20 years ago
  78. cf6f1b6 M EditorWindow.py M IOBinding.py M NEWS.txt M configDialog.py by Kurt B. Kaiser · 20 years ago
  79. 5bed456 Revert 2.393, elimination of pre-decrementing, which by Raymond Hettinger · 20 years ago
  80. 249369c atof: correct parameter name by Skip Montanaro · 20 years ago
  81. 5bfd984 Refactor common code out of globaltrace_trackcallers() and by Skip Montanaro · 20 years ago
  82. 6b3b046 fix up some markup by Fred Drake · 20 years ago
  83. 7dacda2 Provide more information representations of repeat() and count(). by Raymond Hettinger · 20 years ago
  84. 94ffbb7 give rational filenames to some of the generated HTML by Fred Drake · 20 years ago
  85. 4cc425a switch to PNG navigation icons by default by Fred Drake · 20 years ago
  86. 4f580e8 include both the GIF and PNG icons in the HTML package by Fred Drake · 20 years ago
  87. 899072a avoid stripping space after indexing macros by Fred Drake · 20 years ago
  88. d0c0c41 note --trackcalls flag in trace module by Skip Montanaro · 20 years ago
  89. cafc811 Added --trackcalls command line arg to display crude caller/callee by Skip Montanaro · 20 years ago
  90. 7eddd78 Use continue instead of break whereever possible. by Raymond Hettinger · 20 years ago
  91. d3b836d * Improve readability and remove data dependencies by converting by Raymond Hettinger · 20 years ago
  92. 467a698 Small code improvements for readability, code size, and/or speed. by Raymond Hettinger · 20 years ago
  93. 22ab06e Fix comment typo by Andrew M. Kuchling · 20 years ago
  94. d9b38d2 Remove specific Python version from #! by Andrew M. Kuchling · 20 years ago
  95. 7c95865 Simplify previous checkin (bitfields for WHY codes). by Raymond Hettinger · 20 years ago
  96. 06032cb Coded WHY flags as bitfields (taking inspiration from tp_flags). by Raymond Hettinger · 20 years ago
  97. 4057483 SF Patch #926375: Remove a useless UTF-16 support code that is never by Hye-Shik Chang · 20 years ago
  98. 8a5c3c7 Since the fast_yield branch target was introduced, it appears that most by Tim Peters · 20 years ago
  99. ed9192e Improve previous checkin to use a slot check instead of equivalent by Raymond Hettinger · 20 years ago
  100. e2eda60 Improve accuracy of sequence and mapping checks. by Raymond Hettinger · 20 years ago