summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Issue 1289, just a typo.Facundo Batista2007-10-181-1/+1
|
* Remove ``:const:`` notation on None in parameter list. Since the markup is notBrett Cannon2007-10-161-1/+1
| | | | rendered for parameters it just showed up as ``:const:`None` `` in the output.
* More docs, error messages, and testsRaymond Hettinger2007-10-161-3/+7
|
* Accept Jim Jewett's api suggestion to use None instead of -1 to indicate ↵Raymond Hettinger2007-10-101-1/+1
| | | | unbounded deques.
* Eliminate camelcase function nameRaymond Hettinger2007-10-081-18/+26
|
* Missed a line in the docsRaymond Hettinger2007-10-081-1/+1
|
* Add comments to NamedTuple code.Raymond Hettinger2007-10-081-3/+5
| | | | | Let the field spec be either a string or a non-string sequence (suggested by Martin Blais with use cases). Improve the error message in the case of a SyntaxError (caused by a duplicate field name).
* #1123: fix the docs for the str.split(None, sep) case.Georg Brandl2007-10-081-23/+32
| | | | Also expand a few other methods' docs, which had more info in the deprecated string module docs.
* move descriptions of ac_(in|out)_buffer_size to the right placeFred Drake2007-10-052-13/+13
| | | | http://bugs.python.org/issue1053
* Add __asdict__() to NamedTuple and refine the docs.Raymond Hettinger2007-10-051-45/+48
| | | | | | Add maxlen support to deque() and fixup docs. Partially fix __reduce__(). The None as a third arg was no longer supported. Still needs work on __reduce__() to handle recursive inputs.
* wrap lines to <80 characters before fixing errorsFred Drake2007-10-052-178/+190
|
* itertools.count() no longer limited to sys.maxint.Raymond Hettinger2007-10-041-7/+3
|
* #1208: document match object's boolean value.Georg Brandl2007-09-271-17/+20
|
* Typo fixAndrew M. Kuchling2007-09-241-1/+1
|
* Remove stray odd character; grammar fixAndrew M. Kuchling2007-09-241-2/+2
|
* #1196: document default radix for int().Georg Brandl2007-09-241-11/+12
|
* Fix typo and double word.Georg Brandl2007-09-241-2/+2
|
* Patch #1181: add os.environ.clear() method.Georg Brandl2007-09-201-2/+6
|
* #1176: document that string methods don't take keyword args.Georg Brandl2007-09-201-1/+3
|
* alternate -> alternative.Georg Brandl2007-09-201-1/+1
|
* Fit nitsRaymond Hettinger2007-09-201-7/+11
|
* issue1172: Documentation of "done" attribute in cgi module.Sean Reifscheider2007-09-181-0/+5
|
* Cleanup docs for NamedTuple.Raymond Hettinger2007-09-181-72/+71
|
* Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people ↵Raymond Hettinger2007-09-181-1/+18
| | | | can see how it works.
* Sync-up named tuples with the latest version of the ASPN recipe.Raymond Hettinger2007-09-171-3/+35
| | | | | | | Allows optional commas in the field-name spec (help when named tuples are used in conjuction with sql queries). Adds the __fields__ attribute for introspection and to support conversion to dictionary form. Adds a __replace__() method similar to str.replace() but using a named field as a target. Clean-up spelling and presentation in doc-strings.
* Add support for asyncore server-side SSL support. This requiresBill Janssen2007-09-161-9/+30
| | | | | | | | | | | | | | | adding the 'makefile' method to ssl.SSLSocket, and importing the requisite fakefile class from socket.py, and making the appropriate changes to it to make it use the SSL connection. Added sample HTTPS server to test_ssl.py, and test that uses it. Change SSL tests to use https://svn.python.org/, instead of www.sf.net and pop.gmail.com. Added utility function to ssl module, get_server_certificate, to wrap up the several things to be done to pull a certificate from a remote server.
* Remove bdb from the "undocumented modules" list.Georg Brandl2007-09-151-3/+0
|
* Some additions (examples and a bit on the tutorial).Facundo Batista2007-09-141-20/+45
|
* Included the new functions, and new descriptions.Facundo Batista2007-09-141-121/+437
|
* Replaced variable o with obj in operator.rst because o is easy toMark Summerfield2007-09-134-41/+50
| | | | | | | | | confuse. Added a note about Python 3's collections.Mapping etc., above section that describes isMappingType() etc. Added xrefs between os, os.path, fileinput, and open().
* Bug #1152: use non-deprecated name in example.Georg Brandl2007-09-121-1/+1
|
* New documentation page for the bdb module.Georg Brandl2007-09-124-8/+357
| | | | (This doesn't need to be merged to Py3k.)
* Fix some documentation bugs.Bill Janssen2007-09-111-34/+54
|
* More work on SSL support.Bill Janssen2007-09-102-145/+253
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Much expanded test suite: All protocols tested against all other protocols. All protocols tested with all certificate options. Tests for bad key and bad cert. Test of STARTTLS functionality. Test of RAND_* functions. * Fixes for threading/malloc bug. * Issue 1065 fixed: sslsocket class renamed to SSLSocket. sslerror class renamed to SSLError. Function "wrap_socket" now used to wrap an existing socket. * Issue 1583946 finally fixed: Support for subjectAltName added. Subject name now returned as proper DN list of RDNs. * SSLError exported from socket as "sslerror". * RAND_* functions properly exported from ssl.py. * Documentation improved: Example of how to create a self-signed certificate. Better indexing.
* Change socket.error to inherit from IOError rather than being a standGregory P. Smith2007-09-092-0/+6
| | | | | | | | | | | | | | | | | | | | | | alone class. This addresses the primary concern in http://bugs.python.org/issue1706815 python-dev discussion here: http://mail.python.org/pipermail/python-dev/2007-July/073749.html I chose IOError rather than EnvironmentError as the base class since socket objects are often used as transparent duck typed file objects in code already prepared to deal with IOError exceptions. also a minor fix: urllib2 - fix a couple places where IOError was raised rather than URLError. for better or worse, URLError already inherits from IOError so this won't break any existing code. test_urllib2net - replace bad ftp urls.
* Add a 'c_longdouble' type to the ctypes module.Thomas Heller2007-09-071-0/+9
|
* Fix typo: c_float represents to C float type.Thomas Heller2007-09-061-1/+1
|
* SSL certificate distinguished names should be represented by tuplesBill Janssen2007-09-051-36/+45
|
* Patch #1388440: Add set_completion_display_matches_hook andMartin v. Löwis2007-09-041-0/+16
| | | | get_completion_type to readline.
* Added cross-references plus a note about dict & list shallow copying.Mark Summerfield2007-09-045-6/+15
|
* Wording changeAndrew M. Kuchling2007-09-011-1/+1
|
* Markup fixAndrew M. Kuchling2007-09-011-1/+1
|
* Fix typo.Walter Dörwald2007-09-011-1/+1
|
* Fix wrong function names.Walter Dörwald2007-09-011-2/+2
|
* Added a note and examples to explain that re.split does not split on anSkip Montanaro2007-09-011-0/+7
| | | | empty pattern match. (issue 852532).
* Document sets' ">" and "<" operations (backport from py3k).Georg Brandl2007-09-011-0/+10
|
* Fix RST link (backport from Py3k).Georg Brandl2007-09-011-1/+1
|
* Warn about possible risks when extracting untrusted archives.Lars Gustäbel2007-08-301-0/+11
|
* Added more cross-references.Mark Summerfield2007-08-303-4/+9
|
* Stronger urge to convert filenames to str before using them as argument to ↵Georg Brandl2007-08-301-1/+1
| | | | ZipFile.write().