1. b96d802 Updated test with a case which checks for the bug reported in by Marc-André Lemburg · 24 years ago
  2. de49583 Possible fix for Skip's bug 116136 (sre recursion limit hit in tokenize.py). by Tim Peters · 24 years ago
  3. 70d87d7 Prep Windows installer for 2.0c1: title and build number. by Tim Peters · 24 years ago
  4. f2fba87 Fix for next iteration of SF bug 115690 (Unicode headaches in IDLE). The by Tim Peters · 24 years ago
  5. 0a84a33 Add .toxml test case, as proposed by Alex Martelli in bug report #116244. by Martin v. Löwis · 24 years ago
  6. 2c8a89c minidom: access attribute value before printing it by Martin v. Löwis · 24 years ago
  7. 80670bc Add a test case for reporting the file name, and for reporting an error by Martin v. Löwis · 24 years ago
  8. 31b485f In an incremental parser, close the parser after feeding everything. by Martin v. Löwis · 24 years ago
  9. 5fece7f Don't use a file object as system id; try to propagate the file name to by Martin v. Löwis · 24 years ago
  10. 2aa93ef Don't report a final chunk for an external entity parser. by Martin v. Löwis · 24 years ago
  11. ee1dc15 Move translation from expat.error to SAXParseException into feed, so that by Martin v. Löwis · 24 years ago
  12. c2bac87 Include more information from the docstrings. by Fred Drake · 24 years ago
  13. 3a844a2 Another name. by Fred Drake · 24 years ago
  14. db810ac Donn Cave <donn@oz.net>: Fix large file support for BeOS. by Fred Drake · 24 years ago
  15. 24c532a Fix a couple of typos in docstrings. by Fred Drake · 24 years ago
  16. 5197444 Fix really bad typo, noted by Neil Schemenauer <nas@arctrix.com>. by Fred Drake · 24 years ago
  17. c6243e4 Add notes on the requirements for subclasses. by Fred Drake · 24 years ago
  18. 2e06c20 Revise the versioning information to say that this was revised in 1.6, by Fred Drake · 24 years ago
  19. 062ea2e Made a number of revisions suggested by Fredrik Lundh. by Fred Drake · 24 years ago
  20. e2b7c4d test_linuxaudio: by Jeremy Hylton · 24 years ago
  21. d88d0a1 It turns out that Guido does not like or encourage the use of the term by Fred Drake · 24 years ago
  22. cc773d3 __getslice__(): Make this use the constructor form that gets a sequence by Fred Drake · 24 years ago
  23. e60de4d Added a new "base" type, IOobject for which most of the by Jim Fulton · 24 years ago
  24. d1229f5 Uncommented tests that failed for cStringIO, by Jim Fulton · 24 years ago
  25. 6d699ca Adding Jeremy's new test_import (SF patch 101709). by Tim Peters · 24 years ago
  26. 962c9e7 Add SAXReaderNotAvailable, and use it to distinguish between an by Martin v. Löwis · 24 years ago
  27. 75698a4 Removing these scripts. redemo.py lives on in Tools/scripts/. by Guido van Rossum · 24 years ago
  28. 70280b8 I'm moving redemo.py here from Demo/tkinter/guido, since it is by Guido van Rossum · 24 years ago
  29. 2834b97 [ Bug #113803 ] [2.0b1 NT4.0] printing non asci char causes idle to abort by Guido van Rossum · 24 years ago
  30. 4764913 Use the cvsinfo module instead of a module stuff off in my personal collection. by Fred Drake · 24 years ago
  31. 72fbd82 Support module to help work with checked-out CVS trees. by Fred Drake · 24 years ago
  32. 60ad79f Donn Cave <donn@oz.net>: New README for BeOS R5. by Fred Drake · 24 years ago
  33. 02776ad Donn Cave <donn@u.washington.edu>: by Fred Drake · 24 years ago
  34. b59c460 Donn Cave <donn@u.washington.edu>: by Fred Drake · 24 years ago
  35. a6c2eb5 Donn Cave <donn@u.washington.edu>: by Fred Drake · 24 years ago
  36. 51d9036 Norman Vine <nhv@users.sourceforge.net>: by Fred Drake · 24 years ago
  37. 5d63a39 is_zipfile() description: Use the same name for the parameter as the by Fred Drake · 24 years ago
  38. 50a22a4 Added a name. by Fred Drake · 24 years ago
  39. 36ed560 Added section on threads problems on Reliant UNIX; this relates to by Fred Drake · 24 years ago
  40. 00236f3 [ Bug #110677 ] PRIVATE: various minor Tkinter things (PR#388) by Guido van Rossum · 24 years ago
  41. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  42. 4779a0a Remove some debugging messages - although this code is a complete hack, we dont need to announce it to the world every time they use freeze! by Mark Hammond · 24 years ago
  43. 034c2a9 Add support for "import re" -- it uses pre, but user code does not need to. by Fred Drake · 24 years ago
  44. 410cb6b The _PyTuple_Resize() last_is_sticky flag must now always be false. by Neil Schemenauer · 24 years ago
  45. 08b53e6 Simplify _PyTuple_Resize by not using the tuple free list and dropping by Neil Schemenauer · 24 years ago
  46. 98dc065 SF "bug" 115973: patches from Norman Vine so that shared libraries and by Tim Peters · 24 years ago
  47. 293b03f translation(): Minor optimization patch which avoids instantiating the by Barry Warsaw · 24 years ago
  48. 7d1219d Change all occurances of by Barry Warsaw · 24 years ago
  49. 3dc0a51 [ Patch #101730 ] Add initial static support for Darwin/MacOSX. By D.K. Wolfe. by Guido van Rossum · 24 years ago
  50. 77317ca Added Py_FPROTO macro which was available in Python 1.5.x and below. by Marc-André Lemburg · 24 years ago
  51. 7724944 Fix Bug #115907: encode '=' as '=3D' and not '==' by Jeremy Hylton · 24 years ago
  52. 9351dd2 Document the lookbehind assertions (closing bug#115119) by Andrew M. Kuchling · 24 years ago
  53. dc9100f Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the by Thomas Wouters · 24 years ago
  54. 7a90db6 Document expand() method of MatchObjects by Andrew M. Kuchling · 24 years ago
  55. 1f7838b Detect conflicting Python DLL on module import under Windows - as per [ Patch #101676 ] by Mark Hammond · 24 years ago
  56. 85788ed Better add at least a short docstring to the module! by Fred Drake · 24 years ago
  57. 6522192 Add a link to the new acks.html file. by Fred Drake · 24 years ago
  58. 3705e59 Add rules for generating the acks.html file at the top of the document tree. by Fred Drake · 24 years ago
  59. 702f2d7 Ignore the acks.html file, since it is generated. by Fred Drake · 24 years ago
  60. f23431d New script to convert the ACKS file to a nicely formatted HTML file. by Fred Drake · 24 years ago
  61. 01a110b Use the new support module instead of including all the getopt by Fred Drake · 24 years ago
  62. ca2b2e0 Factor out some of the presentation and shared code from mkmodindex and by Fred Drake · 24 years ago
  63. 4beff43 List of acknowledgements culled from CVS checkin logs and memory. by Fred Drake · 24 years ago
  64. ad14720 New tool for normalizing indentation of .py files. by Tim Peters · 24 years ago
  65. 559b5c8 Update for next planned release. by Fred Drake · 24 years ago
  66. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 24 years ago
  67. c85eb0b Enable the binascii module for Win64. It builds and passes the test suite. by Trent Mick · 24 years ago
  68. d68d0a6 Fix for test_class.py on Win64. id(self), which on Win64 returns a by Trent Mick · 24 years ago
  69. b2c2c9e - update Neil's email address by Neil Schemenauer · 24 years ago
  70. 97d723b - do not start collection during processing of an exception by Neil Schemenauer · 24 years ago
  71. 5196c58 - Fix a GC bug caused by PyDict_New() failing. by Neil Schemenauer · 24 years ago
  72. e3550a6 - fix a GC bug caused by malloc() failing by Neil Schemenauer · 24 years ago
  73. 15f0666 Added deprecation notices to atof(), atoi(), and atol(), recommending by Fred Drake · 24 years ago
  74. c71c23e Added \versionchanged comment to os.popen() noting that it was unreliable by Fred Drake · 24 years ago
  75. 63eb630 Remove styling information that conflicts with or duplicates the stylesheet; by Fred Drake · 24 years ago
  76. d44dc3c Rewrites to section on new development process, after Usenet discussion by Andrew M. Kuchling · 24 years ago
  77. 0b4e25d Use \obindex{...} instead of \indexii{...}{type} in many places; this is by Fred Drake · 24 years ago
  78. d215218 test_popen2 broke on Windows shortly after 2.0b2 was released. Fixed it. by Tim Peters · 24 years ago
  79. cf0a1cc Support non-namespace elements in *ElementNS of XMLGenerator. by Martin v. Löwis · 24 years ago
  80. 1654b43 Preliminary tool to troll through the CVS logs and LaTeX sources for by Fred Drake · 24 years ago
  81. 5b4c228 _PyUnicode_Fini(): Initialize the local freelist walking variable `u' by Barry Warsaw · 24 years ago
  82. 562586e Accept keyword arguments for (most) pattern and match object by Fredrik Lundh · 24 years ago
  83. d11b5e5 Recompile pattern if (?x) flag was found inside the pattern during the by Fredrik Lundh · 24 years ago
  84. 4ae8ef8 In _PyUnicode_Fini(), decref unicode_empty before tearng down the free by Guido van Rossum · 24 years ago
  85. 1319e3e Remove old note that os.popen() on Windows is unreliable; this is no by Fred Drake · 24 years ago
  86. f19a7ac Fix a few problems with the _Printer class and the license variable. by Guido van Rossum · 24 years ago
  87. 12e1595 Clarify that isatty is only guaranteed to return true for slave ends of by Thomas Wouters · 24 years ago
  88. f2c1be2 On some systems (like Solaris), the master end of a tty/pty pair is by Thomas Wouters · 24 years ago
  89. 13589c6 Bump the release number for the upcoming candidate. by Fred Drake · 24 years ago
  90. 65d4bc6 Fixed negative lookahead/lookbehind. Closes bug #115618. by Fredrik Lundh · 24 years ago
  91. 8429448 _PyImport_Fini(): Closed small memory leak when an embedded app calls by Barry Warsaw · 24 years ago
  92. e35360f Jim Ahlstrom sent a few corrections to my changes. (Thanks!) by Fred Drake · 24 years ago
  93. 5191463 Undo Ping's change. by Guido van Rossum · 24 years ago
  94. 099e534 Change first line to #!/usr/bin/env python (really just to test check-in). by Ka-Ping Yee · 24 years ago
  95. 5f84c9b $OFF_SITE_LINK_ICON: Don't define here; simply defining it overrides a by Fred Drake · 24 years ago
  96. 58a2dff Replace minimal \seetext references with better annotated \seerfc by Fred Drake · 24 years ago
  97. da175f4 Bump version to 1.0. by Greg Ward · 24 years ago
  98. 25a309c Remove some debugging prints. by Greg Ward · 24 years ago
  99. a9d3783 Fixed so --no-compile is a negative alias for --compile. by Greg Ward · 24 years ago
  100. 9216cfe Added a long-winded comment (and commented-out comment to go with out) by Greg Ward · 24 years ago