1. 5ddd1a8 Updated to latest PyUnit version (1.31 in PyUnit CVS); test_support.py by Steve Purcell · 23 years ago
  2. 2e2cded Set the line number correctly for a nested function with an exec or by Jeremy Hylton · 23 years ago
  3. 280e6bd Make error messages clearer for illegal combinations of nested by Jeremy Hylton · 23 years ago
  4. 6e9c0ba Remove redundant import by Andrew M. Kuchling · 23 years ago
  5. ac20f77 Back out conversion to string methods; the Distutils is intended to work by Andrew M. Kuchling · 23 years ago
  6. a7f225d Call the write_pkg_info method by Andrew M. Kuchling · 23 years ago
  7. a7210ed Add 'platforms' and 'keywords' attributes to the DistributionMetadata class, by Andrew M. Kuchling · 23 years ago
  8. df66df0 Patch #407434: add rfc822_escape utility function by Andrew M. Kuchling · 23 years ago
  9. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 23 years ago
  10. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 23 years ago
  11. f6e47ad Check that f.keys() == [] right after creation -- this prevents bugs by Guido van Rossum · 23 years ago
  12. 4edbc2a Add CONFIG_ARGS Makefile variable (saves the arguments passed to configure). by Neil Schemenauer · 23 years ago
  13. 64b1b68 - Remove WITH makefile variable. Its not used for anything. by Neil Schemenauer · 23 years ago
  14. ec24c1b Don't raise MemoryError in keys() when the database is empty. by Guido van Rossum · 23 years ago
  15. 24a4191 Changed doctest to run tests in alphabetic order of name. by Tim Peters · 23 years ago
  16. c392b57 Integrated an expanded version of some text from Neil Schemenauer about by Fred Drake · 23 years ago
  17. 09ccc3a Test that traceback module works with SyntaxErrors with or without carets. by Jeremy Hylton · 23 years ago
  18. ed9d0ba Do not print caret when offset is None. by Jeremy Hylton · 23 years ago
  19. 6783070 Make PyDict_Next safe to use for loops that merely modify the values by Tim Peters · 23 years ago
  20. 66b0e9c Use PyObject_IsInstance() to check whether the first argument to an by Guido van Rossum · 23 years ago
  21. 69e9e8b Reformat and edit docstrings to follow modern conventions. Single by Jeremy Hylton · 23 years ago
  22. ded4bd7 Update PyNode_CompileSymtable() to understand future statements by Jeremy Hylton · 23 years ago
  23. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  24. 9175114 Add test cases for the fnmatch module. by Fred Drake · 23 years ago
  25. cd1b1dd Just import sys at the top instead of inside lots of functions. by Fred Drake · 23 years ago
  26. 0253820 The unittest module from PyUNIT, by Steve Purcell. by Fred Drake · 23 years ago
  27. 46d9fda Donovan Baarda <abo@users.sourceforge.net>: by Fred Drake · 23 years ago
  28. 2271082 Fixed a bunch of Tabnanny errors by Moshe Zadka · 23 years ago
  29. 5c7a251 Add tests for recent changes: by Jeremy Hylton · 23 years ago
  30. 220ae7c Fix PyFrame_FastToLocals() and counterpart to deal with cells and by Jeremy Hylton · 23 years ago
  31. bec1958 Use proper compiler flags on UnixWare. Closes bug #231439. by Martin v. Löwis · 23 years ago
  32. f74c9dc Add newline to end of file. by Guido van Rossum · 23 years ago
  33. be0e7f4 Document tix directory. by Martin v. Löwis · 23 years ago
  34. 0411f6f Add section on 2.1b2. Report the addition of the Tix module. by Martin v. Löwis · 23 years ago
  35. b1d1969 Remove Tix detection from Tkinter part; lib-tk/Tix attempts to load Tix by Martin v. Löwis · 23 years ago
  36. b21cb5f Patch #410231: Add the Python Tix library. by Martin v. Löwis · 23 years ago
  37. 2c91c81 Patch #409504: Fix regex problems, consider \-continuation lines in Makefile by Martin v. Löwis · 23 years ago
  38. 55f826c Update Windows installer for 2.1b2. by Tim Peters · 23 years ago
  39. eba5130 Addrf simple test that import is case-sensitive. by Tim Peters · 23 years ago
  40. 9de05f4 Started on 2.1b2 release notes. Cleaned out alfa notes, etc. by Jack Jansen · 23 years ago
  41. 875b51d Added dummy _tkinter module for Carbon, which explains that Tkinter isnt supported under Carbon. by Jack Jansen · 23 years ago
  42. aabdb0d Dummy _tkinter module for Carbon, which explains that Tkinter isnt supported under Carbon. by Jack Jansen · 23 years ago
  43. 4e6d09e Moved the description of the tzparse module to the "Obsolete" section by Fred Drake · 23 years ago
  44. 4df3c52 Case-checking was broken on the Macintosh. Fixed. by Jack Jansen · 23 years ago
  45. fddef43 Got module to work under Carbon. Also disabled a few more bits of cfm68k support. by Jack Jansen · 23 years ago
  46. 26d42df Added riscos modules to modules that don't have to be included. by Jack Jansen · 23 years ago
  47. 6b767ac Lawrence Hudson, SF #401702: Modify co_filename in frozen programs by Guido van Rossum · 23 years ago
  48. b845cb0 Bump version to 2.1b2. by Guido van Rossum · 23 years ago
  49. d092694 Add a deprecation warning to this module. by Guido van Rossum · 23 years ago
  50. 44f5f8f Bug #409419: delete seek() and tell() methods, so callers can use getattr() by Andrew M. Kuchling · 23 years ago
  51. d3f193f * Fixing the password-proxy bug by Moshe Zadka · 23 years ago
  52. 6abce91 Get rid of --with-check-import-case. (Jason Tishler, SF #409924) by Guido van Rossum · 23 years ago
  53. a1351fb SF patch #408326 by Robin Thomas: slice objects comparable, not hashable by Guido van Rossum · 23 years ago
  54. 26ae7cd SF patch 407758, "timemodule patches for Cygwin", from Norman Vine. by Tim Peters · 23 years ago
  55. ce7ef59 Fixup handling of free variables in methods when the class scope also by Jeremy Hylton · 23 years ago
  56. e241e29 Add test for a list comprehension that is nested in the left-hand part by Jeremy Hylton · 23 years ago
  57. 23b4227 Fix crashes in nested list comprehensions SF bugs 409230 and 407800 by Jeremy Hylton · 23 years ago
  58. baa03e8 When building the installer, prompt for the location of the system directory by Tim Peters · 23 years ago
  59. a8423a9 Add a whole lot of stuff to __all__. by Guido van Rossum · 23 years ago
  60. f531ad6 Markup nit: For the Python documents, we use \empt instead of \textit. by Fred Drake · 23 years ago
  61. 9e6f278 Repair test_doctest's expected-output file (Guido added some new output). by Tim Peters · 23 years ago
  62. 64de1a4 add errorTab to __all__ on win* closes bug #406642 by Skip Montanaro · 23 years ago
  63. 8f4eab2 Committing patch 405101 by Moshe Zadka · 23 years ago
  64. 261d91a Make doctest's self-test succeed after the previous change. by Guido van Rossum · 23 years ago
  65. af00a46 Print a bunch of asterisks before the failure summary, to separate it by Guido van Rossum · 23 years ago
  66. 1bb515b Teach Tools/freeze/makeconfig.py and Tools/freeze/parsesetup.py to use by Eric S. Raymond · 23 years ago
  67. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 23 years ago
  68. 7620bbd Fix bug #233253: the --define and --undef options didn't work, whether by Andrew M. Kuchling · 23 years ago
  69. 898f099 Bug #409403: Signal an error if the distribution's metadata has no version by Andrew M. Kuchling · 23 years ago
  70. 9b5abcd Tidy up the ordering of include and library directories, putting by Andrew M. Kuchling · 23 years ago
  71. 84e87f3 SF bug [ #233200 ] cPickle does not use Py_BEGIN_ALLOW_THREADS. by Tim Peters · 23 years ago
  72. d179be8 Distutils version number has been changed from 1.0.1 to 1.0.2pre by Thomas Heller · 23 years ago
  73. 5c5ea1a The bdist_wininst.py command has been recreated after wininst.exe by Thomas Heller · 23 years ago
  74. b15bbc8 Add documentation for SGMLParser.handle_decl(). by Fred Drake · 23 years ago
  75. 6695737 Change RuntimeError to SGMLParseError, which subclasses RuntimeError by Fred Drake · 23 years ago
  76. 83e01bf Finally fill in the documentation for the PyDict_Next() function. It is by Fred Drake · 23 years ago
  77. cf20d4f Install the Python DLL with execute priviledge set. This is required for by Neil Schemenauer · 23 years ago
  78. 30edd23 Whitespace normalization. by Tim Peters · 23 years ago
  79. 4cf97c4 Files for second 2.1b1 distribution. by Jack Jansen · 23 years ago
  80. 5c82d13 FindFolder argument is a short, not an unsigned short. by Jack Jansen · 23 years ago
  81. 6b498de Handle the apple menu differently under Carbon. by Jack Jansen · 23 years ago
  82. abd703d FindFolder argument is a short, not an unsigned short. by Jack Jansen · 23 years ago
  83. 06646a1 Added QDFlushPortBuffer calls. by Jack Jansen · 23 years ago
  84. fffec05 Import kOnSystemDisk from MACFS by Jack Jansen · 23 years ago
  85. d11f93c Look for shared libraries first in kLocalDomain and then in kOnSystemDisk. by Jack Jansen · 23 years ago
  86. 8ef786e Files for second 2.1b1 distribution. by Jack Jansen · 23 years ago
  87. 3bda4f0 Remove redundant "__future__:" from module docstring. by Ka-Ping Yee · 23 years ago
  88. 904f2fc Import the exceptions that this module can raise. by Fred Drake · 23 years ago
  89. adcf8a0 Add doc string for run from profile.doc. (pydoc motivates me to write by Jeremy Hylton · 23 years ago
  90. 538453e Moved clearing of "literal" flag. The flag is set in setliteral which by Sjoerd Mullender · 23 years ago
  91. 62dfed9 Change "[%s]" % string.whitespace to r"\s" in regular expressions. by Fred Drake · 23 years ago
  92. 44d5e0c updated __all__ to include several other names by Skip Montanaro · 23 years ago
  93. 1b0b2a4 Add some LaTeX magic so that Latin-1 characters do not get so badly trashed. by Fred Drake · 23 years ago
  94. 126f2f6 Patch #407965: Improve Level 2 conformance of minidom by Martin v. Löwis · 23 years ago
  95. a8f7e59 Oops. A RISCOS patch I forgot to check in. by Guido van Rossum · 23 years ago
  96. 5b44a67 Add test to verify that nested functions with free variables don't by Jeremy Hylton · 23 years ago
  97. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 23 years ago
  98. 93fe96a Py_BuildValue(): Add "D" conversion to create a Python complex value from by Fred Drake · 23 years ago
  99. aec7924 Py_BuildValue(): Add "D" conversion to create a Python complex value from by Fred Drake · 23 years ago
  100. 521c83d Multifile.read(): Fix a broken conversion to string methods. by Fred Drake · 23 years ago