Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Eliminate camelcase function name | Andrew M. Kuchling | 2007-10-08 | 1 | -2/+2 |
| | |||||
* | Eliminate camelcase function name | Raymond Hettinger | 2007-10-08 | 1 | -18/+26 |
| | |||||
* | #1199: docs for tp_as_{number,sequence,mapping}, by Amaury Forgeot d'Arc. | Georg Brandl | 2007-10-08 | 2 | -15/+194 |
| | | | | No need to merge this to py3k! | ||||
* | 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 |
| | |||||
* | Added note in footnote about string comparisons about | Mark Summerfield | 2007-10-03 | 1 | -2/+3 |
| | | | | unicodedata.normalize(). | ||||
* | #1208: document match object's boolean value. | Georg Brandl | 2007-09-27 | 1 | -17/+20 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2007-09-25 | 1 | -18/+105 |
| | |||||
* | 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 | 2 | -2/+2 |
| | |||||
* | 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 |
| | |||||
* | A bit of reordering, also show more subheadings in the lang ref index. | Georg Brandl | 2007-09-18 | 2 | -43/+43 |
| | |||||
* | 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. | ||||
* | Add item; sort properly | Andrew M. Kuchling | 2007-09-18 | 1 | -15/+53 |
| | |||||
* | 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 |
| | |||||
* | Make target unique | Andrew M. Kuchling | 2007-09-13 | 1 | -1/+1 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2007-09-13 | 1 | -0/+428 |
| | |||||
* | 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(). | ||||
* | Fix #1139: PyFile_Encoding really is PyFile_SetEncoding. | Georg Brandl | 2007-09-12 | 1 | -1/+1 |
| | |||||
* | Fix #1122: wrong return type documented for various _Size() functions. | Georg Brandl | 2007-09-12 | 1 | -4/+4 |
| | |||||
* | 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. | ||||
* | Allow making update with no prior checkout. | Martin v. Löwis | 2007-09-10 | 1 | -1/+1 |
| | |||||
* | Change socket.error to inherit from IOError rather than being a stand | Gregory P. Smith | 2007-09-09 | 3 | -1/+8 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Fix a wrong indentation for sublists. | Georg Brandl | 2007-09-07 | 1 | -2/+2 |
| | |||||
* | 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 |
| | |||||
* | Backport from 3k: #1116: fix reference to old filename. | Georg Brandl | 2007-09-06 | 1 | -1/+1 |
| | |||||
* | Backport from Py3k: Bug #1684991: explain lookup semantics for __special__ ↵ | Georg Brandl | 2007-09-05 | 1 | -0/+15 |
| | | | | methods (new-style classes only). | ||||
* | 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 |
| |