cpython/Doc/lib
Guido van Rossum 360e4b8fb1 Merged revisions 55325-55327 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

................
  r55326 | guido.van.rossum | 2007-05-14 15:07:35 -0700 (Mon, 14 May 2007) | 2 lines

  Don't use err.message, use err.args[0].
................
  r55327 | guido.van.rossum | 2007-05-14 15:11:37 -0700 (Mon, 14 May 2007) | 259 lines

  Merged revisions 54988-55226,55228-55323 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r54995 | neal.norwitz | 2007-04-26 23:45:32 -0700 (Thu, 26 Apr 2007) | 3 lines

    This gets the test working on Solaris.  It seems a little hokey to me,
    but the test passed on Linux and Solaris, hopefully other platforms too.
  ........
    r55002 | georg.brandl | 2007-04-27 12:20:00 -0700 (Fri, 27 Apr 2007) | 2 lines

    Version fix (bug #1708710)
  ........
    r55021 | neal.norwitz | 2007-04-29 16:53:24 -0700 (Sun, 29 Apr 2007) | 1 line

    There really are some tests that are problematic.
  ........
    r55024 | kristjan.jonsson | 2007-04-30 08:17:46 -0700 (Mon, 30 Apr 2007) | 1 line

    Complete revamp of PCBuild8 directory.  Use subdirectories for each project under the main pcbuild solution.  Now make extensive use of property sheets to simplify project configuration. x64 build fully supported, and the process for building PGO version (Profiler Guided Optimization) simplified. All projects are now present, except _ssl, which needs to be reimplemented.  Also, some of the projects that require external libraries need extra work to fully compile on x64.
  ........
    r55025 | thomas.heller | 2007-04-30 08:44:17 -0700 (Mon, 30 Apr 2007) | 4 lines

    Make sure to call PyErr_NoMemory() in several places where
    PyMem_Malloc() could potentially fail.

    Will backport to the release25-maint branch.
  ........
    r55027 | thomas.heller | 2007-04-30 09:04:57 -0700 (Mon, 30 Apr 2007) | 8 lines

    When accessing the .value attribute of a c_wchar_p instance, and the
    instance does not point to a valid wchar_t zero-terminated string,
    raise a ValueError.  c_char_p does this already.

    The ValueError message now contains the correct pointer address.

    Will backport to release25-maint.
  ........
    r55036 | georg.brandl | 2007-04-30 23:04:11 -0700 (Mon, 30 Apr 2007) | 2 lines

    Bug #1710295: exceptions are now new-style classes.
  ........
    r55038 | georg.brandl | 2007-04-30 23:08:15 -0700 (Mon, 30 Apr 2007) | 2 lines

    Patch #1710352: add missing public functions to locale.__all__.
  ........
    r55041 | vinay.sajip | 2007-05-01 03:20:03 -0700 (Tue, 01 May 2007) | 1 line

    Added new optional credentials argument to SMTPHandler.__init__, and smtp.login() is now called in SMTPHandler.emit() if credentials are specified.
  ........
    r55042 | vinay.sajip | 2007-05-01 03:21:45 -0700 (Tue, 01 May 2007) | 1 line

    Added documentation for new optional credentials argument to SMTPHandler.__init__().
  ........
    r55070 | neal.norwitz | 2007-05-01 21:47:55 -0700 (Tue, 01 May 2007) | 3 lines

    Stop using PyMem_FREE while the GIL is not held.  For details see:
    http://mail.python.org/pipermail/python-dev/2007-May/072896.html
  ........
    r55080 | armin.rigo | 2007-05-02 12:23:31 -0700 (Wed, 02 May 2007) | 6 lines

    Fix for #1303614 and #1174712:
    - __dict__ descriptor abuse for subclasses of built-in types
    - subclassing from both ModuleType and another built-in types

    Thanks zseil for the patch.
  ........
    r55083 | georg.brandl | 2007-05-02 13:02:29 -0700 (Wed, 02 May 2007) | 3 lines

    Actually raise an exception before calling ast_error_finish.
    Triggers an assertion otherwise.
  ........
    r55087 | neal.norwitz | 2007-05-02 23:47:18 -0700 (Wed, 02 May 2007) | 1 line

    Handle a couple of uncaught errors.  This should be backported
  ........
    r55090 | neal.norwitz | 2007-05-03 00:20:57 -0700 (Thu, 03 May 2007) | 4 lines

    Remove dead code.  This code couldn't be reached because earlier in
    the function there is another check for z != Py_None.
  ........
    r55092 | thomas.heller | 2007-05-03 05:02:08 -0700 (Thu, 03 May 2007) | 1 line

    Fix building _ctypes.pyd for x64 / Windows.
  ........
    r55093 | thomas.heller | 2007-05-03 05:05:20 -0700 (Thu, 03 May 2007) | 1 line

    Don't truncate pointers to integers (on win64 platform).
  ........
    r55094 | walter.doerwald | 2007-05-03 08:13:55 -0700 (Thu, 03 May 2007) | 3 lines

    Clarify the behaviour of PyUnicode_DecodeUTF16(): A BOM is only skipped
    in native order mode, and only if it's the first two bytes.
  ........
    r55101 | kristjan.jonsson | 2007-05-03 13:04:53 -0700 (Thu, 03 May 2007) | 2 lines

    Fix pcbuild8 after recent overhaul:  Added the version resource to python26.dll. Adjust stacksize to 2Mb and made large address aware for 32 bits, and set stacksize to 3Mb for 64 bits.
    Todo:  Set .dll optimized load addresses, and side-by-side packaging of the python26.dll.
  ........
    r55102 | kristjan.jonsson | 2007-05-03 13:09:56 -0700 (Thu, 03 May 2007) | 1 line

    Fix those parts in the testsuite that assumed that sys.maxint would cause overflow on x64.  Now the testsuite is well behaved on that platform.
  ........
    r55103 | kristjan.jonsson | 2007-05-03 13:27:03 -0700 (Thu, 03 May 2007) | 11 lines

    Fix problems in x64 build that were discovered by the testsuite:
    - Reenable modules on x64 that had been disabled aeons ago for Itanium.
    - Cleared up confusion about compilers for 64 bit windows.  There is only Itanium and x64.  Added macros MS_WINI64 and MS_WINX64 for those rare cases where it matters, such as the disabling of modules above.
    - Set target platform (_WIN32_WINNT and WINVER) to 0x0501 (XP) for x64, and 0x0400 (NT 4.0) otherwise, which are the targeted minimum platforms.
    - Fixed thread_nt.h.  The emulated InterlockedCompareExchange function didn?\194?\180t work on x64, probaby due to the lack of a "volatile" specifier.  Anyway, win95 is no longer a target platform.
    - Itertools module used wrong constant to check for overflow in count()
    - PyInt_AsSsize_t couldn't deal with attribute error when accessing the __long__ member.
    - PyLong_FromSsize_t() incorrectly specified that the operand were unsigned.

    With these changes, the x64 passes the testsuite, for those modules present.
  ........
    r55107 | kristjan.jonsson | 2007-05-03 17:25:08 -0700 (Thu, 03 May 2007) | 1 line

    Revert compiler comment to AMD64 for x64/AMD64 builds.
  ........
    r55115 | thomas.heller | 2007-05-04 00:14:39 -0700 (Fri, 04 May 2007) | 4 lines

    Fix some ctypes test crashes, when running with a debug Python
    version on win64 by using proper argtypes and restype function
    attributes.
  ........
    r55117 | thomas.heller | 2007-05-04 01:20:41 -0700 (Fri, 04 May 2007) | 4 lines

    On 64-bit Windows, ffi_arg must be 8 bytes long.  This fixes the
    remaining crashes in the ctypes tests, when functions return float or
    double types.
  ........
    r55120 | kristjan.jonsson | 2007-05-04 08:48:15 -0700 (Fri, 04 May 2007) | 1 line

    Update the pcbuild8 solution.  Straightened out the _ctypes project by using a .vsproj file and a masm64.rules file to avoid redundancy
  ........
    r55121 | kristjan.jonsson | 2007-05-04 10:28:06 -0700 (Fri, 04 May 2007) | 1 line

    Minor fix of PCBuild8/_ctypes vcproj, moving include dir into the .vsprops file.
  ........
    r55129 | thomas.heller | 2007-05-04 12:54:22 -0700 (Fri, 04 May 2007) | 3 lines

    Do not truncate 64-bit pointers to 32-bit integers.

    Fixes SF #1703286, will backport to release25-maint.
  ........
    r55131 | thomas.heller | 2007-05-04 12:56:32 -0700 (Fri, 04 May 2007) | 1 line

    Oops, these tests do not run on Windows CE.
  ........
    r55140 | brett.cannon | 2007-05-04 18:34:02 -0700 (Fri, 04 May 2007) | 2 lines

    Deprecate BaseException.message as per PEP 352.
  ........
    r55154 | georg.brandl | 2007-05-05 11:55:37 -0700 (Sat, 05 May 2007) | 2 lines

    Bug #1713535: typo in logging example.
  ........
    r55158 | vinay.sajip | 2007-05-06 10:53:37 -0700 (Sun, 06 May 2007) | 1 line

    Updates of recent changes to logging.
  ........
    r55165 | neal.norwitz | 2007-05-07 00:02:26 -0700 (Mon, 07 May 2007) | 1 line

    Verify changes to the trunk go to the normal checkins list
  ........
    r55169 | kristjan.jonsson | 2007-05-07 09:46:54 -0700 (Mon, 07 May 2007) | 1 line

    As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol.  The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present.
  ........
    r55197 | collin.winter | 2007-05-08 21:14:36 -0700 (Tue, 08 May 2007) | 9 lines

    Fix a bug in test.test_support.open_urlresource().

    If the call to requires() doesn't precede the filesystem check, we get the following situation:
    1. ./python Lib/test/regrtest.py test_foo # test needs urlfetch, not enabled, so skipped
    2. ./python Lib/test/regrtest.py -u urlfetch test_foo # test runs
    3. ./python Lib/test/regrtest.py test_foo # test runs (!)

    By moving the call to requires() *before* the filesystem check, the fact that fetched files are cached on the local disk becomes an implementation detail, rather than a semantics-changing point of note.
  ........
    r55198 | neal.norwitz | 2007-05-08 23:43:15 -0700 (Tue, 08 May 2007) | 1 line

    Add markup for True/False.  Will backport
  ........
    r55205 | walter.doerwald | 2007-05-09 11:10:47 -0700 (Wed, 09 May 2007) | 4 lines

    Backport checkin:
    Fix a segfault when b"" was passed to b2a_qp() -- it was using strchr()
    instead of memchr().
  ........
    r55241 | neal.norwitz | 2007-05-10 22:55:15 -0700 (Thu, 10 May 2007) | 6 lines

    Don't ever report a failure when the sum of the reference count differences
    are zero.  This should help reduce the false positives.

    The message about references leaking is maintained to provide as much
    info as possible rather than simply suppressing the message at the source.
  ........
    r55242 | neal.norwitz | 2007-05-10 23:23:01 -0700 (Thu, 10 May 2007) | 1 line

    Fix typo in docstring (the module is popen2, not 3).
  ........
    r55244 | neal.norwitz | 2007-05-10 23:56:52 -0700 (Thu, 10 May 2007) | 1 line

    Remove trailing whitespace in docstring
  ........
    r55245 | neal.norwitz | 2007-05-10 23:57:33 -0700 (Thu, 10 May 2007) | 1 line

    Deprecate os.popen* and popen2 module in favor of the subprocess module.
  ........
    r55247 | neal.norwitz | 2007-05-11 00:13:30 -0700 (Fri, 11 May 2007) | 1 line

    Deprecate os.popen* and popen2 module in favor of the subprocess module. (forgot the doc)
  ........
    r55253 | georg.brandl | 2007-05-11 02:41:37 -0700 (Fri, 11 May 2007) | 3 lines

    Remove an XXX that is unnecessary.
  ........
    r55258 | georg.brandl | 2007-05-11 04:04:26 -0700 (Fri, 11 May 2007) | 2 lines

    Patch #1714700: clarify os.linesep vs. tfiles opened in text mode.
     (backport)
  ........
    r55259 | georg.brandl | 2007-05-11 04:43:56 -0700 (Fri, 11 May 2007) | 2 lines

    Update DDJ link.
  ........
    r55273 | raymond.hettinger | 2007-05-11 10:59:59 -0700 (Fri, 11 May 2007) | 1 line

    Better tests for posixpath.commonprefix
  ........
    r55287 | georg.brandl | 2007-05-12 14:06:41 -0700 (Sat, 12 May 2007) | 2 lines

    Bug #1046945: document SWIG options of distutils.
  ........
    r55290 | georg.brandl | 2007-05-13 01:04:07 -0700 (Sun, 13 May 2007) | 2 lines

    Add bz2 to content encodings.
  ........
    r55297 | neal.norwitz | 2007-05-13 13:45:05 -0700 (Sun, 13 May 2007) | 3 lines

    Remove Amoeba doc which was removed in version 1.0! according to Misc/HISTORY.
    Hopefully Guido won't shed a tear. :-)
  ........
    r55298 | neal.norwitz | 2007-05-13 13:54:19 -0700 (Sun, 13 May 2007) | 1 line

    Remove references to stdwin which was removed long ago.
  ........
    r55299 | neal.norwitz | 2007-05-13 14:13:42 -0700 (Sun, 13 May 2007) | 3 lines

    Remove support for freebsd[23] which haven't been released since 2000
    or earlier.  http://www.freebsd.org/releases/index.html
  ........
    r55320 | raymond.hettinger | 2007-05-14 13:52:31 -0700 (Mon, 14 May 2007) | 1 line

    Small speedup.
  ........
................
2007-05-14 22:51:27 +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 55325-55327 via svnmerge from 2007-05-14 22:51:27 +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 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
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
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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +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
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 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 55007-55179 via svnmerge from 2007-05-07 22:24:25 +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
libgopherlib.tex Add deprecation notices to modules deprecated since 2000. 2006-02-17 11:18:58 +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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libimageop.tex Merged revisions 53538-53622 via svnmerge from 2007-02-05 01:24:16 +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 55007-55179 via svnmerge from 2007-05-07 22:24:25 +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 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
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 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libos.tex Merged revisions 55325-55327 via svnmerge from 2007-05-14 22:51:27 +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
libpopen2.tex Merged revisions 55325-55327 via svnmerge from 2007-05-14 22:51:27 +00:00
libpoplib.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +00:00
libposix.tex
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
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
librgbimg.tex Add deprecation notices to modules deprecated since 2000. 2006-02-17 11:18:58 +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
libsets.tex Excise the sets module. SF #1500611 by Collin Winter. 2007-01-10 01:28:32 +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
libstruct.tex Merged revisions 53623-53858 via svnmerge from 2007-02-23 15:07:44 +00:00
libsubprocess.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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 46753-51188 via svnmerge from 2006-08-11 14:57:12 +00:00
liburllib2.tex Merged revisions 53952-54987 via svnmerge from 2007-04-27 19:54:29 +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
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