summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Merge issue #11076: document the way to convert argparse.Namespace to a dict.Andrew Svetlov2012-11-281-0/+15
|\ | | | | | | Initial patch by Virgil Dupras.
| * Issue #11076: document the way to convert argparse.Namespace to a dict.Andrew Svetlov2012-11-281-0/+15
| | | | | | | | Initial patch by Virgil Dupras.
* | Add a str class entry to the "Text Sequence Type" section (issue #16209).Chris Jerdonek2012-11-282-45/+62
| | | | | | | | | | | | This commit also moves the documentation for the str built-in function to the new class entry. Links to :class:`str` now go to the class entry with the string methods immediately afterwards.
* | #16556: merge with 3.2.Ezio Melotti2012-11-271-1/+1
|\ \ | |/
| * #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns.Ezio Melotti2012-11-271-1/+1
| |
* | Merge from 3.2: add hyperlinks to some os.path function docs (issue #16552).Chris Jerdonek2012-11-261-6/+9
|\ \ | |/
| * Add hyperlinks to the docs of some os.path functions (issue #16552).Chris Jerdonek2012-11-261-6/+9
| |
* | #16530: merge with 3.2.Ezio Melotti2012-11-231-1/+1
|\ \ | |/
| * #16530: the "options" arg of os.wait3 is required.Ezio Melotti2012-11-231-1/+1
| |
| * Improve str() and object.__str__() documentation (issue #13538).Chris Jerdonek2012-11-212-34/+53
| |
* | Issue #16538: correctly describe MAKE_CLOSURE in docs.Andrew Svetlov2012-11-231-3/+4
| | | | | | | | Patch by Daniel Urban
* | Address reviews for open’s opener argument doc patch (#13424).Éric Araujo2012-11-221-22/+4
| | | | | | | | | | | | * Remove example deemed not helpful. * Simplify the other one. * Add missing target to ref.
* | Improve str() and object.__str__() documentation (issue #13538).Chris Jerdonek2012-11-212-39/+57
| |
* | - Issue #16514: Fix regression causing a traceback when sys.path[0] is NoneBarry Warsaw2012-11-201-1/+3
| | | | | | | | (actually, any non-string or non-bytes type).
* | Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@Andrew Svetlov2012-11-201-1/+1
| |
* | The poplib module provides two classes, not one.Antoine Pitrou2012-11-181-1/+1
|\ \ | |/
| * The poplib module provides two classes, not one.Antoine Pitrou2012-11-181-1/+1
| |
* | #16053: merge with 3.2.Ezio Melotti2012-11-181-0/+5
|\ \ | |/
| * #16053: document csv.Dialect.strict. Patch by Kushal Das.Ezio Melotti2012-11-181-0/+5
| |
* | Merge typo fix from 3.2.Mark Dickinson2012-11-181-1/+1
|\ \ | |/
| * Typo fix.Mark Dickinson2012-11-181-1/+1
| |
* | Issue #12005: merge doc patch from 3.2Mark Dickinson2012-11-181-0/+23
|\ \ | |/
| * Issue #12005: clarify behaviour of % and // for Decimal objects.Mark Dickinson2012-11-181-0/+23
| |
* | #16420: merge with 3.2.Ezio Melotti2012-11-172-2/+6
|\ \ | |/
| * #16420: document a way to escape metacharacters in glob/fnmatch.Ezio Melotti2012-11-172-2/+6
| |
* | Issue #16489: Make it clearer that importlib.find_loader() requiresBrett Cannon2012-11-171-5/+4
| | | | | | | | the user to import any parent packages.
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ↵Nadeem Vawda2012-11-112-9/+11
|\ \ | |/ | | | | | | | | mean 'no compression'. Patch by Brian Brazil.
| * Issue #15677: Document that zlib and gzip accept a compression level of 0 to ↵Nadeem Vawda2012-11-112-10/+12
| | | | | | | | | | | | mean 'no compression'. Patch by Brian Brazil.
* | Fixes issue #16409: The reporthook callback made by the legacyGregory P. Smith2012-11-101-1/+2
| | | | | | | | | | | | urllib.request.urlretrieve API now properly supplies a constant non-zero block_size as it did in Python 3.2 and 2.7. This matches the behavior of urllib.request.URLopener.retrieve.
* | Merge from 3.2: adjust set and frozenset function docs (issue #16436).Chris Jerdonek2012-11-101-6/+13
|\ \ | |/
| * Link set and frozenset function docs to their class definitions (issue #16436).Chris Jerdonek2012-11-101-6/+13
| |
* | #16440: merge with 3.2.Ezio Melotti2012-11-081-9/+15
|\ \ | |/
| * #16440: fix exception type and clarify example.Ezio Melotti2012-11-081-9/+15
| |
* | Merge issue #16439: Fix markup in example for stdtypes.Andrew Svetlov2012-11-081-5/+5
|\ \ | |/ | | | | Thanks to Yongzhi Pan.
| * Issue #16439: Fix markup in example for stdtypes.Andrew Svetlov2012-11-081-5/+5
| | | | | | | | Thanks to Yongzhi Pan.
* | #11481: merge with 3.2.Ezio Melotti2012-11-082-5/+28
|\ \ | |/
| * #11481: update copyreg docs and add example.Ezio Melotti2012-11-082-5/+28
| |
* | #10385: merge with 3.2.Ezio Melotti2012-11-081-5/+5
|\ \ | |/
| * #10385: use the mod role in subprocess docs.Ezio Melotti2012-11-081-5/+5
| |
* | Fix typo noticed by Tom Lynn.Ezio Melotti2012-11-051-1/+1
| |
* | #16304: merge with 3.2.Ezio Melotti2012-11-041-3/+10
|\ \ | |/
| * #16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz.Ezio Melotti2012-11-041-3/+10
| |
* | Avoid fd leak in example. Caught by Serhiy.Éric Araujo2012-11-031-2/+3
| |
* | Add examples for opener argument of open (#13424).Éric Araujo2012-11-032-0/+33
| | | | | | | | Patch by Guillaume Pratte.
* | Merge from 3.2: link to mapping glossary entry in docs.Chris Jerdonek2012-11-032-3/+3
|\ \ | |/
| * Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs.Chris Jerdonek2012-11-032-3/+3
| |
* | Issue #15814: Use hash function that is compatible with the equalityStefan Krah2012-11-021-6/+0
| | | | | | | | definition from #15573.
* | Merge issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-0/+21
|\ \ | |/ | | | | Patch by Todd Rovito.
| * Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-0/+21
| | | | | | | | Patch by Todd Rovito.
* | Merge: Reword set docs to use *proper subset/superset* terminology.Andrew Svetlov2012-11-011-2/+2
|\ \ | |/