- 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 15 years ago
- 31e3b77 This file was obsolted by a number of adjustments to the os.symlink tests by Brian Curtin · 15 years ago
- 9624559 Minor doc update for #9333. Took out the phrasing about os.symlink not by Brian Curtin · 15 years ago
- 164540f Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax by Senthil Kumaran · 15 years ago
- 3b4499c Fix #9333. The symlink function is always available now, raising OSError by Brian Curtin · 15 years ago
- baab9d0 Issue #10783: Fix test_sys, pack('c', ' ') => pack('c', b' ') by Victor Stinner · 15 years ago
- da9ec99 Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 by Victor Stinner · 15 years ago
- e398da9 #10609: fix non-working dbm example. by Georg Brandl · 15 years ago
- e9e8c9b #10739: document that on Windows, socket.makefile() does not make a file that has a true file descriptor usable where such a thing is expected. by Georg Brandl · 15 years ago
- 9d9848e Rewrap. by Georg Brandl · 15 years ago
- c166076 Remove history; adapt a bit more to reST, since this will once be part of the dev guide. by Georg Brandl · 15 years ago
- 2c39c77 #10781: clarify that *encoding* is not a parameter for Node objects in general. by Georg Brandl · 15 years ago
- c28036b #10742: document readonly attribute of memoryviews. by Georg Brandl · 15 years ago
- b12fd63 #10767: update README in crashers; not all may have a bug entry and/or be fixed. by Georg Brandl · 15 years ago
- b1dbd10 Issue #9738: Fix typo, ASCII-encoding string => ASCII-encoded string by Victor Stinner · 15 years ago
- 68eb464 Add news entry and clarify another. by Georg Brandl · 15 years ago
- 780d5e0 #10768: fix ScrolledText widget construction, and make the example work from the interactive shell. by Georg Brandl · 15 years ago
- 90b2067 #10777: fix iteration over dict keys while mutating the dict. by Georg Brandl · 15 years ago
- ff52f76 #10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make altinstall; create symlinks for make install. by Georg Brandl · 15 years ago
- 1564192 Fix advice: call PyType_Ready to fill in ob_type of custom types. by Georg Brandl · 15 years ago
- fcf3a0c Remove confusing paragraph -- this is relevant only to advanced users anyway and does not belong into the tutorial. by Georg Brandl · 15 years ago
- 2a39b71 Replace sys.maxint mention by sys.maxsize. by Georg Brandl · 15 years ago
- b9cb21e Issue #10780: Remove commas at the end of the argument list by Victor Stinner · 15 years ago
- 301e956 Issue #8966: Remove the documentation of ctypes.set_conversion_mode() by Victor Stinner · 15 years ago
- 92be939 Issue #10780: PyErr_SetFromWindowsErrWithFilename() and by Victor Stinner · 15 years ago
- 83098a4 Issue #10778: decoding_fgets() decodes the filename from the filesystem by Victor Stinner · 15 years ago
- cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 15 years ago
- 8e286c4 #7056: runtest and runtest_inner don't use testdir, so drop it from their sigs by R. David Murray · 15 years ago
- 67981ec Issue #10626: test_logging now preserves logger disabled states. by Vinay Sajip · 15 years ago
- 7b60f4e Issue #10626: test_logging now preserves logger disabled states. by Vinay Sajip · 15 years ago
- 60b4df1 Issue #10774: test_logging now removes temp files created during tests. by Vinay Sajip · 15 years ago
- ad4ccfd Skip test that does not raise an error on Windows. by R. David Murray · 15 years ago
- 0d71116 Issue #9738: Ooops, fix typos in my previous commit (r87506) by Victor Stinner · 15 years ago
- 00676d1 Issue #9738: Document encodings of AST, compiler, parser and PyRun functions by Victor Stinner · 15 years ago
- dc2081f Issue #9738: document encodings of unicode functions by Victor Stinner · 15 years ago
- 555a24f Issue #9738: Document encodings of error and warning functions by Victor Stinner · 15 years ago
- ab9d8d6 Escape file path before searching for it in output via regex by R. David Murray · 15 years ago
- 7d10129 Added logging documentation cross-references. by Vinay Sajip · 15 years ago
- b4ca59b #5258/#10642: print fn, line, traceback and continue when .pth file is broken by R. David Murray · 15 years ago
- e6f1e43 Improved logging cookbook for logging with multiprocessing. by Vinay Sajip · 15 years ago
- 0d4bcf4 Fix typo (#10770) by Éric Araujo · 15 years ago
- 7a1c05c revert 87478 by Terry Reedy · 15 years ago
- 2908765 Remove unexistent parameter (#3216) by Éric Araujo · 15 years ago
- c9562f3 Fix typo spotted by Rodrigo Bernardo Pimentel (#9891) by Éric Araujo · 15 years ago
- 667d4b5 Issue #10763: subprocess.communicate() closes stdout and stderr if both are by Victor Stinner · 15 years ago
- 291151b Assign closed handles to None to make errors more obvious if they are used. by Brian Quinlan · 15 years ago
- a3015a6 Better reporting of test failures on Windows. by Brian Quinlan · 15 years ago
- dfd7eb0 #1693546: don't add quotes around RFC 2231 encoded values. by R. David Murray · 15 years ago
- ddf5370 Match current tracker name, though I do not know if still active. by Terry Reedy · 15 years ago
- 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 15 years ago
- 1397ce1 Logging documentation updates. by Vinay Sajip · 15 years ago
- efbcb1b Keep helper functions private. by Raymond Hettinger · 15 years ago
- 9d668da Put diff output in useful order (when the elements were first seen). by Raymond Hettinger · 15 years ago
- f954217 Add direct tests for the util functions. by Raymond Hettinger · 15 years ago
- 1e7efdf Add news entry for 87471. by Raymond Hettinger · 15 years ago
- 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 15 years ago
- fca8bee Added an XXX note to describe timedelta/timedelta feature. by Alexander Belopolsky · 15 years ago
- 1e991f2 Fix some mistakes- Issue3243 (r87399) Correcting the operator precendence by Senthil Kumaran · 15 years ago
- c44befb Fix docstring. by Raymond Hettinger · 15 years ago
- 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 15 years ago
- 8396124 Add test for r87454. by Raymond Hettinger · 15 years ago
- b2eacd9 Issue #9063: Corrected the tzinfo example. by Alexander Belopolsky · 15 years ago
- bc78e37 update comment by Benjamin Peterson · 15 years ago
- 1696f82 Fix syntax typo by Éric Araujo · 15 years ago
- d149c6c Issue 10730: mimetypes module - add .svgz to mimetypes.suffix_map and .svg to types_map. by Terry Reedy · 15 years ago
- 31e8720 kill some function imports by Benjamin Peterson · 15 years ago
- a91dd1e use native tenary condition by Benjamin Peterson · 15 years ago
- 5793e6f fix docstring by Benjamin Peterson · 15 years ago
- d65a901 Fix buglet. If the input was an iterator, the fallback would occur after by Raymond Hettinger · 15 years ago
- 4a62e89 #1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tz by R. David Murray · 15 years ago
- 25b8cca #4496: remove misleading comment and note that self.handlers is obsolete. by R. David Murray · 15 years ago
- a63c240 Fix typo in superclass method name by Éric Araujo · 15 years ago
- 413d7b4 Nits: use a real boolean, make one docstring more similar to the other ones by Éric Araujo · 15 years ago
- d699255 Fix small inaccuracy: there is no index function by Éric Araujo · 15 years ago
- 0d26798 Issue #10587: Document the meaning of str methods. by Alexander Belopolsky · 15 years ago
- 86f65d5 Issue #10254: Fixed a crash and a regression introduced by the implementation of PRI 29. by Alexander Belopolsky · 15 years ago
- 70df8f8 Fix ResourceWarning in test_normalization by Antoine Pitrou · 15 years ago
- eaedfcb Another trivial typo correction in whatsnew by Michael Foord · 15 years ago
- 689b68a Logging documentation updates. by Vinay Sajip · 15 years ago
- 5e9b14c Minor typo corrections in whatsnew by Michael Foord · 15 years ago
- f35a34c Add todo by Raymond Hettinger · 15 years ago
- 14affb8 fix a compiler warning about err_msg potentially being used uninitialized. by Gregory P. Smith · 15 years ago
- b9cc00c Removed unneeded #include by Alexander Belopolsky · 15 years ago
- 1a7a2e0 Both PEP 3131 and the current implementation use NFKC normalization by Alexander Belopolsky · 15 years ago
- 8d855d8 #4871: check that zipfile password is bytes, and give useful error message. by R. David Murray · 15 years ago
- 7f8f418 Issue #10750: The `raw` attribute of buffered IO objects is now read-only. by Antoine Pitrou · 15 years ago
- cfee0e8 Document the alternate format for :ref:. by Raymond Hettinger · 15 years ago
- 6778fa9 Reference the release schedule by Raymond Hettinger · 15 years ago
- 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 15 years ago
- f259076 Suggest sys.maxsize as a reliable way to know whether the interpreter is 64-bit. by Antoine Pitrou · 15 years ago
- e0436bc Make test_compileall more robust by using -S to keep sys.path minimized. by R. David Murray · 15 years ago
- 73a559d Fix the change made for issue 1243654. by R. David Murray · 15 years ago
- 9281202 Revert incorrect patch made at the wrong time. by R. David Murray · 15 years ago
- bf90044 Make test_compileall more robust by using -S to keep sys.path minimized. by R. David Murray · 15 years ago
- 01094e1 Logging documentation updates. by Vinay Sajip · 15 years ago
- c63619b Logging documentation reorganised. by Vinay Sajip · 15 years ago
- 7ca6d90 Tag 3.2 beta 2. by Georg Brandl · 15 years ago
- 09a7df8 #3243 follow-up: remove debugging print and fix docs; data is a bytes object. by Georg Brandl · 15 years ago
- 7bc0d87 Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji Li and Chris AtLee. by Senthil Kumaran · 15 years ago
- 8a60e94 Bump to 3.2b2. by Georg Brandl · 15 years ago