1. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  2. 4642cb9 Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless of by Tim Peters · 23 years ago
  3. ac6985f SOCKET.py and TERMIOS.py are no longer used in this release. by Guido van Rossum · 23 years ago
  4. 2242f2f Unixware 7 support by Billy G. Allie (SF patch 413011) by Guido van Rossum · 23 years ago
  5. 84ec1f9 typo by Jeremy Hylton · 23 years ago
  6. 01d1293 [finishing fix from earlier checkins] by Jeremy Hylton · 23 years ago
  7. d91bbba Add support for extra (*) arguments to preorder. by Jeremy Hylton · 23 years ago
  8. 9ab019b Generate docstrings. by Jeremy Hylton · 23 years ago
  9. 4c1f427 Add lineno attributes to Discard nodes by Jeremy Hylton · 23 years ago
  10. 5af105e Make sure the docstring is always entered as the first element in the by Jeremy Hylton · 23 years ago
  11. ceccc3c Test cases for examples of ext call error handling. by Jeremy Hylton · 23 years ago
  12. 7667680 Idiotic braino caused HTTP openers to ignore proxies. This fixes 413135 by Moshe Zadka · 23 years ago
  13. 285a7e5 Add a close_request method to the BaseServer so that the TCPServer class by Ka-Ping Yee · 23 years ago
  14. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 23 years ago
  15. 40f3c7f The lower() and tkraise() methods were calling the Canvas widget by Guido van Rossum · 23 years ago
  16. 9a9d219 mapping(): Remove this function since it does not add anything to the API. by Fred Drake · 23 years ago
  17. bf43691 Use the WeakKeyDictionary and WeakValueDictionary classes directly by Fred Drake · 23 years ago
  18. f6cdead Since bdist_wininst.py contains the installer executable, it had to be rebuild. by Thomas Heller · 23 years ago
  19. e9901f3 Fix two unqualified except: clauses. by Guido van Rossum · 23 years ago
  20. 6274fff Fix an unqualified except:. by Guido van Rossum · 23 years ago
  21. 9c673f3 Try an except: after an import into "except ImportError". by Guido van Rossum · 23 years ago
  22. 75ebb29 Some other tests, when failing, don't always remove their TESTFN file. by Guido van Rossum · 23 years ago
  23. a5af214 When doing the quick test to see whether large files are supported, by Guido van Rossum · 23 years ago
  24. bfce016 When zlib can't be imported, zipfile raises RuntimeError, which causes by Guido van Rossum · 23 years ago
  25. 41763b9 Fix typo in instantiation of ErrorDuringImport. by Ka-Ping Yee · 23 years ago
  26. 5a804ed Fix synopsis() so it can handle binary module files. by Ka-Ping Yee · 23 years ago
  27. 4d6fc7f Add getmodulename() and getmoduleinfo() routines to inspect filenames. by Ka-Ping Yee · 23 years ago
  28. 4471400 test_pickle works on sizeof(long)==8 boxes again. by Tim Peters · 23 years ago
  29. e089c68 Test full range of native ints. This exposes two more binary pickle by Tim Peters · 23 years ago
  30. c32d824 Mechanical fiddling for easier reading: every "if" test was enclosed in by Tim Peters · 23 years ago
  31. dbdb28e Add globals to list of names returned by get_names(). by Jeremy Hylton · 23 years ago
  32. 461922a Pickles have a number of storage formats for various sizes and kinds of by Tim Peters · 23 years ago
  33. c58440f No functional change -- just added whitespace in places so I could follow by Tim Peters · 23 years ago
  34. 17a781b * Remove exc_info() kludge -- it actually messed up the Jython output by Steve Purcell · 23 years ago
  35. 5d87d47 fixing 408085 - redirect from https becomes http by Moshe Zadka · 23 years ago
  36. f870c95 Add two arguments to Scope constructor, module scope and class name by Jeremy Hylton · 23 years ago
  37. 8b966dc Add preliminary module symbol table constructor by Jeremy Hylton · 23 years ago
  38. 0e8468c remove global decl about unused variable by Jeremy Hylton · 23 years ago
  39. 80e29bd Add support for future statements by Jeremy Hylton · 23 years ago
  40. 42a0830 Fix "import as" (has always skipping the as name) by Jeremy Hylton · 23 years ago
  41. a384f73 typo by Jeremy Hylton · 23 years ago
  42. 9cec8fb Make it clear that a bdb subclass must implement do_clear(). by Guido van Rossum · 23 years ago
  43. 7e01e28 Whitespace normalization. by Tim Peters · 23 years ago
  44. 6fd7120 Fix from the Madusa mailing list: by Tim Peters · 23 years ago
  45. cfc21fc Remove useless imports, as reported by PyChecker. by Tim Peters · 23 years ago
  46. 3664111 Get rid of useless string import, as reported by Neal Norwitz's PyChecker.py by Tim Peters · 23 years ago
  47. 76977bb Add an uninstall method to the ImportManager. by Greg Stein · 23 years ago
  48. eb26f95 Since Guido fiddled Cookie.py to work with doctest, it's a Good Thing to by Tim Peters · 23 years ago
  49. 58b6f5b Since this module already uses doctest-style examples, I figured I'd by Guido van Rossum · 23 years ago
  50. f95423e Remove lines for asynchat & asyncore, as they've now got their own test. by Tim Peters · 23 years ago
  51. dca060c After testing the test on Unix, several improvements: by Guido van Rossum · 23 years ago
  52. 6617252 Add test for asynchat. This also tests asyncore. by Guido van Rossum · 23 years ago
  53. e4a1b6d Make the docstring a raw string, for pydoc. by Guido van Rossum · 23 years ago
  54. b5d1392 Fix the fix (my error -- hasty pasty). by Tim Peters · 23 years ago
  55. a29b622 One-liner critical fix from Jim Fulton: Eric's string-method crusade by Tim Peters · 23 years ago
  56. 37f0263 Bug #412086, reported by Peter Wilson: The _curses module doesn't by Andrew M. Kuchling · 23 years ago
  57. 7880e5e Patch #413912 from Steve Majewski: Add .m to the list of extensions by Andrew M. Kuchling · 23 years ago
  58. dc80670 Corrected default value of the DocumentType.internalSubset attribute based by Fred Drake · 23 years ago
  59. 7d3bad6 Sf bug [ #412214 ] ZipFile constructor leaves files open. by Tim Peters · 23 years ago
  60. 33d2b84 CharacterData methods: Update self.length on changes instead of extended by Fred Drake · 23 years ago
  61. 87432f4 Add support for the CharacterData methods, CDATASection. by Fred Drake · 23 years ago
  62. c951bf9 SF bug [#410708] Condition.wait() and KeyboardInterrupt. by Tim Peters · 23 years ago
  63. cb67ea1 Initialize Attr.value with empty string in createAttribute*, as per DOM by Martin v. Löwis · 23 years ago
  64. f89d993 Back out the requirement to supply a version number by Andrew M. Kuchling · 23 years ago
  65. f7eb4fa Fixes a fatal bug when the module has computed alternatives containing %s. by Eric S. Raymond · 23 years ago
  66. a19a168 Whitespace normalization. by Tim Peters · 23 years ago
  67. 1417144 Based on info from Jens@digicool.com, add 'darwin1' to the list of by Guido van Rossum · 23 years ago
  68. 764dad5 Arghh. Fix typo. by Martin v. Löwis · 23 years ago
  69. c9494ac Use Guido's trick for always extracting the version number from a by Martin v. Löwis · 23 years ago
  70. f78a81b Fix some reloading problems (still more work needed). by Ka-Ping Yee · 23 years ago
  71. 3d9091e Itamar Shtull-Trauring <itamar@maxnm.com>: by Fred Drake · 23 years ago
  72. fc31f26 Update auto-detection for Konqueror to include KDE 2 -- the kfm command is by Fred Drake · 23 years ago
  73. 2108bc7 main(): Application of SF patch #405851, which allows this test to be by Barry Warsaw · 23 years ago
  74. 559f668 In Jython, `@' is not allowed in module names. Extend the TESTFN test by Barry Warsaw · 23 years ago
  75. 62d2488 Two minor changes for better Jython compatibility. Finn Bock says: by Barry Warsaw · 23 years ago
  76. 6870bba Make socket.getservbyname test optional on socket module having that by Barry Warsaw · 23 years ago
  77. 88b0884 Change rfc822_escape() to ensure there's a consistent amount of whitespace by Andrew M. Kuchling · 23 years ago
  78. 7519e7a setlocale(): In _locale-missing compatibility function, string by Barry Warsaw · 23 years ago
  79. dfdac1a Several changes for Jython portability. This closes SF patch by Barry Warsaw · 23 years ago
  80. 101651c flesh out __all__ by Jeremy Hylton · 23 years ago
  81. a9c6c8d Extend isclass() to work for extension classes (by looking for __bases__). by Ka-Ping Yee · 23 years ago
  82. e280c06 Browser compatibility fixes. by Ka-Ping Yee · 23 years ago
  83. 987ec90 Small formatting improvements. by Ka-Ping Yee · 23 years ago
  84. 3bda879 Show inherited methods, with hyperlinks to the base class they came from. by Ka-Ping Yee · 23 years ago
  85. 28c62bb Provide a StopTokenizing exception for conveniently exiting the loop. by Ka-Ping Yee · 23 years ago
  86. f170d7f Don't have trace() skip the top frame; return them all. by Ka-Ping Yee · 23 years ago
  87. 6526bf8 When creating an attribute node using createAttribute() or by Fred Drake · 23 years ago
  88. b0fefc5 Convert the weakref test suite to PyUNIT, and add tests that exercise weak by Fred Drake · 23 years ago
  89. 84a5934 When the regression test is run in verbose mode, make the PyUNIT-based by Fred Drake · 23 years ago
  90. 37f7b38 Fixes for various issues reported and discovered since Python 9: by Ka-Ping Yee · 23 years ago
  91. 015415e SRE 2.1b2: increase the chances that the sre test works on other machines... by Fredrik Lundh · 23 years ago
  92. 816e149 First cut at a high-level symbol table interface by Jeremy Hylton · 23 years ago
  93. 987f133 SRE 2.1b2: forgot to update one output file (sorry, Fred!) by Fredrik Lundh · 23 years ago
  94. 14b90a4 Strip \r as trailing whitespace as part of soft line endings. by Guido van Rossum · 23 years ago
  95. 3f69f21 Add a wrapper function for ssl() on Windows. Inspired by SF patch by Guido van Rossum · 23 years ago
  96. bfb9184 This is SF patch #405952, by Anthony Baxter: by Guido van Rossum · 23 years ago
  97. 17741be SRE 2.1b1: don't do unicode tests under 1.5.2, or on unicode strings/patterns. by Fredrik Lundh · 23 years ago
  98. b25e1ad sre 2.1b2 update: by Fredrik Lundh · 23 years ago
  99. b374dd3 Synchronize with 1.6 of PyXML: by Martin v. Löwis · 23 years ago
  100. ffb963c Use the get_contact*() accessors instead of get_maintainer*() by Andrew M. Kuchling · 23 years ago