cpython/Doc/lib
Guido van Rossum 806c2469cb Merged revisions 56753-56781 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

................
  r56760 | neal.norwitz | 2007-08-05 18:55:39 -0700 (Sun, 05 Aug 2007) | 178 lines

  Merged revisions 56477-56759 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r56485 | facundo.batista | 2007-07-21 17:13:00 -0700 (Sat, 21 Jul 2007) | 5 lines


    Selectively enable tests for asyncore.readwrite based on the presence
    of poll support in the select module (since this is the only case in
    which readwrite can be called). [GSoC - Alan McIntyre]
  ........
    r56488 | nick.coghlan | 2007-07-22 03:18:07 -0700 (Sun, 22 Jul 2007) | 1 line

    Add explicit relative import tests for runpy.run_module
  ........
    r56509 | nick.coghlan | 2007-07-23 06:41:45 -0700 (Mon, 23 Jul 2007) | 5 lines

    Correctly cleanup sys.modules after executing runpy relative import
    tests
    Restore Python 2.4 ImportError when attempting to execute a package
    (as imports cannot be guaranteed to work properly if you try it)
  ........
    r56519 | nick.coghlan | 2007-07-24 06:07:38 -0700 (Tue, 24 Jul 2007) | 1 line

    Tweak runpy test to do a better job of confirming that sys has been manipulated correctly
  ........
    r56520 | nick.coghlan | 2007-07-24 06:58:28 -0700 (Tue, 24 Jul 2007) | 1 line

    Fix an incompatibility between the -i and -m command line switches as reported on python-dev by PJE - runpy.run_module now leaves any changes it makes to the sys module intact after the function terminates
  ........
    r56523 | nick.coghlan | 2007-07-24 07:39:23 -0700 (Tue, 24 Jul 2007) | 1 line

    Try to get rid of spurious failure in test_resource on the Debian buildbots by changing the file size limit before attempting to close the file
  ........
    r56533 | facundo.batista | 2007-07-24 14:20:42 -0700 (Tue, 24 Jul 2007) | 7 lines


    New tests for basic behavior of smtplib.SMTP and
    smtpd.DebuggingServer. Change to use global host & port number
    variables. Modified the 'server' to take a string to send back in
    order to vary test server responses. Added a test for the reaction of
    smtplib.SMTP to a non-200 HELO response. [GSoC - Alan McIntyre]
  ........
    r56538 | nick.coghlan | 2007-07-25 05:57:48 -0700 (Wed, 25 Jul 2007) | 1 line

    More buildbot cleanup - let the OS assign the port for test_urllib2_localnet
  ........
    r56539 | nick.coghlan | 2007-07-25 06:18:58 -0700 (Wed, 25 Jul 2007) | 1 line

    Add a temporary diagnostic message before a strange failure on the alpha Debian buildbot
  ........
    r56543 | martin.v.loewis | 2007-07-25 09:24:23 -0700 (Wed, 25 Jul 2007) | 2 lines

    Change location of the package index to pypi.python.org/pypi
  ........
    r56551 | georg.brandl | 2007-07-26 02:36:25 -0700 (Thu, 26 Jul 2007) | 2 lines

    tabs, newlines and crs are valid XML characters.
  ........
    r56553 | nick.coghlan | 2007-07-26 07:03:00 -0700 (Thu, 26 Jul 2007) | 1 line

    Add explicit test for a misbehaving math.floor
  ........
    r56561 | mark.hammond | 2007-07-26 21:52:32 -0700 (Thu, 26 Jul 2007) | 3 lines

    In consultation with Kristjan Jonsson, only define WINVER and _WINNT_WIN32
    if (a) we are building Python itself and (b) no one previously defined them
  ........
    r56562 | mark.hammond | 2007-07-26 22:08:54 -0700 (Thu, 26 Jul 2007) | 2 lines

    Correctly detect AMD64 architecture on VC2003
  ........
    r56566 | nick.coghlan | 2007-07-27 03:36:30 -0700 (Fri, 27 Jul 2007) | 1 line

    Make test_math error messages more meaningful for small discrepancies in results
  ........
    r56588 | martin.v.loewis | 2007-07-27 11:28:22 -0700 (Fri, 27 Jul 2007) | 2 lines

    Bug #978833: Close https sockets by releasing the _ssl object.
  ........
    r56601 | martin.v.loewis | 2007-07-28 00:03:05 -0700 (Sat, 28 Jul 2007) | 3 lines

    Bug #1704793: Return UTF-16 pair if unicodedata.lookup cannot
    represent the result in a single character.
  ........
    r56604 | facundo.batista | 2007-07-28 07:21:22 -0700 (Sat, 28 Jul 2007) | 9 lines


    Moved all of the capture_server socket setup code into the try block
    so that the event gets set if a failure occurs during server setup
    (otherwise the test will block forever).  Changed to let the OS assign
    the server port number, and client side of test waits for port number
    assignment before proceeding. The test data in DispatcherWithSendTests
    is also sent in multiple send() calls instead of one to make sure this
    works properly. [GSoC - Alan McIntyre]
  ........
    r56611 | georg.brandl | 2007-07-29 01:26:10 -0700 (Sun, 29 Jul 2007) | 2 lines

    Clarify PEP 343 description.
  ........
    r56614 | georg.brandl | 2007-07-29 02:11:15 -0700 (Sun, 29 Jul 2007) | 2 lines

    try-except-finally is new in 2.5.
  ........
    r56617 | facundo.batista | 2007-07-29 07:23:08 -0700 (Sun, 29 Jul 2007) | 9 lines


    Added tests for asynchat classes simple_producer & fifo, and the
    find_prefix_at_end function. Check behavior of a string given as a
    producer.  Added tests for behavior of asynchat.async_chat when given
    int, long, and None terminator arguments. Added usepoll attribute to
    TestAsynchat to allow running the asynchat tests with poll support
    chosen whether it's available or not (improves coverage of asyncore
    code). [GSoC - Alan McIntyre]
  ........
    r56620 | georg.brandl | 2007-07-29 10:38:35 -0700 (Sun, 29 Jul 2007) | 2 lines

    Bug #1763149: use proper slice syntax in docstring.
     (backport)
  ........
    r56624 | mark.hammond | 2007-07-29 17:45:29 -0700 (Sun, 29 Jul 2007) | 4 lines

    Correct use of Py_BUILD_CORE - now make sure it is defined before it is
    referenced, and also fix definition of _WIN32_WINNT.
    Resolves patch 1761803.
  ........
    r56632 | facundo.batista | 2007-07-30 20:03:34 -0700 (Mon, 30 Jul 2007) | 8 lines


    When running asynchat tests on OS X (darwin), the test client now
    overrides asyncore.dispatcher.handle_expt to do nothing, since
    select.poll gives a POLLHUP error at the completion of these tests.
    Added timeout & count arguments to several asyncore.loop calls to
    avoid the possibility of a test hanging up a build. [GSoC - Alan
    McIntyre]
  ........
    r56633 | nick.coghlan | 2007-07-31 06:38:01 -0700 (Tue, 31 Jul 2007) | 1 line

    Eliminate RLock race condition reported in SF bug #1764059
  ........
    r56636 | martin.v.loewis | 2007-07-31 12:57:56 -0700 (Tue, 31 Jul 2007) | 2 lines

    Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+.
  ........
    r56653 | facundo.batista | 2007-08-01 16:18:36 -0700 (Wed, 01 Aug 2007) | 9 lines


    Allow the OS to select a free port for each test server. For
    DebuggingServerTests, construct SMTP objects with a localhost argument
    to avoid abysmally long FQDN lookups (not relevant to items under
    test) on some machines that would cause the test to fail. Moved server
    setup code in the server function inside the try block to avoid the
    possibility of setup failure hanging the test.  Minor edits to conform
    to PEP 8. [GSoC - Alan McIntyre]
  ........
    r56681 | matthias.klose | 2007-08-02 14:33:13 -0700 (Thu, 02 Aug 2007) | 2 lines

    - Allow Emacs 22 for building the documentation in info format.
  ........
    r56689 | neal.norwitz | 2007-08-02 23:46:29 -0700 (Thu, 02 Aug 2007) | 1 line

    Py_ssize_t is defined regardless of HAVE_LONG_LONG.  Will backport
  ........
    r56727 | hyeshik.chang | 2007-08-03 21:10:18 -0700 (Fri, 03 Aug 2007) | 3 lines

    Fix gb18030 codec's bug that doesn't map two-byte characters on
    GB18030 extension in encoding. (bug reported by Bjorn Stabell)
  ........
    r56751 | neal.norwitz | 2007-08-04 20:23:31 -0700 (Sat, 04 Aug 2007) | 7 lines

    Handle errors when generating a warning.
    The value is always written to the returned pointer if getting it was
    successful, even if a warning causes an error. (This probably doesn't matter
    as the caller will probably discard the value.)

    Will backport.
  ........
