summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Lots of explicit class names for method and member descs.Georg Brandl2007-04-0142-489/+489
|
* Another fix.Georg Brandl2007-04-011-1/+1
|
* Fix a lot of markup and meta-information glitches.Georg Brandl2007-04-0121-143/+143
|
* Typo fix.Georg Brandl2007-03-311-1/+1
|
* Duplicate label fix.Georg Brandl2007-03-311-1/+1
|
* Markup fix.Georg Brandl2007-03-311-1/+1
|
* repair string literal.Georg Brandl2007-03-311-1/+1
|
* Markup fix.Georg Brandl2007-03-301-1/+1
|
* Duplicate label fix.Georg Brandl2007-03-301-1/+1
|
* Add item. (Oops, accidentally checked this in on my branch)Andrew M. Kuchling2007-03-301-0/+11
|
* Markup fix.Georg Brandl2007-03-301-3/+3
|
* Duplicate label fix.Georg Brandl2007-03-301-1/+0
|
* Label name fix.Georg Brandl2007-03-301-1/+1
|
* Markup fix.Georg Brandl2007-03-301-1/+1
|
* Bug #1688274: add documentation for C-level class objects.Collin Winter2007-03-301-0/+29
|
* Added the posibility to pass the timeout to FTP.connect, not only whenFacundo Batista2007-03-301-1/+7
| | | | instantiating the class. Docs and tests are updated.
* Added timout parameter to telnetlib.Telnet. Also createdFacundo Batista2007-03-291-2/+8
| | | | | test_telnetlib.py with a basic test and timeout ones. Docs are also updated.
* These are actually methods.Georg Brandl2007-03-291-6/+6
|
* Added timeout to smtplib (to SMTP and SMTP_SSL). Also createdFacundo Batista2007-03-281-2/+8
| | | | | the test_smtplib.py file, with a basic test and the timeout ones. Docs are updated too.
* Added an optional timeout to poplib.POP3. Also created aFacundo Batista2007-03-271-1/+4
| | | | | test_poplib.py file with a basic test and the timeout ones. Docs are also updated.
* Some nits.Georg Brandl2007-03-262-9/+8
|
* Added an optional timeout to FTP class. Also I started a test_ftplib.pyFacundo Batista2007-03-261-1/+4
| | | | | file to test the ftp lib (right now I included a basic test, the timeout one, and nothing else).
* Markup fix.Georg Brandl2007-03-251-4/+4
|
* Markup fix.Georg Brandl2007-03-251-2/+2
|
* Change the docs to no longer claim that unittest is preferred over doctest forBrett Cannon2007-03-251-7/+7
| | | | regression tests.
* Revert accidental change.Georg Brandl2007-03-241-1/+1
|
* Remove typo accent.Georg Brandl2007-03-241-2/+2
|
* Patch #1489771: update syntax rules in Python Reference Manual.Žiga Seilnacht2007-03-244-42/+190
| | | | | | | | Python 2.5 added support for explicit relative import statements and yield expressions, which were missing in the manual. Also fix grammar productions that used the names from the Grammar file, markup that broke the generated grammar.txt, and wrap some lines that broke the pdf output. Will backport.
* Added a 'create_connect()' function to socket.py, which creates aFacundo Batista2007-03-232-2/+21
| | | | | connection with an optional timeout, and modified httplib.py to use this function in HTTPConnection. Applies patch 1676823.
* Patch #1686451: Fix return type for PySequence_{Count,Index,Fast_GET_SIZE}.Martin v. Löwis2007-03-231-3/+3
| | | | Will backport.
* Bug #1685704: use -m switch in timeit docs.Georg Brandl2007-03-221-1/+1
|
* Minor clarification, saying that blocking means no timeout (from bug #882297)Facundo Batista2007-03-211-1/+1
|
* Put code examples at left margin instead of indenting themAndrew M. Kuchling2007-03-211-19/+19
|
* Fix sentence, and fix typo in exampleAndrew M. Kuchling2007-03-211-2/+3
|
* Add comments on maintenance of this fileAndrew M. Kuchling2007-03-211-0/+40
|
* Patch #1684834: document some utility C API functions.Georg Brandl2007-03-211-0/+91
|
* New test for rev. 54407 which only uses directories under TESTFN.Georg Brandl2007-03-211-10/+12
|
* Try backing out 54407 to see if it corrects the problems on the WindowsNeal Norwitz2007-03-201-12/+10
| | | | | buildbots. This rev was backported, so we will need to keep both branches in sync, pending the outcome of the test after this checkin.
* Add a comment about 3k migrationNeal Norwitz2007-03-201-0/+3
|
* Add some doc that was left out from some change to platform.pyNeal Norwitz2007-03-201-0/+17
|
* Patch #1630118: add a SpooledTemporaryFile class to tempfile.Collin Winter2007-03-191-0/+17
|
* Patch #1682878: the new socket methods are recv_into and recvfrom_into, not ↵Georg Brandl2007-03-182-2/+4
| | | | *_buf.
* Patch #1675423: PyComplex_AsCComplex() now tries to convert an objectGeorg Brandl2007-03-172-4/+16
| | | | | | | to complex using its __complex__() method before falling back to the __float__() method. Therefore, the functions in the cmath module now can operate on objects that define a __complex__() method. (backport)
* Patch 1339796: add a relpath() function to os.path.Collin Winter2007-03-161-0/+9
|
* Whitespace cleanup. Also remove the empty linesŽiga Seilnacht2007-03-161-41/+38
| | | | from the previous check in.
* Patch #1623563: allow __class__ assignment for classes with __slots__.Žiga Seilnacht2007-03-161-0/+8
| | | | | The old and the new class are still required to have the same slot names, but the order in which they are specified is not relevant.
* RFE #1670167: fix in isinstance() docs.Georg Brandl2007-03-161-2/+3
|
* Add \versionadded tag.Georg Brandl2007-03-161-0/+2
|
* Patch #1273829: os.walk() now has a "followlinks" parameter. If set toGeorg Brandl2007-03-161-10/+12
| | | | | True (which is not the default), it visits symlinks pointing to directories.
* Patch #1680978: consistently use "alive" instead of "active" in theGeorg Brandl2007-03-151-24/+20
| | | | thread lib doc.