Commit Graph

19413 Commits

Author SHA1 Message Date
Antoine Pitrou 92fae55bc9 Issue #18589: fix hyperlinking of type slots (tp_*) 2013-08-01 21:17:24 +02:00
Terry Jan Reedy 241f653b8a Remove repetition of string escapes note 1 at end of note 2. 2013-07-27 15:54:05 -04:00
R David Murray d5648ac382 #15130: remove repeat of abstract paragraph from socket howto body.
Patch by Tshepang Lekhonkhobe.
2013-07-25 13:33:35 -04:00
Vinay Sajip bcf55a758d Issue #18541: simplified LoggerAdapter example. 2013-07-24 17:47:52 +01:00
Ned Deily b7a285f528 Issue #18471: Fix typo in heapq documentation (reported by François Pinard). 2013-07-15 19:07:41 -07:00
Ned Deily c967a593c9 Issue #18452: fix several "occurrence" typos (reported by Févry Thibault). 2013-07-14 12:42:27 -07:00
R David Murray 4f0102f189 #18389: Clarify that relpath does not access the file system.
Initial patch by Madison May.
2013-07-12 18:21:41 -04:00
Serhiy Storchaka 6cda0adf3a Issue #18336. Fix a link to StreamReader's read() method. 2013-07-11 18:25:19 +03:00
Richard Oudkerk 4bc130c065 Issue #14206: Clarify docs for Queue.join_cancel_thread(). 2013-07-02 12:58:21 +01:00
Richard Oudkerk 4903253069 Issue #17273: Clarify that pool methods can only be used by parent process. 2013-07-02 12:31:50 +01:00
Terry Jan Reedy 44d8b11c3e Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
Patch by Tal Einat, Roget Serwy, and Todd Rovito.
2013-07-01 00:42:44 -04:00
Terry Jan Reedy 8d7500387d Issue #18237: Fix assertRaisesRegexp error caought by Jeff Tratner. 2013-06-29 13:15:36 -04:00
Terry Jan Reedy 35115e6aab Issue #18315: Improve fileinput docs by adding 'bufsize' where missing and
replacing redundant signature in input() docstring with one-line summary.
Original patch by Terrel Shumway.
2013-06-28 18:59:19 -04:00
Ned Deily 7dc9bd84df Issue #18164: Backport the more detailed embedding compile-and-link section
from the Python 3 documentation.
2013-06-24 14:21:43 -07:00
Richard Oudkerk 66e0a04d2e Fix typo. 2013-06-24 20:38:22 +01:00
Richard Oudkerk 2cc73e8e58 Clarify note and fix typo. 2013-06-24 18:11:21 +01:00
Richard Oudkerk acfbe22068 Issue #15818: Typo in docs. 2013-06-24 15:41:36 +01:00
Richard Oudkerk 56e968c50a Issue #18277: Document quirks of multiprocessing queue. 2013-06-24 14:45:24 +01:00
R David Murray 9575222b7f #18179: reflow paragraphs. 2013-06-23 16:10:37 -04:00
R David Murray 7f01d55333 #18179: document the local_hostname parameter.
Original patch by Berker Peksag.
2013-06-23 16:02:34 -04:00
R David Murray ff22984ff1 Tweak programming faq examples so that it (mostly) passes doctest.
Back port of 0113247f894b from 3.3.

