Commit Graph

12524 Commits

Author SHA1 Message Date
R David Murray bcd9971b05 #13934: document sqlite version strings. 2013-01-10 20:22:57 -05:00
Ned Deily ec8f8f7959 Issue #15782: Prevent compile errors of OS X Carbon modules _Fm, _Qd, and
_Qdoffs when compiling with an SDK of 10.7 or later.  The OS X APIs they
wrap have long been deprecated and have now been removed with 10.7.
These modules were already empty for 64-bit builds and have been removed
in Python 3.  (Original patch by Ronald Oussoren.)
2013-01-09 22:04:35 -08:00
Vinay Sajip 3a5fc4bcb8 Issue #16884: Updated docs to use 'note' directives. 2013-01-08 11:18:42 +00:00
R David Murray b847c7fcfe #16877: Add mention that shell-style path expansions are not automatic. 2013-01-06 16:14:57 -05:00
Ezio Melotti 9ae4711581 #16862: remove outdated statements about Stackless. 2013-01-05 07:37:47 +02:00
Ezio Melotti 7be3e18901 Cleanup a few minor things. 2013-01-05 07:36:54 +02:00
Ezio Melotti 58abc5bcd7 #13094: add Programming FAQ entry about the behavior of closures. 2013-01-05 00:49:48 +02:00
Chris Jerdonek 717e50e43a Issue #16747: Reflow iterable glossary entry to match 3.x change e19ed347523e. 2013-01-04 04:41:34 -08:00
Benjamin Peterson 830b4a8570 drop email (closes #16857) 2013-01-03 20:34:19 -08:00
Giampaolo Rodola' 049a378cd7 issue 10527: fix missing import 2013-01-03 02:53:28 +01:00
Eli Bendersky f29abd3254 Fix method name in documentation (__setstate__ --> __getstate__) 2013-01-02 06:02:23 -08:00
Benjamin Peterson 856cb0fc34 update another year 2012-12-31 21:44:00 -06:00
Benjamin Peterson 1f7df8f207 merge heads 2012-12-31 21:40:42 -06:00
Benjamin Peterson b25d611f8d bring Python into 2013 2012-12-31 21:37:21 -06:00
Raymond Hettinger c195b4e88c Make the from_iterable() recipe more usable.
The code isn't exactly equivalent because a classmethod would
only make sense inside a chain class, and it would need "cls"
as a first argument, and it would need to return an instance
of "chain" rather than a generator.

The updated example drops the @classmethod decorator so that
it can be used standalone:  list(from_iterable(['abc', 'def']))
This should be communicate what from_iterable does.
2012-12-28 00:03:30 -08:00
Ezio Melotti 82ee30384c #16796: fix typo. Patch by Michael Schurter. 2012-12-28 01:59:24 +02:00
Jesus Cea 4947049b40 Closes #16789: :meth:`quit` links to constants instead of own module 2012-12-26 16:46:04 +01:00
Chris Jerdonek cf4710c323 Add additional links and index entries for "argument" and "parameter".
This adds to the work done for issue #15990 (i.e. f44b8d69e5fc and the
commits referenced there).
2012-12-25 14:50:21 -08:00
Kristján Valur Jónsson b0d1c37d73 Issue #14574: Ignore socket errors raised when flushing a connection on close. 2012-12-25 22:46:32 +00:00
Ezio Melotti 3b65a9eeed #16760: use ref:`match-objects` instead of :class:`MatchObject`. 2012-12-25 18:10:49 +02:00
Ezio Melotti 4268b3a751 #16677: rename section header and fix markup. 2012-12-25 15:45:15 +02:00
Ezio Melotti 513e9b4f61 #16666: document default values for socket.getaddrinfo in the text to clarify that it doesn't accept keyword args. 2012-12-25 14:45:55 +02:00
Georg Brandl 8e1e8165a3 Add missing label. 2012-12-22 10:44:11 +01:00
Georg Brandl 9a772e5e8f Fix indentation. 2012-12-22 10:43:06 +01:00
Andrew Svetlov 4bb142b1b7 Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
2012-12-18 21:27:37 +02:00
Andrew Svetlov 78efadb86f Update example: Counter.subtract returns None, not self 2012-12-17 14:01:03 +02:00
Brian Curtin bc453ca81d Fix #14901. Update some sections of Windows FAQ.
Patch by Ashish Nitin Patil.
2012-12-17 00:17:49 -06:00
Ezio Melotti eea058b014 #16683: restore alphabetical order in audioop docs. Patch by Serhiy Storchaka. 2012-12-14 20:18:46 +02:00
Ezio Melotti 28d21cab1f #16681: use "bidirectional class" instead of "bidirectional category". 2012-12-14 20:06:43 +02:00
Senthil Kumaran bfb0989ea7 Document the reason attribute of urllib.HTTPError Patch by Berker Peksag 2012-12-09 13:36:40 -08:00
Éric Araujo 5ead5549d0 Add versionchanged note for a56cebff113a 2012-12-08 14:18:26 -05:00
Andrew Svetlov bd5279ea24 Drop double newlines printed in some file iteration examples.
Patch by Steven Kryskalla.
2012-12-08 18:01:27 +02:00
Ezio Melotti b7bc92530e Remove debug output from example. 2012-12-08 12:29:40 +02:00
Andrew Svetlov 766849b978 Document that hour in datetime.time ctor is optional parameter.
Thanks to Sean Munkel from docs@
2012-12-06 16:32:37 +02:00
Benjamin Peterson d5f462bbc4 document UnicodeError attributes 2012-12-02 11:33:06 -05:00
Ezio Melotti 63b04486f8 #16589: fix pprint signatures in the doc (backport of 106ee4eb5970). 2012-12-01 19:36:00 +02:00
Chris Jerdonek 8da8268b1f Backport from 3.2: improve argument/parameter documentation (issue #15990).
The corresponding 3.x commits are 69d5d834c5cb, 40fd26a4206b, and
74d8a2a20c52.
2012-11-29 19:03:37 -08:00
Andrew Svetlov 6a5c2e64d9 Issue #16194: document imp.load_dynamic problems
when read several extension modules from the same binary object file.
2012-11-29 19:51:28 +02:00
Ezio Melotti 3a237ebcaa #16333: document a way to get rid of trailing whitespace when indent is used. 2012-11-29 00:22:30 +02:00
Ezio Melotti eff174b8b0 #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns. 2012-11-27 19:17:57 +02:00
Chris Jerdonek 55b4cfb992 Add hyperlinks to the docs of some os.path functions (issue #16552). 2012-11-25 20:35:23 -08:00
Mark Dickinson 1658797a9d Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7. 2012-11-25 13:25:57 +00:00
Ezio Melotti 56913b7500 #16530: the "options" arg of os.wait3 is required. 2012-11-23 19:45:52 +02:00
Ezio Melotti 01560de287 #16503: clarify "apply" docs. 2012-11-18 21:23:44 +02:00
Antoine Pitrou 9fab5ce662 The poplib module provides two classes, not one. 2012-11-18 18:37:02 +01:00
Ezio Melotti 355637be32 #16053: document csv.Dialect.strict. Patch by Kushal Das. 2012-11-18 12:55:35 +02:00
Mark Dickinson 3c9181b927 Typo fix. 2012-11-18 10:41:29 +00:00
Mark Dickinson 0d18731815 Issue #12005: clarify behaviour of % and // for Decimal objects. 2012-11-18 10:20:28 +00:00
Ezio Melotti 1df43d33d2 #16420: document a way to escape metacharacters in glob/fnmatch. 2012-11-17 17:38:11 +02:00
Ezio Melotti 820f2bdaf9 Update section about dir() in the tutorial. 2012-11-17 12:46:40 +02:00