1. a4cb788 Change repr() of a new-style class to say <class 'ClassName'> rather by Guido van Rossum · 23 years ago
  2. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  3. 2306d24 + Got rid of all instances of <small>. Under IE5, GUI-mode pydoc has by Tim Peters · 23 years ago
  4. 3e767d1 GUI mode now displays useful stuff for properties. This is usually better by Tim Peters · 23 years ago
  5. f4aad8e + Text-mode (but not yet GUI mode) pydoc now produces useful stuff for by Tim Peters · 23 years ago
  6. 66c1a52 Make properties discoverable from Python: by Tim Peters · 23 years ago
  7. 30c4849 Added several new tests to check the behavior with respect to doctype by Fred Drake · 23 years ago
  8. e822049 Adapt to use the test_main() approach. by Fred Drake · 23 years ago
  9. a3bae33 Re-factor the SGMLParser class to use the new markupbase.ParserBase class. by Fred Drake · 23 years ago
  10. bfc8fea Re-factor the HTMLParser class to use the new markupbase.ParserBase class. by Fred Drake · 23 years ago
  11. 1cffd5c Be consistent about the string module. by Fred Drake · 23 years ago
  12. 68f8a80 New base class for the SGMLParser and HTMLParser classes from the sgmllib by Fred Drake · 23 years ago
  13. 1ee6422 Don't swap the arguments to PyFrame_BlockSetup when recreating the recently by Thomas Wouters · 23 years ago
  14. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  15. 2d87901 Add more tests showing the relationship between exceptions raised & caught by Fred Drake · 23 years ago
  16. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  17. e47df7a StringIO patch #462596: let's [c]StringIO accept read buffers on by Marc-André Lemburg · 23 years ago
  18. c72d4cd Fixed old bug (caused by careless Carbonizing) that noone noticed until by Just van Rossum · 23 years ago
  19. 287620f Patch #463421: speed up md5 module with real memcpy/set. by Martin v. Löwis · 23 years ago
  20. bb77e68 Change string comparison so that it applies even when one (or both) by Guido van Rossum · 23 years ago
  21. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  22. f244b2e Add more signature information and some descriptions for the new APIs by Fred Drake · 23 years ago
  23. 23a78cf Add more reference count information. by Fred Drake · 23 years ago
  24. 1497b62 Add link to Unix Review's 2.2 article Fix two errors by Andrew M. Kuchling · 23 years ago
  25. c11ccf3 start of new config handling stuff by Steven M. Gava · 23 years ago
  26. fa26f7c More work on class display: by Tim Peters · 23 years ago
  27. b47879b Try to do for pydoc's GUI mode what the earlier checkin did for text by Tim Peters · 23 years ago
  28. 2f60073 Added a note about the new email package. by Barry Warsaw · 23 years ago
  29. 2835549 Part of a partial solution to SF bugs 463378, 463381, 463383, 463384. by Tim Peters · 23 years ago
  30. 894258c Reactivate participation of expat parsers in GC. Fixes bug #462710. by Martin v. Löwis · 23 years ago
  31. 8ca177b Install the new Lib/email pkg. by Tim Peters · 23 years ago
  32. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  33. d31db7e The test data (mostly example messages) for the email package test by Barry Warsaw · 23 years ago
  34. 4107585 An extensive test suite for the email package. by Barry Warsaw · 23 years ago
  35. ba92580 The email package version 1.0, prototyped as mimelib by Barry Warsaw · 23 years ago
  36. d61d0d3 Added API information for the PyCallIter_*() and PySeqIter_*() functions. by Fred Drake · 23 years ago
  37. 13b49d3 New function classify_class_attrs(). As a number of SF bug reports by Tim Peters · 23 years ago
  38. 42b6877 Fix restore (difflib.restore() became a generator too). by Tim Peters · 23 years ago
  39. 8a9c284 Make difflib.ndiff() and difflib.Differ.compare() generators. This by Tim Peters · 23 years ago
  40. 380bad1 Add note about __getattribute__. by Guido van Rossum · 23 years ago
  41. e0b2d7a Add a function to compute a class's method resolution order. This is by Tim Peters · 23 years ago
  42. c377b16 Since the most likely failure mode for an expected-output test is a change by Tim Peters · 23 years ago
  43. 58b072d {String,cString}IO.StringIO's support iteration. by Barry Warsaw · 23 years ago
  44. 3e8be72 I_getiter(): Function for the tp_iter slot of Itype so that by Barry Warsaw · 23 years ago
  45. bdefa0b __iter__(): New method so that StringIO's can participate in the by Barry Warsaw · 23 years ago
  46. 038d264 Note that files are iterable; describe what the iterator returns. by Fred Drake · 23 years ago
  47. 7f8ff47 Converted test_StringIO.py to use unittest, so by Barry Warsaw · 23 years ago
  48. 3208d4b Start of a test to make sure the profiler/tracer support in the core by Fred Drake · 23 years ago
  49. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  50. 56dd35b Bump version number. by Fred Drake · 23 years ago
  51. c692055 Added reference to Tutorial section on user-defined exceptions for by Fred Drake · 23 years ago
  52. 13af428 Exceptions in interactive examlpes did not always include the indication of by Fred Drake · 23 years ago
  53. cf69193 reportdiff(): print a "plain diff" style diff. by Guido van Rossum · 23 years ago
  54. 0a07639 Oops. I didn't expect that some tests (test_cookie) have expected by Guido van Rossum · 23 years ago
  55. 0fcca4e Change the way unexpected output is reported: rather than stopping at by Guido van Rossum · 23 years ago
  56. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  57. dbb718f Make these modules work when Python is compiled without Unicode support. by Guido van Rossum · 23 years ago
  58. 11310bf Add tests for repr() of strings containing string quotes as well. by Guido van Rossum · 23 years ago
  59. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 23 years ago
  60. e4874ae Test basic functioning of unicode repr(). (If this breaks Jython, by Guido van Rossum · 23 years ago
  61. 8b9cc7e Add a small test to verify that member and getset descriptors now have by Guido van Rossum · 23 years ago
  62. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  63. a56b42b Change testdescr.py to use the test_main() approach. by Guido van Rossum · 23 years ago
  64. 2e2be37 Change the PyUnit-based tests to use the test_main() approach. This by Fred Drake · 23 years ago
  65. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  66. e0af35e Fill in a few more descriptions for xml.parsers.expat. by Fred Drake · 23 years ago
  67. 2e29bfb Document new file() constructor, with the body of open()'s text, plus a by Tim Peters · 23 years ago
  68. f47d8ef Document all the Py*_CheckExact() functions. by Fred Drake · 23 years ago
  69. 461591e PyLocale_setlocale(): silence compiler warning about free() of a const char *. by Guido van Rossum · 23 years ago
  70. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  71. 5e89bd6 Update test output after the unicode() change. by Marc-André Lemburg · 23 years ago
  72. fe148c8 Update description of Tools/compiler by Jeremy Hylton · 23 years ago
  73. 5953b40 Remove setup.py, unnecessary since compiler package is the std library. by Jeremy Hylton · 23 years ago
  74. e54b5b4 Moved to Tools/compiler along with astgen.py by Jeremy Hylton · 23 years ago
  75. dd4d1c4 _PyObject_GetDictPtr(): when the offset is negative, always align -- by Guido van Rossum · 23 years ago
  76. aefd766 Note about enhancements to unicode(). by Marc-André Lemburg · 23 years ago
  77. 35b0cb0 Python part of the UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  78. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  79. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  80. 26e3b68 Patch #462635 by Andrew Kuchling correcting bugs in the new by Marc-André Lemburg · 23 years ago
  81. efc3a3a SF bug [#463093] File methods need doc strings. Now they don't. by Tim Peters · 23 years ago
  82. c88425e run_suite(): Oops, update a docstring. by Barry Warsaw · 23 years ago
  83. c10d690 run_suite(): Factor this out of run_unittest() for tests that build by Barry Warsaw · 23 years ago
  84. 4bcfa31 Since inspect.isfunction(obj) is a precondition for calling by Tim Peters · 23 years ago
  85. f1d90b9 Ensure that isfunction(obj) and (the new) ismethoddescriptor(obj) never by Tim Peters · 23 years ago
  86. c9ed5dc News about compiler and pydoc. by Guido van Rossum · 23 years ago
  87. ed8fa72 AFAICT pydoc/inspect do the right thing again. by Guido van Rossum · 23 years ago
  88. 536d226 After much thrashing, I believe this is a truly minimal patch to teach by Tim Peters · 23 years ago
  89. 3069d50 Install the compiler package under Lib. by Tim Peters · 23 years ago
  90. b3c569c The compiler package is now part of the standard library. by Jeremy Hylton · 23 years ago
  91. f6cc07c Patch #461321: Support None as a timeout in poll2 and poll3. by Martin v. Löwis · 23 years ago
  92. 2777c02 Patch #462849: Pass Unicode objects to file's .write method. by Martin v. Löwis · 23 years ago
  93. 5b5e0b9 Keep tabnanny happy. by Guido van Rossum · 23 years ago
  94. 816a1b7 Fixed search function error reporting in the encodings package by Marc-André Lemburg · 23 years ago
  95. 494f2ae Docs and News item for the codecs.py additions. by Marc-André Lemburg · 23 years ago
  96. aa32c5a Added new helpers for easy access to codecs. Docs will follow. by Marc-André Lemburg · 23 years ago
  97. 5e6007c Fix for bug #462737. by Marc-André Lemburg · 23 years ago
  98. 7090ed1 Include ctype.h after Python.h. by Martin v. Löwis · 23 years ago
  99. c57428d Patch to bug #461753: Allow None in ExternalEntityParserCreate. by Martin v. Löwis · 23 years ago
  100. 5485404 Patch to bug #461754: CDATA should not undergo entity subst. by Martin v. Löwis · 23 years ago