The exceptions are the import related questions at the end, which
need to be rewritten anyway, and a math example that doesn't
exist in the 3.3+ docs that I didn't bother trying to fix.
2013-06-19 17:00:43 -04:00
Ezio Melotti c49805e967 #18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev. 2013-06-09 01:04:21 +03:00
Serhiy Storchaka 3fcf2d3174 Issue #18085: Fix PyObject_CallMethodObjArgs()'s entry in refcounts.dat. 2013-05-28 22:46:51 +03:00
Raymond Hettinger 7393c69d6d Issue #18015: Fix unpickling of 2.7.3 and 2.7.4 namedtuples. 2013-05-27 10:58:55 -07:00
Raymond Hettinger 668b0058a3 Issue #18031: %-formatting isn't dead yet and might pull through. 2013-05-23 00:12:14 -07:00
Serhiy Storchaka 54f70923a3 Issue #17844: Refactor a documentation of Python specific encodings.
Add links to encoders and decoders for binary-to-binary codecs.
2013-05-22 15:28:30 +03:00
R David Murray e6f2e6cc84 #17973: fix technical inaccuracy in faq entry (it now passes doctest). 2013-05-21 11:46:18 -04:00
Ned Deily d7cb506789 Issue #18026: fix ctypes doc typo 2013-05-20 14:27:06 -07:00
R David Murray ed983ab8a9 #17973: Add FAQ entry for ([],)[0] += [1] both extending and raising.
This has come up often enough now on the tracker that it deserves a FAQ entry.
2013-05-20 10:34:58 -04:00
Ezio Melotti 5302ba80e7 #17949: fix merge glitch in itemgetter signature. Patch by Martijn Pieters. 2013-05-10 19:57:04 +03:00
Andrew Kuchling 67f84a78f0 #14878: add cross-reference to the yield statement.
(Backported from 3.x by Jan Duzinkiewicz.)
2013-05-09 20:55:22 -04:00
Ezio Melotti 5f4ba6b4e0 #16523: improve attrgetter/itemgetter/methodcaller documentation. 2013-05-08 10:53:11 +03:00
Ezio Melotti 59391207c6 #17714: document that the base64 codec adds a trailing newline. 2013-05-07 11:14:27 +03:00
Raymond Hettinger a74e5c809b Issue 17920: Fix-up terminology in the set documentation 2013-05-06 18:21:10 -07:00
Raymond Hettinger 277c27c8fc Issue 17862: Improve the signature of itertools grouper() recipe.
Putting *n* after the *iterable* matches the signature of other itertools
and recipes.  Also, it reads better.

Suggested by Ezio Melotti.
2013-05-05 19:45:42 -07:00
Antoine Pitrou a09657e94e Elaborate on bytes-like objects. 2013-05-04 20:18:34 +02:00
Raymond Hettinger 0801d73b1b Issue #15535: Fix regression in pickling of named tuples. 2013-05-03 00:59:20 -07:00
Senthil Kumaran a1fb67175a # 1722 - Add a note on urllib helper functions like splittype, splithost etc. 2013-05-02 05:50:21 -07:00
Ezio Melotti 71c1cff83f #16518: fix links in glossary entry. 2013-05-01 14:13:05 +03:00
Ezio Melotti 1c0d8a7fd7 #16518: add "bytes-like object" to the glossary. 2013-04-30 23:33:31 +03:00
Ezio Melotti 183dc46a88 #17866: mention that in Python 3, assertItemsEqual is named assertCountEqual. 2013-04-29 12:26:01 +03:00
R David Murray fc45ce870f #7152: Remove incorrectly added reference to DataHandler. 2013-04-28 17:04:53 -04:00
R David Murray 6596041464 Reflow paragraph. 2013-04-28 11:20:46 -04:00
R David Murray 806c1c939d #7152: Clarify that ProxyHandler is added only if proxy settings are detected.
Behavior confirmation and initial patch by Jessica McKellar.
2013-04-28 11:16:21 -04:00
Ezio Melotti 9d2d64ff21 #17729: remove the Advocacy HOWTO from the index. 2013-04-23 09:56:30 +03:00
Ezio Melotti d04c5d66b0 #17729: remove the outdated Advocacy HOWTO, as suggested by the author. 2013-04-23 09:24:51 +03:00
R David Murray 240a2fd46f #15575: Clarify tutorial description of when modules are executed. 2013-04-21 17:14:40 -04:00
Ned Deily 0729500b01 Issue #17670: Provide an example of expandtabs() usage. 2013-04-21 13:04:10 -07:00
R David Murray e5af944bdf #17409: Document RLIM_INFINITY and use it to clarify the setrlimit docs. 2013-04-20 13:37:50 -04:00
Ezio Melotti c973057bbe #17740: fix links to the socket function. Initial patch by Zachary Ware. 2013-04-17 04:10:26 +03:00