cpython/Doc/lib
Guido van Rossum d59da4b432 Merged revisions 55407-55513 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

................
  r55413 | fred.drake | 2007-05-17 12:30:10 -0700 (Thu, 17 May 2007) | 1 line

  fix argument name in documentation; match the implementation
................
  r55430 | jack.diederich | 2007-05-18 06:39:59 -0700 (Fri, 18 May 2007) | 1 line

  Implements class decorators, PEP 3129.
................
  r55432 | guido.van.rossum | 2007-05-18 08:09:41 -0700 (Fri, 18 May 2007) | 2 lines

  obsubmit.
................
  r55434 | guido.van.rossum | 2007-05-18 09:39:10 -0700 (Fri, 18 May 2007) | 3 lines

  Fix bug in test_inspect.  (I presume this is how it should be fixed;
  Jack Diedrich, please verify.)
................
  r55460 | brett.cannon | 2007-05-20 00:31:57 -0700 (Sun, 20 May 2007) | 4 lines

  Remove the imageop module.  With imgfile already removed in Python 3.0 and
  rgbimg gone in Python 2.6 the unit tests themselves were made worthless.  Plus
  third-party libraries perform the same function much better.
................
  r55469 | neal.norwitz | 2007-05-20 11:28:20 -0700 (Sun, 20 May 2007) | 118 lines

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

  ........
    r55348 | georg.brandl | 2007-05-15 13:19:34 -0700 (Tue, 15 May 2007) | 4 lines

    HTML-escape the plain traceback in cgitb's HTML output, to prevent
    the traceback inadvertently or maliciously closing the comment and
    injecting HTML into the error page.
  ........
    r55372 | neal.norwitz | 2007-05-15 21:33:50 -0700 (Tue, 15 May 2007) | 6 lines

    Port rev 55353 from Guido:
    Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC()
    fails.

    Will backport.
  ........
    r55377 | neal.norwitz | 2007-05-15 22:06:33 -0700 (Tue, 15 May 2007) | 1 line

    Mention removal of some directories for obsolete platforms
  ........
    r55380 | brett.cannon | 2007-05-15 22:50:03 -0700 (Tue, 15 May 2007) | 2 lines

    Change the maintainer of the BeOS port.
  ........
    r55383 | georg.brandl | 2007-05-16 06:44:18 -0700 (Wed, 16 May 2007) | 2 lines

    Bug #1719995: don't use deprecated method in sets example.
  ........
    r55386 | neal.norwitz | 2007-05-16 13:05:11 -0700 (Wed, 16 May 2007) | 5 lines

    Fix bug in marshal where bad data would cause a segfault due to
    lack of an infinite recursion check.

    Contributed by Damien Miller at Google.
  ........
    r55389 | brett.cannon | 2007-05-16 15:42:29 -0700 (Wed, 16 May 2007) | 6 lines

    Remove the gopherlib module.  It has been raising a DeprecationWarning since
    Python 2.5.

    Also remove gopher support from urllib/urllib2.  As both imported gopherlib the
    usage of the support would have raised a DeprecationWarning.
  ........
    r55394 | raymond.hettinger | 2007-05-16 18:08:04 -0700 (Wed, 16 May 2007) | 1 line

    calendar.py gets no benefit from xrange() instead of range()
  ........
    r55395 | brett.cannon | 2007-05-16 19:02:56 -0700 (Wed, 16 May 2007) | 3 lines

    Complete deprecation of BaseException.message.  Some subclasses were directly
    accessing the message attribute instead of using the descriptor.
  ........
    r55396 | neal.norwitz | 2007-05-16 23:11:36 -0700 (Wed, 16 May 2007) | 4 lines

    Reduce the max stack depth to see if this fixes the segfaults on
    Windows and some other boxes.  If this is successful, this rev should
    be backported.  I'm not sure how close to the limit we should push this.
  ........
    r55397 | neal.norwitz | 2007-05-16 23:23:50 -0700 (Wed, 16 May 2007) | 4 lines

    Set the depth to something very small to try to determine if the
    crashes on Windows are really due to the stack size or possibly
    some other problem.
  ........
    r55398 | neal.norwitz | 2007-05-17 00:04:46 -0700 (Thu, 17 May 2007) | 4 lines

    Last try for tweaking the max stack depth.  5000 was the original value,
    4000 didn't work either.  1000 does work on Windows.  If 2000 works,
    that will hopefully be a reasonable balance.
  ........
    r55412 | fred.drake | 2007-05-17 12:29:58 -0700 (Thu, 17 May 2007) | 1 line

    fix argument name in documentation; match the implementation
  ........
    r55427 | neal.norwitz | 2007-05-17 22:47:16 -0700 (Thu, 17 May 2007) | 1 line

    Verify neither dumps or loads overflow the stack and segfault.
  ........
    r55446 | collin.winter | 2007-05-18 16:11:24 -0700 (Fri, 18 May 2007) | 1 line

    Backport PEP 3110's new 'except' syntax to 2.6.
  ........
    r55448 | raymond.hettinger | 2007-05-18 18:11:16 -0700 (Fri, 18 May 2007) | 1 line

    Improvements to NamedTuple's implementation, tests, and documentation
  ........
    r55449 | raymond.hettinger | 2007-05-18 18:50:11 -0700 (Fri, 18 May 2007) | 1 line

    Fix beginner mistake -- don't mix spaces and tabs.
  ........
    r55450 | neal.norwitz | 2007-05-18 20:48:47 -0700 (Fri, 18 May 2007) | 1 line

    Clear data so random memory does not get freed.  Will backport.
  ........
    r55452 | neal.norwitz | 2007-05-18 21:34:55 -0700 (Fri, 18 May 2007) | 3 lines

    Whoops, need to pay attention to those test failures.
    Move the clear to *before* the first use, not after.
  ........
    r55453 | neal.norwitz | 2007-05-18 21:35:52 -0700 (Fri, 18 May 2007) | 1 line

    Give some clue as to what happened if the test fails.
  ........
    r55455 | georg.brandl | 2007-05-19 11:09:26 -0700 (Sat, 19 May 2007) | 2 lines

    Fix docstring for add_package in site.py.
  ........
    r55458 | brett.cannon | 2007-05-20 00:09:50 -0700 (Sun, 20 May 2007) | 2 lines

    Remove the rgbimg module.  It has been deprecated since Python 2.5.
  ........
    r55465 | nick.coghlan | 2007-05-20 04:12:49 -0700 (Sun, 20 May 2007) | 1 line

    Fix typo in example (should be backported, but my maintenance branch is woefully out of date)
  ........