................
2007-08-06 23:33:07 +00:00
..
sqlite3 PEP 3114: rename .next() to .__next__() and add next() builtin. 2007-04-21 15:47:16 +00:00
archiving.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
asttable.tex Get rid of some more cases of backquotes. parsermodule.c doesn't compile 2006-08-29 04:40:24 +00:00
caseless.py Whitespace normalization, via reindent.py. 2004-07-18 06:25:50 +00:00
custominterp.tex Add more chapter intros 2005-12-22 20:27:43 +00:00
datatypes.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
development.tex Add more chapter intros 2005-12-22 20:27:43 +00:00
distutils.tex fix typo 2004-03-25 16:14:17 +00:00
email-dir.py Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
email-mime.py Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
email-simple.py Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
email-unpack.py SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +00:00
email.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
emailcharsets.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailencoders.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailexc.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailgenerator.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
emailheaders.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailiter.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailmessage.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailmimebase.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailparser.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
emailutil.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
fileformats.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
filesys.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
frameworks.tex Add more chapter intros 2005-12-22 20:27:43 +00:00
i18n.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
internet.tex
ipc.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
language.tex Typo fix 2005-12-22 18:55:43 +00:00
lib.tex Merged revisions 56492-56752 via svnmerge from 2007-08-05 15:29:28 +00:00
libaifc.tex
liballos.tex
libanydbm.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libarray.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
libascii.tex
libast.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
libasynchat.tex
libasyncore.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libatexit.tex Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. 2007-03-21 02:57:17 +00:00
libaudioop.tex Merged revisions 56492-56752 via svnmerge from 2007-08-05 15:29:28 +00:00
libbase64.tex fix some markup errors 2007-04-26 04:43:39 +00:00
libbasehttp.tex Patch #1417555: SimpleHTTPServer now returns Last-Modified headers. 2006-02-17 13:34:16 +00:00
libbinascii.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libbinhex.tex
libbisect.tex * Move collections.deque() in from the sandbox 2004-01-29 06:37:52 +00:00
libbltin.tex discuss how the __builtin__ module is normally used, and try to clarify the 2004-12-23 16:50:36 +00:00
libbsddb.tex Make bsddb use bytes as keys and values. Add StringKeys 2007-08-05 15:39:16 +00:00
libbz2.tex Merged revisions 53005-53303 via svnmerge from 2007-01-09 23:18:33 +00:00
libcalendar.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
libcfgparser.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcgi.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
libcgihttp.tex SF patch #1055159 via Titus Brown: Document redirect limitation. 2004-12-22 14:19:09 +00:00
libcgitb.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libchunk.tex
libcmath.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcmd.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcmp.tex
libcmpcache.tex
libcode.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcodecs.tex Rip out all codecs that can't work in a unicode/bytes world: 2007-06-12 16:40:17 +00:00
libcodeop.tex Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
libcollections.tex Merged revisions 55407-55513 via svnmerge from 2007-05-22 18:11:13 +00:00
libcolorsys.tex Fix broken link (closes bug #852236). Thanks to Fedor Baart for bug file and 2003-12-11 04:37:24 +00:00
libcommands.tex Merged revisions 55225-55227,55229-55269 via svnmerge from 2007-05-11 16:50:42 +00:00
libcompileall.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libconsts.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcontextlib.tex Merged revisions 55407-55513 via svnmerge from 2007-05-22 18:11:13 +00:00
libcookie.tex Correct typos and markup errors (Raymond, thanks for texcheck) 2006-01-23 21:33:03 +00:00
libcookielib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcopy.tex - Patch 1433928: 2006-02-25 22:38:04 +00:00
libcopyreg.tex work around whitespace bugs in the HTML version 2003-12-30 22:17:16 +00:00
libcrypt.tex Get rid of a bunch more raw_input references 2006-03-17 06:49:51 +00:00
libcrypto.tex Update text 2005-12-22 19:38:57 +00:00
libcsv.tex PEP 3114: rename .next() to .__next__() and add next() builtin. 2007-04-21 15:47:16 +00:00
libctypes.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libcurses.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libcursespanel.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libdatetime.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libdbhash.tex Merged revisions 55007-55179 via svnmerge from 2007-05-07 22:24:25 +00:00
libdbm.tex
libdecimal.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libdifflib.tex Merged revisions 55325-55327 via svnmerge from 2007-05-14 22:51:27 +00:00
libdircache.tex describe reset() 2005-01-05 07:03:53 +00:00
libdis.tex PEP 3114: rename .next() to .__next__() and add next() builtin. 2007-04-21 15:47:16 +00:00
libdl.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libdoctest.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libdocxmlrpc.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libdumbdbm.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libdummythread.tex
libdummythreading.tex
liberrno.tex
libetree.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libexcs.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libfcntl.tex Tweak note about using os.open to lock files if O_SHLOCK and O_EXLOCK are 2005-06-08 02:28:11 +00:00
libfilecmp.tex SF Patch #1093896: miscellaneous doc typos 2005-01-01 00:28:46 +00:00
libfileinput.tex Fix typpo. 2006-02-19 20:08:18 +00:00
libfnmatch.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libformatter.tex
libfpectl.tex Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
libfpformat.tex
libftplib.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libfuncs.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libfunctools.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
libfuture.tex Typo 2006-01-22 16:11:01 +00:00
libgc.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
libgdbm.tex SF Patch #1093896: miscellaneous doc typos 2005-01-01 00:28:46 +00:00
libgetopt.tex SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +00:00
libgetpass.tex Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
libgettext.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libglob.tex Patch #943206: 2005-01-08 13:13:19 +00:00
libgrp.tex patch [ 1274630 ] documentation fixes 2005-08-27 17:04:58 +00:00
libgzip.tex
libhashlib.tex Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
libheapq.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
libhmac.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libhotshot.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libhtmllib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libhtmlparser.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libhttplib.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libimaplib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libimghdr.tex SF #75103: imghdr -- identify JPEGs in EXIF format 2005-01-07 08:15:41 +00:00
libimp.tex Merged revisions 55631-55794 via svnmerge from 2007-06-06 23:52:48 +00:00
libinspect.tex Change all the function attributes from func_* -> __*__. This gets rid 2007-02-25 20:55:47 +00:00
libintro.tex
libitertools.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
libkeyword.tex
liblinecache.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
liblocale.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
liblogging.tex Merged revisions 55631-55794 via svnmerge from 2007-06-06 23:52:48 +00:00
libmailbox.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmailcap.tex
libmain.tex
libmarshal.tex Missed this documentation change about my marshal-floats-binarywise 2005-06-15 11:38:01 +00:00
libmath.tex Explain that most floats are actually integers. This is a common confusion 2004-07-26 05:12:01 +00:00
libmhlib.tex
libmimetools.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmimetypes.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmisc.tex
libmm.tex
libmmap.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmodulefinder.tex added a few missing \versionadded{2.3} tags 2006-01-11 00:14:29 +00:00
libmsilib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmsvcrt.tex minor markup adjustment 2003-12-18 20:58:34 +00:00
libmultifile.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmutex.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libnetrc.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libnew.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libni.tex
libnis.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
libnntplib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libobjs.tex fix weird capitalization of "built-in" 2004-12-23 16:22:45 +00:00
liboperator.tex - patch #1600346 submitted by Tomer Filiba 2006-11-28 19:15:13 +00:00
liboptparse.tex Merged revisions 55407-55513 via svnmerge from 2007-05-22 18:11:13 +00:00
libos.tex Merged revisions 55328-55341 via svnmerge from 2007-05-15 18:46:22 +00:00
libossaudiodev.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libparser.tex Patch #1550800: make exec a function. 2006-09-06 06:51:57 +00:00
libpdb.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libpickle.tex Merged revisions 55631-55794 via svnmerge from 2007-06-06 23:52:48 +00:00
libpickletools.tex added a few missing \versionadded{2.3} tags 2006-01-11 00:14:29 +00:00
libpipes.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libpkgutil.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libplatform.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libpoplib.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libposix.tex
libposixpath.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libpprint.tex Merged revisions 55325-55327 via svnmerge from 2007-05-14 22:51:27 +00:00
libprofile.tex Patch #1550800: make exec a function. 2006-09-06 06:51:57 +00:00
libpty.tex
libpwd.tex Improve (?) description of system dependence of access to the pw_passwd 2005-03-02 04:29:23 +00:00
libpyclbr.tex fix typo in markup 2003-11-10 14:50:54 +00:00
libpycompile.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
libpydoc.tex mention new module doc display feature of pydoc in libref and NEWS 2003-09-10 19:04:13 +00:00
libpyexpat.tex SF patch# 1759016 by Joe Gregorio, who writes: 2007-07-23 17:42:32 +00:00
libpython.tex
libqueue.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libquopri.tex
librandom.tex Merged revisions 55007-55179 via svnmerge from 2007-05-07 22:24:25 +00:00
libre.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libreadline.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
librepr.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libresource.tex SF Patch #1093896: miscellaneous doc typos 2005-01-01 00:28:46 +00:00
librfc822.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
librlcompleter.tex Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
librobotparser.tex update norobots link 2003-07-14 17:04:50 +00:00
librunpy.tex Merged revisions 56753-56781 via svnmerge from 2007-08-06 23:33:07 +00:00
libsched.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libselect.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsgmllib.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libshelve.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libshlex.tex Merged revisions 56020-56124 via svnmerge from 2007-06-30 05:01:58 +00:00
libshutil.tex Merged revisions 56020-56124 via svnmerge from 2007-06-30 05:01:58 +00:00
libsignal.tex Merged revisions 56154-56264 via svnmerge from 2007-07-11 13:09:30 +00:00
libsimplehttp.tex Patch #1417555: SimpleHTTPServer now returns Last-Modified headers. 2006-02-17 13:34:16 +00:00
libsimplexmlrpc.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsite.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsmtpd.tex Added documentation for the "smtpd" module. 2004-07-11 16:25:25 +00:00
libsmtplib.tex Merged revisions 56154-56264 via svnmerge from 2007-07-11 13:09:30 +00:00
libsndhdr.tex
libsocket.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libsocksvr.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libsomeos.tex
libspwd.tex patch [ 1274630 ] documentation fixes 2005-08-27 17:04:58 +00:00
libsqlite3.tex Merged revisions 55962-56019 via svnmerge from 2007-06-18 17:58:50 +00:00
libstat.tex fix various descriptions of "ctime" 2004-05-12 03:51:40 +00:00
libstatvfs.tex
libstdtypes.tex Merged revisions 55007-55179 via svnmerge from 2007-05-07 22:24:25 +00:00
libstring.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libstringio.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libstringprep.tex added a few missing \versionadded{2.3} tags 2006-01-11 00:14:29 +00:00
libstrings.tex
libstruct.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
libsubprocess.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
libsunau.tex
libsymbol.tex
libsys.tex Merged revisions 55631-55794 via svnmerge from 2007-06-06 23:52:48 +00:00
libsyslog.tex
libtabnanny.tex use consistent email address for Tim 2003-12-30 16:15:35 +00:00
libtarfile.tex Merged revisions 56020-56124 via svnmerge from 2007-06-30 05:01:58 +00:00
libtelnetlib.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libtempfile.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libtermios.tex Get rid of a bunch more raw_input references 2006-03-17 06:49:51 +00:00
libtest.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libtextwrap.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libthread.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libthreading.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
libtime.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
libtimeit.tex Merged revisions 55007-55179 via svnmerge from 2007-05-07 22:24:25 +00:00
libtoken.tex
libtokenize.tex Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
libtrace.tex Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
libtraceback.tex Patch #1550800: make exec a function. 2006-09-06 06:51:57 +00:00
libtty.tex Use correct constant; remove reference to TERMIOS.py 2004-08-31 13:05:36 +00:00
libturtle.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libtypes.tex Merged revisions 55631-55794 via svnmerge from 2007-06-06 23:52:48 +00:00
libundoc.tex Merged revisions 56492-56752 via svnmerge from 2007-08-05 15:29:28 +00:00
libunicodedata.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libunittest.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libunix.tex
liburllib.tex Merged revisions 55407-55513 via svnmerge from 2007-05-22 18:11:13 +00:00
liburllib2.tex Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
liburlparse.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libuser.tex minor cleanup of example 2003-12-30 23:01:19 +00:00
libuserdict.tex bug [ 1166582 ] IterableUserDict not in docs 2005-06-25 21:03:52 +00:00
libuu.tex minor edits: 2005-03-03 17:25:04 +00:00
libuuid.tex Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
libwarnings.tex Merge current trunk into p3yk. This includes the PyNumber_Index API change, 2006-08-21 19:07:27 +00:00
libwave.tex Merged revisions 56443-56466 via svnmerge from 2007-07-20 04:05:57 +00:00
libweakref.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libwebbrowser.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
libwhichdb.tex
libwinreg.tex Merged revisions 56020-56124 via svnmerge from 2007-06-30 05:01:58 +00:00
libwinsound.tex remove out-of-date count of the functions in winsound 2004-04-28 03:57:47 +00:00
libwsgiref.tex Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
libxdrlib.tex SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +00:00
libxmlrpclib.tex Merged revisions 56753-56781 via svnmerge from 2007-08-06 23:33:07 +00:00
libzipfile.tex Merged revisions 56301-56442 via svnmerge from 2007-07-18 18:15:48 +00:00
libzipimport.tex Merged revisions 55631-55794 via svnmerge from 2007-06-06 23:52:48 +00:00
libzlib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
markup.tex
mimelib.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
minidom-example.py Whitespace normalization, via reindent.py. 2004-07-18 06:25:50 +00:00
modules.tex Add more chapter intros 2005-12-22 20:27:43 +00:00
netdata.tex
numeric.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
persistence.tex Add some chapter introductions (not linked into the LibRef yet) 2005-12-22 20:12:39 +00:00
required_1.py Whitespace normalization, via reindent.py. 2004-07-18 06:25:50 +00:00
required_2.py
tkinter.tex Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
tzinfo-examples.py
windows.tex
xmldom.tex Patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown: 2005-01-09 00:36:53 +00:00
xmldomminidom.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +00:00
xmldompulldom.tex typo 2006-01-09 22:01:18 +00:00
xmletree.tex r1076@spiff: Fredrik | 2005-12-12 22:32:28 +0100 2005-12-12 21:59:44 +00:00
xmlsax.tex
xmlsaxhandler.tex Bug #1397205: doc typo 2006-01-10 21:37:26 +00:00
xmlsaxreader.tex
xmlsaxutils.tex fix various typos; thanks, George Yoshida! 2004-05-12 03:07:27 +00:00