summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* s/lightweight/minimal/, as per issue #11379.Antoine Pitrou2013-12-221-1/+1
|
* Issue #19902: Added list of logging levels.Vinay Sajip2013-12-191-0/+32
|
* Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa.Zachary Ware2013-12-181-1/+1
|
* #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa.Ezio Melotti2013-12-141-2/+2
|
* Issue #19963: Document that importlib.import_module() will importBrett Cannon2013-12-131-2/+5
| | | | parent packages automatically.
* #18036: update .pyc FAQ entry in light of PEP 3147.R David Murray2013-12-131-18/+27
| | | | Initial patch by Phil Connell.
* Issue #19407: add Python Packaging User Guide notesNick Coghlan2013-12-103-5/+32
| | | | | | | | | | The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs.
* Add libmpdec license.Stefan Krah2013-12-081-0/+33
|
* #18430: Document that peek() may change the position of the underlying file forNadeem Vawda2013-12-083-0/+15
| | | | the BZ2File, GzipFile and LZMAFile classes.
* document that compile() can take bytes (closes #19910)Benjamin Peterson2013-12-071-3/+3
|
* Issue #19900: improve generalities at the start of the pickle module docAntoine Pitrou2013-12-061-20/+53
|
* Added minor clarification in logging HOWTO.Vinay Sajip2013-12-061-1/+2
|
* Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-052-34/+67
| | | | pickle module.
* Tweak the socket module doc layoutAntoine Pitrou2013-12-041-64/+86
|
* Issue #19882: tweak docs for socket.close()Antoine Pitrou2013-12-041-9/+19
|
* Issue #19814: Clarify argparse's docs w.r.t prefix matchingEli Bendersky2013-12-021-3/+11
|
* Issue #19728: Fix sys.getfilesystemencoding() documentationVictor Stinner2013-12-021-3/+2
|
* Issue #19845: Updated the Compiling Python on Windows docs.Zachary Ware2013-11-301-8/+10
|
* Issue #19789: Clarified documentation for logging.disable.Vinay Sajip2013-11-301-2/+4
|
* Revert unrelated changes introduced by changeset b2066bc8cab9 (issue #19795).Serhiy Storchaka2013-11-291-10/+0
|
* Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-2940-80/+90
|
* recommend OrderedDict for this FAQ (closes #19805)Benjamin Peterson2013-11-271-27/+3
|
* Issue #19794: Improved markup for True/False constants.Serhiy Storchaka2013-11-261-13/+13
|
* Markup fix.Georg Brandl2013-11-261-1/+0
|
* Issue #19691: remove outdated mention about RuntimeErrorAntoine Pitrou2013-11-251-2/+1
|
* Closes #19622: clarify message about bufsize changes in 3.2.4 and 3.3.1.Georg Brandl2013-11-251-5/+5
|
* Fix doc markup error.Georg Brandl2013-11-251-3/+3
|
* Fix broken link in html.entities docs.Ezio Melotti2013-11-251-1/+1
|
* Doc/Makefile: also do "make suspicious" during daily autobuildGeorg Brandl2013-11-241-0/+1
|
* Issue #18326: Clarify that list.sort's arguments are keyword-only.Zachary Ware2013-11-222-2/+7
| | | | | Also, attempt to reduce confusion in the glossary by not saying there are different "types" of arguments and parameters.
* #1098749: re-word gettext docs to not encourage using pygettext so much.Andrew Kuchling2013-11-191-52/+51
| | | | Also, add a link to the Babel package.
* Fix indentation in doc example.Ezio Melotti2013-11-171-5/+5
|
* Issue 16998: Clarify that += on a shared value is not atomic.Richard Oudkerk2013-11-171-6/+18
|
* Issue #19508: direct the user to read the security considerations for the ↵Antoine Pitrou2013-11-171-5/+14
| | | | ssl module
* #19238: fix typo in documentation.Ezio Melotti2013-11-171-1/+1
|
* Issue #19504: Used American spelling for 'customize'.Vinay Sajip2013-11-153-8/+8
|
* Update e-mail addressAndrew Kuchling2013-11-123-4/+4
|
* Issue 19544 and Issue #7457: Restore the read_pkg_file method to ↵Jason R. Coombs2013-11-101-0/+42
| | | | distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2.
* #18985: Improve fcntl documentation.R David Murray2013-11-071-5/+8
| | | | Original patch by Vajrasky Kok, further improved (I hope) by me.
* Issue #18345: Added cookbook example illustrating handler customisation.Vinay Sajip2013-11-051-0/+135
|
* MergeTim Golden2013-11-031-6/+10
|\
| * Issue #10197: Indicate availability of subprocess.get[status]output on ↵Tim Golden2013-11-031-6/+10
| | | | | | | | Windows and add a note about the effects of universal newlines
* | #19411: Clarify that b2a_hex/hexlify returns a bytes object.R David Murray2013-11-031-1/+1
|/ | | | Initial patch by Vajrasky Kok.
* Issue #19452: Clarify the documentation of iterparse w.r.t. events argument.Eli Bendersky2013-10-311-1/+1
| | | | | In 3.3 iterparse accepts a tuple in events (the C accelerator enforces this). This limitation was lifted in Python 3.4
* Corrected some incorrect cross-references.Vinay Sajip2013-10-311-7/+8
|
* fix languageChristian Heimes2013-10-291-1/+1
|
* Issue #18747: document issue with OpenSSL's CPRNG state and forkChristian Heimes2013-10-292-0/+12
|
* Clarify sentence.Georg Brandl2013-10-291-1/+1
|
* Closes #19416: fix references in the nntplib docs.Georg Brandl2013-10-291-3/+3
|
* Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam ↵Georg Brandl2013-10-291-1/+1
| | | | on docs@.