................
  r55472 | brett.cannon | 2007-05-20 12:06:18 -0700 (Sun, 20 May 2007) | 2 lines

  Remove imageop from the Windows build process.
................
  r55486 | neal.norwitz | 2007-05-20 23:59:52 -0700 (Sun, 20 May 2007) | 1 line

  Remove callable() builtin
................
  r55506 | neal.norwitz | 2007-05-22 00:43:29 -0700 (Tue, 22 May 2007) | 78 lines

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

  ........
    r55468 | neal.norwitz | 2007-05-20 11:06:27 -0700 (Sun, 20 May 2007) | 1 line

    rotor is long gone.
  ........
    r55470 | neal.norwitz | 2007-05-20 11:43:00 -0700 (Sun, 20 May 2007) | 1 line

    Update directories/files at the top-level.
  ........
    r55471 | brett.cannon | 2007-05-20 12:05:06 -0700 (Sun, 20 May 2007) | 2 lines

    Try to remove rgbimg from Windows builds.
  ........
    r55474 | brett.cannon | 2007-05-20 16:17:38 -0700 (Sun, 20 May 2007) | 4 lines

    Remove the macfs module.  This led to the deprecation of macostools.touched();
    it completely relied on macfs and is a no-op on OS X according to code
    comments.
  ........
    r55476 | brett.cannon | 2007-05-20 16:56:18 -0700 (Sun, 20 May 2007) | 3 lines

    Move imgfile import to the global namespace to trigger an import error ASAP to
    prevent creation of a test file.
  ........
    r55477 | brett.cannon | 2007-05-20 16:57:38 -0700 (Sun, 20 May 2007) | 3 lines

    Cause posixfile to raise a DeprecationWarning.  Documented as deprecated since
    Ptyhon 1.5.
  ........
    r55479 | andrew.kuchling | 2007-05-20 17:03:15 -0700 (Sun, 20 May 2007) | 1 line

    Note removed modules
  ........
    r55481 | martin.v.loewis | 2007-05-20 21:35:47 -0700 (Sun, 20 May 2007) | 2 lines

    Add Alexandre Vassalotti.
  ........
    r55482 | george.yoshida | 2007-05-20 21:41:21 -0700 (Sun, 20 May 2007) | 4 lines

    fix against r55474 [Remove the macfs module]

    Remove "libmacfs.tex" from Makefile.deps and mac/mac.tex.
  ........
    r55487 | raymond.hettinger | 2007-05-21 01:13:35 -0700 (Mon, 21 May 2007) | 1 line

    Replace assertion with straight error-checking.
  ........
    r55489 | raymond.hettinger | 2007-05-21 09:40:10 -0700 (Mon, 21 May 2007) | 1 line

    Allow all alphanumeric and underscores in type and field names.
  ........
    r55490 | facundo.batista | 2007-05-21 10:32:32 -0700 (Mon, 21 May 2007) | 5 lines


    Added timeout support to HTTPSConnection, through the
    socket.create_connection function. Also added a small
    test for this, and updated NEWS file.
  ........
    r55495 | georg.brandl | 2007-05-21 13:34:16 -0700 (Mon, 21 May 2007) | 2 lines

    Patch #1686487: you can now pass any mapping after '**' in function calls.
  ........
    r55502 | neal.norwitz | 2007-05-21 23:03:36 -0700 (Mon, 21 May 2007) | 1 line

    Document new params to HTTPSConnection
  ........
    r55504 | neal.norwitz | 2007-05-22 00:16:10 -0700 (Tue, 22 May 2007) | 1 line

    Stop using METH_OLDARGS
  ........
    r55505 | neal.norwitz | 2007-05-22 00:16:44 -0700 (Tue, 22 May 2007) | 1 line

    Stop using METH_OLDARGS implicitly
  ........
