1. ab9ba27 Whitespace normalization. by Tim Peters · 23 years ago
  2. c7ca3ff Skip test_mhlib on Windows -- too many Unix assumptions. by Tim Peters · 23 years ago
  3. e4deb95 Fix two bugs detected by PyChecker: there's no need for redundant by Guido van Rossum · 23 years ago
  4. 6386a4c Import UnknownFileError by Andrew M. Kuchling · 23 years ago
  5. 106ffdb Import the errno module by Andrew M. Kuchling · 23 years ago
  6. affadeb Use correct variable name by Andrew M. Kuchling · 23 years ago
  7. eaa77e2 Added tests for operator.floordiv() and operator.truediv(). by Fred Drake · 23 years ago
  8. 3720261 Restore the test for 'object' that I removed when object was by Guido van Rossum · 23 years ago
  9. a995c91 Use type(x).__name__ to get the name of the type instead of parsing by Guido van Rossum · 23 years ago
  10. 0263c80 Unittests for mhlib, by Nick Mathewson. by Guido van Rossum · 23 years ago
  11. 55c12d4 SF patch #403640: incomplete proxy handling in URLLIB by Tim Peters · 23 years ago
  12. f0713d3 SF Patch #420725 by Walter Doerwald: by Guido van Rossum · 23 years ago
  13. c8718c1 Patch #403514: precompute _subst_format_str to avoid a call to by Martin v. Löwis · 23 years ago
  14. 3c7a25a Applied SF patch #438424 by Josh Cogliati: by Guido van Rossum · 23 years ago
  15. dbdcb0f Regenerate for glibc 2.2.3. by Martin v. Löwis · 23 years ago
  16. 4414933 Regenerate for Solaris 8. by Martin v. Löwis · 23 years ago
  17. 8cc965c Patch #448474: Add support for tell() and seek() to gzip.GzipFile. by Martin v. Löwis · 23 years ago
  18. 64deef2 A test suite for binary operators, disguised as a rational number class. by Guido van Rossum · 23 years ago
  19. 034cbf1 Typo fix (spelling mistake in error message). by Greg Ward · 23 years ago
  20. ff88556 Patch #449083: Use builtins to initalize the module. by Martin v. Löwis · 23 years ago
  21. e00dde2 Merged in bugfix from PyUnit CVS for problem reported by Gary Todd. by Steve Purcell · 23 years ago
  22. a38d260 Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL. by Tim Peters · 23 years ago
  23. 96204f5 Add new tokens // and //=, in support of PEP 238. by Guido van Rossum · 23 years ago
  24. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  25. 074c9d2 beginning of work on the conf. handling smarts by Steven M. Gava · 23 years ago
  26. 54e99e8 Fix SF bug [ #447370 ] typo in urllib2.py by Jeremy Hylton · 23 years ago
  27. 16fd338 Apply two small changes to the Windows code, according to SF bug by Guido van Rossum · 23 years ago
  28. 56b5fdd Remove make_re() function; this is no longer needed since _sre and pcre by Fred Drake · 23 years ago
  29. c9fadf9 Add a test that xml.sax.saxutils.XMLGenerator does the right thing by Fred Drake · 23 years ago
  30. dad91dd Make sure XMLGenerator uses quoteattr() instead of escape() to quote by Fred Drake · 23 years ago
  31. 288cd2c Fix the test so it uses IterableUserDict for the "for x in dict" test. by Guido van Rossum · 23 years ago
  32. 2050b65 Remove the __iter__ method from the UserDict class -- it can silently by Guido van Rossum · 23 years ago
  33. c5943b1 Add the NannyNag exception class and the process_tokens() function to by Guido van Rossum · 23 years ago
  34. 15d86c6 Remove the test for the 'object' type -- it can no longer be by Guido van Rossum · 23 years ago
  35. cd73836 silence warnings about import * by Jeremy Hylton · 23 years ago
  36. 230e578 more fleshing out, this time primarily the 'general' page by Steven M. Gava · 23 years ago
  37. e02f904 fix for Bug ID 448100 - "test code using NL instead of CRNL" by Piers Lauder · 23 years ago
  38. f213ccb began font / indentation page by Steven M. Gava · 23 years ago
  39. cbce202 Hack to workaround bug #445984: attempt to import _socket before by Greg Ward · 23 years ago
  40. 60fc707 further work on keybinding page by Steven M. Gava · 23 years ago
  41. c173137 Derived from SF patch #446899 Permit import of .pyw under Windows, from by Tim Peters · 23 years ago
  42. eeee4ec Refactor so that it is easier to work with alternate MIME types databases, by Fred Drake · 23 years ago
  43. e861365 Don't use any characters C doesn't guarantee are safe for text-mode files. by Tim Peters · 23 years ago
  44. 84bb9d8 Fix stupid bug: when migrating these tests from the Zope repository, the by Fred Drake · 23 years ago
  45. 1d4601d Change some comments into docstrings. by Fred Drake · 23 years ago
  46. fffd722 The test opened the binary test data files in text mode! Fixed. by Jack Jansen · 23 years ago
  47. 952d0a5 further work on config dialog, particularly highligthing config by Steven M. Gava · 23 years ago
  48. 4fd06e0 Make sure that WeakValueDictionary[] raises KeyError instead of TypeError by Fred Drake · 23 years ago
  49. c916cdc Miscellaneous minor cleanups. by Fred Drake · 23 years ago
  50. d342c62 This test failed under python -O. by Tim Peters · 23 years ago
  51. 394a47b Unit test for improved package import semantics. by Guido van Rossum · 23 years ago
  52. 02d893c Patch #444359: Remove unused imports. by Martin v. Löwis · 23 years ago
  53. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  54. 722d78f s/endswith/startswith/ by Tim Peters · 23 years ago
  55. 66e1a25 Rewritten version of Finn Bock's SF patch #446907 (Allow jython to by Tim Peters · 23 years ago
  56. b363c1f Turn an octal constant into a hex constant. by Guido van Rossum · 23 years ago
  57. b9d07b5 A more lightweight (and read only) way to view help text by Steven M. Gava · 23 years ago
  58. d721c48 indentation style changed to match existing source by Steven M. Gava · 23 years ago
  59. 885c0bb improve viewfile handling indentation style changed to match existing source by Steven M. Gava · 23 years ago
  60. 6cd441d Add dead imports of modules that are "magically" imported. by Martin v. Löwis · 23 years ago
  61. bbe500e Remove obsolete entries from regen scripts. by Martin v. Löwis · 23 years ago
  62. 2ad2569 Initialize msg to avoid unbound locals. by Martin v. Löwis · 23 years ago
  63. 7d9ed72 activate new about dialog for testing by Steven M. Gava · 23 years ago
  64. 646c65c removed redundant separate idlfefork ver by Steven M. Gava · 23 years ago
  65. 44d3d1a some new dialogs and support files for new about and configuration implementations by Steven M. Gava · 23 years ago
  66. 3fc9582 Amazing. This would open the sound file in text mode. Fixed. SF bug #446219. by Guido van Rossum · 23 years ago
  67. 108efac test_codeup should not have had an expected-output file; removing it. by Tim Peters · 23 years ago
  68. b7a7731 Add tests for getattr() and hasattr() with non-string args by Jeremy Hylton · 23 years ago
  69. c974bf4 Get the whitespace right! by Fred Drake · 23 years ago
  70. 5121e7d Fix for SF bug [ #443866 ] Evaluating func_code causing core dump by Jeremy Hylton · 23 years ago
  71. e3c37d6 Ugly fix used when pyexpat is not available. by Jeremy Hylton · 23 years ago
  72. 3c19ec4 Fix when pyexpat not built by Jeremy Hylton · 23 years ago
  73. 3bd071e Patch #442866: Tests for codeop.py. by Martin v. Löwis · 23 years ago
  74. 27c430e Patch #445538: add completion for pstats.py sort cmd. by Martin v. Löwis · 23 years ago
  75. 8d8e7a3 Do convert_path() on script paths (now PyXML builds out of the box under MacOS.) by Just van Rossum · 23 years ago
  76. 70195da Patch #443337: Fix incompatibilities in imputil's behavior. by Martin v. Löwis · 23 years ago
  77. d3011cd Remove usage of strop module. by Martin v. Löwis · 23 years ago
  78. 66b6e19 Patch #416224: add readline completion to cmd.Cmd. by Martin v. Löwis · 23 years ago
  79. 33dc0a1 One more crack at join(): stop trying to pretend this isn't a mass of by Tim Peters · 23 years ago
  80. 4223f89 Change ntpath.join() so that join("d:/", "/whatever") returns by Tim Peters · 23 years ago
  81. 7321ec4 SF bug #444510: int() should guarantee truncation. by Tim Peters · 23 years ago
  82. 7cf92fa Add backwards compatibility. by Marc-André Lemburg · 23 years ago
  83. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
  84. 4eb5940 Untabify IPv6 changes. by Martin v. Löwis · 23 years ago
  85. 2e441f7 Fix a denial-of-service attack, SF bug #443120. by Guido van Rossum · 23 years ago
  86. 7cf7e7e Undo revision 1.7: always mangle a #! line containing "python" to point by Greg Ward · 23 years ago
  87. e628a2f Don't "import *" from stat at all -- just import what's needed, and by Greg Ward · 23 years ago
  88. 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
  89. 1669669 Remove unused imports from previous checkin. by Martin v. Löwis · 23 years ago
  90. a43c2f8 Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. by Martin v. Löwis · 23 years ago
  91. 5e9eb98 Oh, ok, so plainpager is probably marginally better. by Fred Drake · 23 years ago
  92. 0a66fcb If $TERM is "dumb" or "emacs", just dump the text instead of trying to run by Fred Drake · 23 years ago
  93. f973c6d Make this test work under Windows as well. by Fred Drake · 23 years ago
  94. 99e87f9 Test for the "glob" module, contributed by Nick Mathewson. by Fred Drake · 23 years ago
  95. fa712ca Whitespace normalization. by Tim Peters · 23 years ago
  96. 4c81d60 Tests for the "commands" module, contributed by Nick Mathewson. by Fred Drake · 23 years ago
  97. 1586136 New tests by Nick Mathewson, for the fpformat module. by Fred Drake · 23 years ago
  98. ba247a6 updated about info for 0.8.1 release by Steven M. Gava · 23 years ago
  99. 88ff736 new material for 0.8.1 release by Steven M. Gava · 23 years ago
  100. 1377594 On WIndows, skip the part of test_dircache that can't work on Windows. by Tim Peters · 23 years ago