summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* remove mention of check_hostname parameterBenjamin Peterson2014-12-071-4/+4
|
* remove HTTPSConnection's check_hostname parameter (#22959)Benjamin Peterson2014-12-071-9/+2
|
* note that sslv3 may not be availableBenjamin Peterson2014-12-061-2/+5
|
* add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-301-3/+8
| | | | Patch from Alex Gaynor.
* remove incorrect pluralBenjamin Peterson2014-11-251-1/+1
|
* Issue #20351: Add examples for csv.DictReader and csv.DictWriter.Berker Peksag2014-11-241-0/+25
| | | | Patch by Charles-Axel Dein.
* Fix faulty indent.Ned Deily2014-11-241-1/+1
|
* pep 476: verify certificates by default (#22417)Benjamin Peterson2014-11-242-7/+8
|
* give urllib.urlopen a context parameter (closes #22927)Benjamin Peterson2014-11-241-4/+14
|
* fix versionchanged versionBenjamin Peterson2014-11-241-1/+1
|
* allow hostname to be passed to SSLContext even if OpenSSL doesn't support ↵Benjamin Peterson2014-11-241-7/+7
| | | | | | SNI (closes #22921) Patch from Donald Stufft.
* allow passing cert/ssl information to urllib2.urlopen and ↵Benjamin Peterson2014-11-232-12/+44
| | | | | | httplib.HTTPSConnection This is basically a backport of issues #9003 and #22366.
* Implement PEP 477 - Backport ensurepip (PEP 453) to 2.7Donald Stufft2014-11-114-1/+144
| | | | | | | | | | | | | | | | | | | * Backports ensurepip to the 2.7 branch * Backports some of the improved documentation to the 2.7 branch. * Adds a private backport of the 3.x mock library as test._mock_backport to enable saner testing of ensurepip. Key Differences from 3.x: * Ensurepip does not have any Makefile integration, specifically it is not ran by default in the Makefile. * There is no venv module in 2.7, so downstream distributors can completely disable ensurepip, ideally with a message redirecting to the correct way to install pip. * To match the ``python`` command in 2.7, ensurepip will install the unversioned ``pip`` command as well. * No-op and hide --default-pip and add --no-default-pip to restore the 3.x behavor on 2.7.
* Issue #22845: Improved formatting of dis documentation.Serhiy Storchaka2014-11-111-5/+5
|
* Use internal links where possibleRaymond Hettinger2014-11-102-4/+2
|
* Issue 22830: Clarify docs for functools.cmp_to_key().Raymond Hettinger2014-11-101-4/+7
|
* Closes #22525: clarify documentation for ast.literal_eval().Georg Brandl2014-11-051-6/+8
|
* #22613: fix several factual errors in builtin docs (thanks Jacques Ducasse)Georg Brandl2014-10-312-6/+7
|
* #22613: minor other fixes in library docs (thanks Jacques Ducasse)Georg Brandl2014-10-313-7/+9
|
* #22613: document Cmd.cmdqueue (thanks Jacques Ducasse)Georg Brandl2014-10-311-1/+8
|
* Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-301-1/+1
|
* Fixing broken links in doc, part 4: some more breaks and redirectsGeorg Brandl2014-10-2910-13/+12
|
* Fixing broken links in doc, part 3: the restGeorg Brandl2014-10-296-39/+39
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-2911-13/+13
|
* Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for ↵Georg Brandl2014-10-281-1/+1
| | | | getaddrinfo() proto param
* Closes #22736: move seealso to the bottom of the section about RE syntax.Georg Brandl2014-10-281-7/+8
|
* #22237: document that sorted() is guaranteed to be stable. Initial patch by ↵Ezio Melotti2014-10-282-1/+8
| | | | Martin Panter.
* Issue #22660: update various mentions in the ssl module documentation.Antoine Pitrou2014-10-201-115/+95
|
* make plural s lowercaseBenjamin Peterson2014-10-191-1/+1
|
* Fix a typo caught by Gabriella Capone on docs@Zachary Ware2014-10-191-1/+1
|
* note xmlrpclib doesn't verify certs (yet)Benjamin Peterson2014-10-131-0/+5
|
* Closes #22586: clarify meaning of allow_fragments in urlparse.Georg Brandl2014-10-121-2/+3
|
* Issue #15414: Clean and correct the os.path.join docs.Zachary Ware2014-10-101-11/+16
| | | | | | In particular, correctly describe the behavior of ntpath.join. Based on a patch by Dave Sawyer.
* Issue #22575: Revise bytearray entry for 2.7.Terry Jan Reedy2014-10-101-3/+3
|
* #0712: 2to3 has a new "asserts" fixer that replaces deprecated names of ↵R David Murray2014-10-101-0/+33
| | | | | | unittest methods. Patch by Ezio Melotti, docs by Berker Peksag.
* Closes #14303: socket.makefile() does not call dup() anymore on the socket fd.Georg Brandl2014-10-061-3/+5
|
* Document builtin classes as such, not functions.Georg Brandl2014-10-061-33/+36
|
* #14201: Update ctypes docs to match behavior changed from 214b28d7a999.R David Murray2014-10-041-5/+10
| | | | Original patch by Erik Johansson, slightly updated by Meador Inge.
* #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+14
| | | | Patch by Éric Araujo with help from Lars Gustäbel.
* Fix a few typo/grammar issues in the multiprocessing docs.Zachary Ware2014-10-031-3/+3
| | | | Reported by Scott Hinton on docs@.
* closes #22528: add source links to symtable and compileallGeorg Brandl2014-10-022-0/+8
|
* add link to pdb source (closes #22528)Benjamin Peterson2014-09-301-0/+3
|
* Issue #17462: Add a paragraph about advantages of argparse over optparse.Berker Peksag2014-09-261-0/+10
| | | | Patch by Anastasia Filatova.
* Doc: fix usage of deprecated config value "unused_docs", and a duplicate ↵Georg Brandl2014-09-201-0/+1
| | | | object name.
* Issue #22436: Improved documentation for getEffectiveLevel() and getLevelName().Vinay Sajip2014-09-181-1/+9
|
* Issue #22369: Change "context manager protocol" to "context management ↵Serhiy Storchaka2014-09-101-1/+1
| | | | protocol".
* Issue #20643: Fixed references to the next() method (distinguish from theSerhiy Storchaka2014-09-053-7/+7
| | | | next() function).
* fix malformed use cmdoption directiveBenjamin Peterson2014-09-051-1/+2
|
* Fixed the versionadded in the docs for the backport in 16c86a6bdbe2Alex Gaynor2014-09-041-1/+1
|
* Issue #20421: Add a .version() method to SSL sockets exposing the actual ↵Alex Gaynor2014-09-041-4/+14
| | | | | | protocol version in use. Backport from default.