................
2007-05-22 18:11:13 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 55407-55513 via svnmerge from 2007-05-22 18:11:13 +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 Fix typos: despatcher -> dispatcher. 2002-09-17 15:19:12 +00:00
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 Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +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 Added description of binhex.Error. 2002-03-25 16:37:56 +00:00
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 Merged revisions 55225-55227,55229-55269 via svnmerge from 2007-05-11 16:50:42 +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 Update docs for bool changes by Guido around April 6 2002-04-09 18:15:00 +00:00
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 Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 - fix use of \refmodule markup 2002-12-30 23:00:36 +00:00
libdummythreading.tex - fix use of \refmodule markup 2002-12-30 23:00:36 +00:00
liberrno.tex
libetree.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libexcs.tex Merged revisions 55325-55327 via svnmerge from 2007-05-14 22:51:27 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libfuncs.tex Merged revisions 55407-55513 via svnmerge from 2007-05-22 18:11:13 +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 Remove mention of deprecated xreadlines method. 2002-08-06 17:03:25 +00:00
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 55407-55513 via svnmerge from 2007-05-22 18:11:13 +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 Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +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 55328-55341 via svnmerge from 2007-05-15 18:46:22 +00:00
libkeyword.tex Add keyword.kwlist to the public API. 2002-01-24 16:38:53 +00:00
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 55325-55327 via svnmerge from 2007-05-14 22:51:27 +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
libmimewriter.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libmimify.tex Add deprecation notices to the documentation to reflect recent additions to 2002-09-25 22:13:27 +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 Patch #1422385: Changes to nis module to support multiple NIS domains 2006-02-04 19:12:37 +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 Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libposix.tex Clean up some markup cruft. A number of the macros that take no 2001-11-28 07:26:15 +00:00
libposixfile.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
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 Add missing right-parenthesis. 2002-05-01 03:23:03 +00:00
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 Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +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 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libshutil.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsignal.tex Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 2006-04-21 10:40:58 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsndhdr.tex
libsocket.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 Add reference to the "String Methods" section to make that information 2001-12-02 15:10:46 +00:00
libstruct.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
libsubprocess.tex Merged revisions 55328-55341 via svnmerge from 2007-05-15 18:46:22 +00:00
libsun.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsunau.tex
libsunaudio.tex
libsymbol.tex
libsys.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libsyslog.tex
libtabnanny.tex use consistent email address for Tim 2003-12-30 16:15:35 +00:00
libtarfile.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libtelnetlib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libtime.tex Merged revisions 53451-53537 via svnmerge from 2007-02-01 18:02:27 +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 55007-55179 via svnmerge from 2007-05-07 22:24:25 +00:00
libundoc.tex Merged revisions 55225-55227,55229-55269 via svnmerge from 2007-05-11 16:50:42 +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 55407-55513 via svnmerge from 2007-05-22 18:11:13 +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
libweakref.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libwebbrowser.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libwhichdb.tex
libwinreg.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libzipfile.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libzipimport.tex Merged revisions 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
libzlib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
markup.tex Point to the PyXML package as an extended version of the "xml" package 2002-10-23 20:58:32 +00:00
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 SF #642236, optparse LaTeX docs by Johannes Gijsbers 2003-01-06 16:51:37 +00:00
tkinter.tex Four months of trunk changes (including a few releases...) 2006-12-13 04:49:30 +00:00
tzinfo-examples.py "Premature" doc changes, for new astimezone() rules, and the new 2003-01-22 04:45:50 +00:00
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 Change email address. 2003-04-18 22:04:34 +00:00
xmlsaxhandler.tex Bug #1397205: doc typo 2006-01-10 21:37:26 +00:00
xmlsaxreader.tex Change email address. 2003-04-18 22:04:34 +00:00
xmlsaxutils.tex fix various typos; thanks, George Yoshida! 2004-05-12 03:07:27 +00:00