summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Issues #814253, #9179: Warnings now are raised when group references andSerhiy Storchaka2015-02-211-2/+5
| | | | | conditional group references are used in lookbehind assertions in regular expressions.
* Fix typo pointed out on docs@ by Yaniv SayehZachary Ware2015-02-201-1/+1
|
* Fix missing :ref: for idle in doc build.Ned Deily2015-02-061-3/+3
|
* remove parenthesis from print statement (closes #23396)Benjamin Peterson2015-02-051-1/+1
|
* Preserve critical whitespace in Doc/*.Stefan Krah2015-02-011-1/+1
|
* Issue #23352: Document that Py_buffer.suboffsets must be NULL if no suboffsetsStefan Krah2015-02-011-1/+4
| | | | are required.
* Added a cookbook entry on logging audible messages.Vinay Sajip2015-02-011-0/+54
|
* Added a logging cookbook entry on customized exception formatting.Vinay Sajip2015-01-281-0/+55
|
* Issue #14099: Backout changeset c2c4cde55f6f (except adapted tests).Serhiy Storchaka2015-01-261-2/+8
|
* #23251: Reflow paragraph.R David Murray2015-01-251-6/+6
|
* #23251: note that time.sleep affects the current thread only.R David Murray2015-01-251-1/+2
| | | | This is parallel to the language used in the unix man page.
* prefer server alpn ordering over the client'sBenjamin Peterson2015-01-231-1/+2
|
* fix versionchangedBenjamin Peterson2015-01-231-3/+3
|
* pep 466 backport of alpn (#20188)Benjamin Peterson2015-01-231-2/+32
|
* Issue #23305: clarified RotatingFileHandler documentation.Vinay Sajip2015-01-231-9/+10
|
* Issue #22317: Document the action parameter in ↵Berker Peksag2015-01-201-3/+6
| | | | | | ArgumentParser.add_subparsers() docs. Patch by Mike Short.
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
|
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-181-2/+2
| | | | Patch by Al Sweigart.
* Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.Georg Brandl2015-01-151-1/+1
|
* Issue20467: clarify __init__'s roleEthan Furman2015-01-151-4/+8
|
* Closes #23181: codepoint -> code pointGeorg Brandl2015-01-145-12/+12
|
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-134-4/+4
| | | | Patch by Karan Goel.
* Issue #22952: improve multiprocessing doc introduction and defer notes until ↵Antoine Pitrou2015-01-111-33/+54
| | | | | | appropriate. Patch by Davin Potts.
* Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse ↵Mark Dickinson2015-01-111-4/+4
| | | | hyperbolic sine' (etc.). Remove meaningless reference to radians.
* Silence a Sphinx warning in ftplib.rst.Berker Peksag2015-01-061-1/+1
| | | | | ftplib.rst:61: WARNING: Block quote ends without a blank line; unexpect ed unindent.
* Fix a markup error in the argparse documentation.Berker Peksag2015-01-061-2/+2
| | | | Reported by Jason Sachs on docs@.
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-0/+2
| | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* Clarified documentation for logging exception function/method.Vinay Sajip2015-01-061-4/+6
|
* emphasize that cffi is better than extension modules for portabilityBenjamin Peterson2015-01-051-5/+10
|
* allow a SSLContext to be given to ftplib.FTP_TLSBenjamin Peterson2015-01-041-5/+13
|
* make SSLv23 the default version in ftplib (closes #23111)Benjamin Peterson2015-01-041-1/+1
|
* Add missing URL link to Modernize docs.Ned Deily2015-01-031-1/+1
|
* update for copyright for 2015Benjamin Peterson2015-01-012-2/+2
|
* Issue #23125: Update nose project page link.Berker Peksag2014-12-281-1/+1
| | | | Reported by Damien Marié.
* improve incorrect French (#23109)Benjamin Peterson2014-12-241-2/+2
| | | | Following suggestions from Clément.
* Issue #23070: Fix a comment in the tutorial.Berker Peksag2014-12-171-1/+1
| | | | | | "Python" has 6 characters, not 7. Reported by Ross Burnett.
* Issue #23047: Fix typo in pyporting.rst.Berker Peksag2014-12-131-1/+1
| | | | Patch by Chaitanya agrawal.
* Backport of porting HOWTOBrett Cannon2014-12-121-583/+358
|
* remove reference to dead irc channel (closes #23038)Benjamin Peterson2014-12-121-3/+1
|
* Issue 23005: Fix typosRaymond Hettinger2014-12-121-2/+2
|
* Issue #23006: Improve the documentation and indexing of dict.__missing__.Terry Jan Reedy2014-12-102-9/+31
| | | | | | Add an entry in the language datamodel special methods section. Revise and index its discussion in the stdtypes mapping/dict section. Backport the code example from 3.4.
* fix path to patchlevel.pyBenjamin Peterson2014-12-101-1/+1
|
* Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer.Ned Deily2014-12-101-3/+3
| | | | | | | | | | Among other issues, the Apple-supplied 0.9.7 libs for the 10.5 ABI cannot verify newer SHA-256 certs as now used by python.org services. Document in the installer ReadMe some of the certificate management issues that users now need to be more concerned with due to PEP 476's enabling cert verification by default. For now, continue to use the Apple-supplied 0.9.8 libs for the 10.6+ installer since they use Apple private APIs to verify certificates using the system- and user-managed CA keychain stores.
* Issue #12602: Add missing cross-references to runpy and using/cmdline docs.Berker Peksag2014-12-103-4/+17
| | | | Patch by Éric Araujo.
* Merge 2.7.9 release branchBenjamin Peterson2014-12-071-4/+4
|\
| * remove mention of check_hostname parameterBenjamin Peterson2014-12-071-4/+4
| |
* | merge 2.7.9 release branchBenjamin Peterson2014-12-071-9/+2
|\ \ | |/
| * remove HTTPSConnection's check_hostname parameter (#22959)Benjamin Peterson2014-12-071-9/+2
| |
* | merge 2.7.9 release branchBenjamin Peterson2014-12-061-2/+5
|\ \ | |/
| * note that sslv3 may not be availableBenjamin Peterson2014-12-061-2/+5
| |