Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 1289, just a typo. | Facundo Batista | 2007-10-18 | 1 | -1/+1 |
| | |||||
* | Remove ``:const:`` notation on None in parameter list. Since the markup is not | Brett Cannon | 2007-10-16 | 1 | -1/+1 |
| | | | | rendered for parameters it just showed up as ``:const:`None` `` in the output. | ||||
* | More docs, error messages, and tests | Raymond Hettinger | 2007-10-16 | 1 | -3/+7 |
| | |||||
* | Accept Jim Jewett's api suggestion to use None instead of -1 to indicate ↵ | Raymond Hettinger | 2007-10-10 | 1 | -1/+1 |
| | | | | unbounded deques. | ||||
* | Eliminate camelcase function name | Raymond Hettinger | 2007-10-08 | 1 | -18/+26 |
| | |||||
* | Missed a line in the docs | Raymond Hettinger | 2007-10-08 | 1 | -1/+1 |
| | |||||
* | Add comments to NamedTuple code. | Raymond Hettinger | 2007-10-08 | 1 | -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 Brandl | 2007-10-08 | 1 | -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 place | Fred Drake | 2007-10-05 | 2 | -13/+13 |
| | | | | http://bugs.python.org/issue1053 | ||||
* | Add __asdict__() to NamedTuple and refine the docs. | Raymond Hettinger | 2007-10-05 | 1 | -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 errors | Fred Drake | 2007-10-05 | 2 | -178/+190 |
| | |||||
* | itertools.count() no longer limited to sys.maxint. | Raymond Hettinger | 2007-10-04 | 1 | -7/+3 |
| | |||||
* | #1208: document match object's boolean value. | Georg Brandl | 2007-09-27 | 1 | -17/+20 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2007-09-24 | 1 | -1/+1 |
| | |||||
* | Remove stray odd character; grammar fix | Andrew M. Kuchling | 2007-09-24 | 1 | -2/+2 |
| | |||||
* | #1196: document default radix for int(). | Georg Brandl | 2007-09-24 | 1 | -11/+12 |
| | |||||
* | Fix typo and double word. | Georg Brandl | 2007-09-24 | 1 | -2/+2 |
| | |||||
* | Patch #1181: add os.environ.clear() method. | Georg Brandl | 2007-09-20 | 1 | -2/+6 |
| | |||||
* | #1176: document that string methods don't take keyword args. | Georg Brandl | 2007-09-20 | 1 | -1/+3 |
| | |||||
* | alternate -> alternative. | Georg Brandl | 2007-09-20 | 1 | -1/+1 |
| | |||||
* | Fit nits | Raymond Hettinger | 2007-09-20 | 1 | -7/+11 |
| | |||||
* | issue1172: Documentation of "done" attribute in cgi module. | Sean Reifscheider | 2007-09-18 | 1 | -0/+5 |
| | |||||
* | Cleanup docs for NamedTuple. | Raymond Hettinger | 2007-09-18 | 1 | -72/+71 |
| | |||||
* | Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people ↵ | Raymond Hettinger | 2007-09-18 | 1 | -1/+18 |
| | | | | can see how it works. | ||||
* | Sync-up named tuples with the latest version of the ASPN recipe. | Raymond Hettinger | 2007-09-17 | 1 | -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 requires | Bill Janssen | 2007-09-16 | 1 | -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 Brandl | 2007-09-15 | 1 | -3/+0 |
| | |||||
* | Some additions (examples and a bit on the tutorial). | Facundo Batista | 2007-09-14 | 1 | -20/+45 |
| | |||||
* | Included the new functions, and new descriptions. | Facundo Batista | 2007-09-14 | 1 | -121/+437 |
| | |||||
* | Replaced variable o with obj in operator.rst because o is easy to | Mark Summerfield | 2007-09-13 | 4 | -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 Brandl | 2007-09-12 | 1 | -1/+1 |
| | |||||
* | New documentation page for the bdb module. | Georg Brandl | 2007-09-12 | 4 | -8/+357 |
| | | | | (This doesn't need to be merged to Py3k.) | ||||
* | Fix some documentation bugs. | Bill Janssen | 2007-09-11 | 1 | -34/+54 |
| | |||||
* | More work on SSL support. | Bill Janssen | 2007-09-10 | 2 | -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 stand | Gregory P. Smith | 2007-09-09 | 2 | -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 Heller | 2007-09-07 | 1 | -0/+9 |
| | |||||
* | Fix typo: c_float represents to C float type. | Thomas Heller | 2007-09-06 | 1 | -1/+1 |
| | |||||
* | SSL certificate distinguished names should be represented by tuples | Bill Janssen | 2007-09-05 | 1 | -36/+45 |
| | |||||
* | Patch #1388440: Add set_completion_display_matches_hook and | Martin v. Löwis | 2007-09-04 | 1 | -0/+16 |
| | | | | get_completion_type to readline. | ||||
* | Added cross-references plus a note about dict & list shallow copying. | Mark Summerfield | 2007-09-04 | 5 | -6/+15 |
| | |||||
* | Wording change | Andrew M. Kuchling | 2007-09-01 | 1 | -1/+1 |
| | |||||
* | Markup fix | Andrew M. Kuchling | 2007-09-01 | 1 | -1/+1 |
| | |||||
* | Fix typo. | Walter Dörwald | 2007-09-01 | 1 | -1/+1 |
| | |||||
* | Fix wrong function names. | Walter Dörwald | 2007-09-01 | 1 | -2/+2 |
| | |||||
* | Added a note and examples to explain that re.split does not split on an | Skip Montanaro | 2007-09-01 | 1 | -0/+7 |
| | | | | empty pattern match. (issue 852532). | ||||
* | Document sets' ">" and "<" operations (backport from py3k). | Georg Brandl | 2007-09-01 | 1 | -0/+10 |
| | |||||
* | Fix RST link (backport from Py3k). | Georg Brandl | 2007-09-01 | 1 | -1/+1 |
| | |||||
* | Warn about possible risks when extracting untrusted archives. | Lars Gustäbel | 2007-08-30 | 1 | -0/+11 |
| | |||||
* | Added more cross-references. | Mark Summerfield | 2007-08-30 | 3 | -4/+9 |
| | |||||
* | Stronger urge to convert filenames to str before using them as argument to ↵ | Georg Brandl | 2007-08-30 | 1 | -1/+1 |
| | | | | ZipFile.write(). |