- 4462306 issue 11372: use range instead of xrange by Fred Drake · 14 years ago
- c613b6b Remove outdated pointer to optparse (fixes #11360). by Éric Araujo · 14 years ago
- f06576d Recommend inspecting the errno attribute of socket.error objects, by Antoine Pitrou · 14 years ago
- 061cfb5 Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. by Antoine Pitrou · 14 years ago
- d6d17c5 No need to put this at top by Antoine Pitrou · 14 years ago
- fcf81fd Issue #11140: Lock.release() now raises a RuntimeError when attempting by Antoine Pitrou · 14 years ago
- 396ff06 Fix issue 8594: adds a source_address parameter to ftplib module. by Giampaolo Rodolà · 14 years ago
- d0f89f3 make this a link #11345 by Benjamin Peterson · 14 years ago
- 94ca211 Make Py3.x style "import builtins" by Raymond Hettinger · 14 years ago
- 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 14 years ago
- 8250e23 Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. by Antoine Pitrou · 14 years ago
- f65132d Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix by Antoine Pitrou · 14 years ago
- 103a6d6 Issue 11177: asyncore's create_socket() arguments can now be omitted. by Giampaolo Rodolà · 14 years ago
- 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 14 years ago
- 18e8bcb Issue 10784: adds os.getpriority() and os.setpriority() functions. by Giampaolo Rodolà · 14 years ago
- 1d52146 Issue #11303: Added shortcuts for utf8 and latin1 encodings. by Alexander Belopolsky · 14 years ago
- a29a9dd Documented QueueListener change. by Vinay Sajip · 14 years ago
- 61a0bf5 (issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi) by Giampaolo Rodolà · 14 years ago
- c9c2c8b Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall) by Giampaolo Rodolà · 14 years ago
- cbbaa96 Issue #10516: adding list.clear() and list.copy() methods by Eli Bendersky · 14 years ago
- 6c3787c Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spadolini (#10868). by Éric Araujo · 14 years ago
- 5390d00 rewrite by Benjamin Peterson · 14 years ago
- 634ef9c this seems to be pointlessly nested by Benjamin Peterson · 14 years ago
- 08f5cf5 Indent "versionadded" properly. by Georg Brandl · 14 years ago
- daa5799 Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API by Brett Cannon · 14 years ago
- e2dfefb Issue #10924: Adding salt and Modular Crypt Format to crypt library. by Sean Reifscheider · 14 years ago
- 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 14 years ago
- d8de541 Issue 11263: Fix link to source code. by Raymond Hettinger · 14 years ago
- 8f0ae9a Doc fixups. by Raymond Hettinger · 14 years ago
- 08e278a Remove editing slip. by Georg Brandl · 14 years ago
- dbb9585 Apply logging SocketHandler doc update by Vinay. by Georg Brandl · 14 years ago
- 8b24aac Fix argument name typo in compileall docs. by R. David Murray · 15 years ago
- 2933312 Fixed issue11082 - Reject str for POST data with a TypeError. Document the need to explicitly encode to bytes when using urlencode. by Senthil Kumaran · 15 years ago
- 3029aff Add missing source links. by Raymond Hettinger · 15 years ago
- 631507d Issue #11141: Fix the shelve documentation to use a list, not a range object. by Antoine Pitrou · 15 years ago
- fdded56 Clarify that IMAP4() implicitly calls open(), and that logout() implicitly calls shutdown(). by Antoine Pitrou · 15 years ago
- ca583b6 #8691: document that right alignment is default for numbers. by Georg Brandl · 15 years ago
- a5770aa #11138: fix order of fill and align specifiers. by Georg Brandl · 15 years ago
- 833ad0e Fix awkwardly rendered sentence. by Raymond Hettinger · 15 years ago
- e09d2f1 issue7678 - Properly document how to replace a shell pipeline so that SIGPIPE by Gregory P. Smith · 15 years ago
- eefb97c Mention that seek and tell over a TextIOWrapper can be very slow. by Antoine Pitrou · 15 years ago
- e951e91 Punctuation typos. by Georg Brandl · 15 years ago
- 0446b21 Punctuation typo. by Raymond Hettinger · 15 years ago
- 7b5011b Wording fix. by Eric Smith · 15 years ago
- bd0c897 #11083 typo: RuntimeException -> RuntimeError by Brian Curtin · 15 years ago
- b7deff1 #9124: mailbox now accepts binary input and uses binary internally by R. David Murray · 15 years ago
- 519c308 Typos. by Raymond Hettinger · 15 years ago
- e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 15 years ago
- 66c908e #11027: documented how to override SECTCRE by Łukasz Langa · 15 years ago
- 469271d More source links by Raymond Hettinger · 15 years ago
- 1a90f9c Issue 11008: docs updated to show versionadded for dictConfig. by Vinay Sajip · 15 years ago
- a199368 More source links. by Raymond Hettinger · 15 years ago
- a63a312 Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a by Raymond Hettinger · 15 years ago
- cfad97b Fix the description of PIPE_BUF by Antoine Pitrou · 15 years ago
- da7be3e Fix the doc for PIPE_BUF by Antoine Pitrou · 15 years ago
- feac624 Issue #11000 ast.parse parses source, not just expressions. by Terry Reedy · 15 years ago
- 2a6ac15 Update last tix code example for 3.x, as already done for previous examples. by Terry Reedy · 15 years ago
- 009a6bd Fix label syntax. by Georg Brandl · 15 years ago
- 8e490de Typo fix. by Georg Brandl · 15 years ago
- 7b1aae9 #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc. by R. David Murray · 15 years ago
- ead4975 Missing source links. by Raymond Hettinger · 15 years ago
- 9a236b0 Add section for urllib.parse. by Raymond Hettinger · 15 years ago
- 971f483 minor clean-up. by Raymond Hettinger · 15 years ago
- 98b140c Add entry for reprlib. by Raymond Hettinger · 15 years ago
- 0929b1f Add entry for shutil's archiving operations. by Raymond Hettinger · 15 years ago
- 00d650b Fix JSON docs about loads() accepting only str objects, not bytes. by Antoine Pitrou · 15 years ago
- a275c98 Add more examples by Raymond Hettinger · 15 years ago
- ecdd63f #10944: add c_bool to types table. by Georg Brandl · 15 years ago
- 41a99bc Issue #10934: Fixed and expanded Internaldate2tuple() and by Alexander Belopolsky · 15 years ago
- 375aec2 Fix a few doc errors, mostly undefined keywords. by Georg Brandl · 15 years ago
- c58be2d urllib doc: add versionchanged sections for parse_qs() and parse_qsl() by Victor Stinner · 15 years ago
- ac71c54 Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() by Victor Stinner · 15 years ago
- 489f392 Issue #10902: Fix reference to run* methods by Eli Bendersky · 15 years ago
- cc75a86 Issue #9268: Documented -m pickletools usage. by Alexander Belopolsky · 15 years ago
- 37a80dc Fix the example output of count(). by Georg Brandl · 15 years ago
- 287d1fd Issue #10225: Fixed the simple mistakes in doctests. by Alexander Belopolsky · 15 years ago
- 5cee47f Add entry for Barrier objects. by Raymond Hettinger · 15 years ago
- 5fc850b Improved footnote for the %Y directive slightly. by Alexander Belopolsky · 15 years ago
- 085556a Improved description of %Y directive. by Alexander Belopolsky · 15 years ago
- 9971e00 Issue #2568: Removed bogus rationale for supporting tm_sec=61. by Alexander Belopolsky · 15 years ago
- 05ce079 Missed two source links by Raymond Hettinger · 15 years ago
- 4f707fd Separate source link from main text. by Raymond Hettinger · 15 years ago
- 04da1e0 Fixed a footnote reference by Alexander Belopolsky · 15 years ago
- 1048094 Move source links to consistent location and remove wordy, big yellow boxes. by Raymond Hettinger · 15 years ago
- 04536b0 #10871: "file" does not exist anymore in Python 3. Also adapt the reprs of opened file objects. by Georg Brandl · 15 years ago
- c900708 Wrap some long examples and signatures. by Georg Brandl · 15 years ago
- 619e7ba #10869: do not visit root node twice in ast.increment_lineno(). by Georg Brandl · 15 years ago
- 4ad934f zlib only works with bytes objects. by Georg Brandl · 15 years ago
- 2997837 Fixed documentation to reflect recent changes for years < 1900. by Alexander Belopolsky · 15 years ago
- 83b1ab0 Issue 9717: Segregate and improve the documentation of "in-place" operators by Raymond Hettinger · 15 years ago
- d97b7b5 #10855: document close() semantics of wave objects. by Georg Brandl · 15 years ago
- 5254e97 Issue 10533: Need example of using __missing__. by Raymond Hettinger · 15 years ago
- 0ab10e4 Issue #10813: Small improvement to decimal money format recipe. by Raymond Hettinger · 15 years ago
- 9253214 #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s. by R. David Murray · 15 years ago
- 7088abd Revert r87821 which moved the source link to the wrong section (from the module intro covering the module to a section on thread imports). by Raymond Hettinger · 15 years ago
- 1122fa2 Revert r87823 which moved the source link to the wrong section. by Raymond Hettinger · 15 years ago
- 2f2a9f7 Fix indent. by Georg Brandl · 15 years ago
- fc90213 Combine the two seealso sections. by Raymond Hettinger · 15 years ago
- c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 15 years ago
- 696efdd Mention multiprocessing.Queue in the queue docs by Antoine Pitrou · 15 years ago