cpython/Doc/library
Christian Heimes faf2f63faf Merged revisions 59703-59773 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r59704 | christian.heimes | 2008-01-04 04:15:05 +0100 (Fri, 04 Jan 2008) | 1 line

  Moved include "Python.h" in front of other imports to silence a warning.
........
  r59706 | raymond.hettinger | 2008-01-04 04:22:53 +0100 (Fri, 04 Jan 2008) | 10 lines

  Minor fix-ups to named tuples:

  * Make the _replace() method respect subclassing.

  * Using property() to make _fields read-only wasn't a good idea.
    It caused len(Point._fields) to fail.

  * Add note to _cast() about length checking and alternative with the star-operator.
........
  r59707 | jeffrey.yasskin | 2008-01-04 09:01:23 +0100 (Fri, 04 Jan 2008) | 3 lines

  Make math.{floor,ceil}({int,long}) return float again for backwards
  compatibility after r59671 made them return integral types.
........
  r59709 | christian.heimes | 2008-01-04 14:21:07 +0100 (Fri, 04 Jan 2008) | 1 line

  Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.
........
  r59712 | lars.gustaebel | 2008-01-04 15:00:33 +0100 (Fri, 04 Jan 2008) | 5 lines

  Issue #1735: TarFile.extractall() now correctly sets
  directory permissions and times.

  (will backport to 2.5)
........
  r59714 | andrew.kuchling | 2008-01-04 15:47:17 +0100 (Fri, 04 Jan 2008) | 1 line

  Update links to bug/patch tracker
........
  r59716 | christian.heimes | 2008-01-04 16:23:30 +0100 (Fri, 04 Jan 2008) | 1 line

  Added interface to Windows' WSAIoctl and a simple example for a network sniffer.
........
  r59717 | christian.heimes | 2008-01-04 16:29:00 +0100 (Fri, 04 Jan 2008) | 1 line

  And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks Hiro!
........
  r59719 | christian.heimes | 2008-01-04 16:34:06 +0100 (Fri, 04 Jan 2008) | 1 line

  Reverted last transaction. It's the wrong branch.
........
  r59721 | christian.heimes | 2008-01-04 16:48:06 +0100 (Fri, 04 Jan 2008) | 1 line

  socket.ioctl is only available on Windows
........
  r59722 | andrew.kuchling | 2008-01-04 19:24:41 +0100 (Fri, 04 Jan 2008) | 1 line

  Fix markup
........
  r59723 | andrew.kuchling | 2008-01-04 19:25:05 +0100 (Fri, 04 Jan 2008) | 1 line

  Fix markup
........
  r59725 | guido.van.rossum | 2008-01-05 01:59:59 +0100 (Sat, 05 Jan 2008) | 3 lines

  Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000
  and adds errors for -0x.
........
  r59726 | guido.van.rossum | 2008-01-05 02:21:57 +0100 (Sat, 05 Jan 2008) | 2 lines

  Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py.
........
  r59727 | raymond.hettinger | 2008-01-05 02:35:43 +0100 (Sat, 05 Jan 2008) | 1 line

  Improve namedtuple's _cast() method with a docstring, new name, and error-checking.
........
  r59728 | raymond.hettinger | 2008-01-05 03:17:24 +0100 (Sat, 05 Jan 2008) | 1 line

  Add error-checking to namedtuple's _replace() method.
........
  r59730 | fred.drake | 2008-01-05 05:38:38 +0100 (Sat, 05 Jan 2008) | 2 lines

  clean up a comment
........
  r59731 | jeffrey.yasskin | 2008-01-05 09:47:13 +0100 (Sat, 05 Jan 2008) | 11 lines

  Continue rolling back pep-3141 changes that changed behavior from 2.5. This
  round included:
   * Revert round to its 2.6 behavior (half away from 0).
   * Because round, floor, and ceil always return float again, it's no
     longer necessary to have them delegate to __xxx___, so I've ripped
     that out of their implementations and the Real ABC. This also helps
     in implementing types that work in both 2.6 and 3.0: you return int
     from the __xxx__ methods, and let it get enabled by the version
     upgrade.
   * Make pow(-1, .5) raise a ValueError again.
........
  r59736 | andrew.kuchling | 2008-01-05 16:13:49 +0100 (Sat, 05 Jan 2008) | 1 line

  Fix comment typo
........
  r59738 | thomas.heller | 2008-01-05 18:15:44 +0100 (Sat, 05 Jan 2008) | 1 line

  Add myself.
........
  r59739 | georg.brandl | 2008-01-05 18:49:17 +0100 (Sat, 05 Jan 2008) | 2 lines

  Fix C++-style comment.
........
  r59742 | georg.brandl | 2008-01-05 20:28:16 +0100 (Sat, 05 Jan 2008) | 2 lines

  Remove with_statement future imports from 2.6 docs.
........
  r59743 | georg.brandl | 2008-01-05 20:29:45 +0100 (Sat, 05 Jan 2008) | 2 lines

  Simplify index entries; fix #1712.
........
  r59744 | georg.brandl | 2008-01-05 20:44:22 +0100 (Sat, 05 Jan 2008) | 2 lines

  Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.
........
  r59749 | georg.brandl | 2008-01-05 21:29:13 +0100 (Sat, 05 Jan 2008) | 2 lines

  Revert socket.rst to unix-eol.
........
  r59750 | georg.brandl | 2008-01-05 21:33:46 +0100 (Sat, 05 Jan 2008) | 2 lines

  Set native svn:eol-style property for text files.
........
  r59752 | georg.brandl | 2008-01-05 21:46:29 +0100 (Sat, 05 Jan 2008) | 2 lines

  #1719: capitalization error in "UuidCreate".
........
  r59753 | georg.brandl | 2008-01-05 22:02:25 +0100 (Sat, 05 Jan 2008) | 2 lines

  Repair markup.
........
  r59754 | georg.brandl | 2008-01-05 22:10:50 +0100 (Sat, 05 Jan 2008) | 2 lines

  Use markup.
........
  r59757 | christian.heimes | 2008-01-05 22:35:52 +0100 (Sat, 05 Jan 2008) | 1 line

  Final adjustments for #1601
........
  r59758 | guido.van.rossum | 2008-01-05 23:19:06 +0100 (Sat, 05 Jan 2008) | 3 lines

  Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'.
  Fix by John Nagle.
........
  r59759 | guido.van.rossum | 2008-01-05 23:20:01 +0100 (Sat, 05 Jan 2008) | 2 lines

  Add John Nagle (of issue #1637).
........
  r59765 | raymond.hettinger | 2008-01-06 10:02:24 +0100 (Sun, 06 Jan 2008) | 1 line

  Small code simplification.  Forgot that classmethods can be called from intances.
........
  r59766 | martin.v.loewis | 2008-01-06 11:09:48 +0100 (Sun, 06 Jan 2008) | 2 lines

  Use vcbuild for VS 2009.
........
  r59767 | martin.v.loewis | 2008-01-06 12:03:43 +0100 (Sun, 06 Jan 2008) | 2 lines

  Package using VS 2008.
........
  r59768 | martin.v.loewis | 2008-01-06 12:13:16 +0100 (Sun, 06 Jan 2008) | 2 lines

  Don't try to package msvcr90 for the moment.
........
  r59769 | georg.brandl | 2008-01-06 15:17:36 +0100 (Sun, 06 Jan 2008) | 4 lines

  #1696393: don't check for '.' and '..' in ntpath.walk since
  they aren't returned from os.listdir anymore.
  Reported by Michael Haggerty.
........
  r59770 | georg.brandl | 2008-01-06 15:27:15 +0100 (Sun, 06 Jan 2008) | 3 lines

  #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir.
  Reported by Jesse Towner.
........
  r59771 | georg.brandl | 2008-01-06 15:33:52 +0100 (Sun, 06 Jan 2008) | 2 lines

  #1591: Clarify docstring of Popen3.
........
  r59772 | georg.brandl | 2008-01-06 16:30:34 +0100 (Sun, 06 Jan 2008) | 2 lines

  #1680: fix context manager example function name.
........
  r59773 | georg.brandl | 2008-01-06 16:34:57 +0100 (Sun, 06 Jan 2008) | 2 lines

  #1755097: document default values for [].sort() and sorted().
........
2008-01-06 16:59:19 +00:00
..
__future__.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
__main__.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
_ast.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
_winreg.rst Remove further mentions of long integers. 2007-11-29 17:41:05 +00:00
abc.rst Proof read/editing of abc. Added table of collections.Hashable etc. to 2007-09-05 08:43:04 +00:00
aepack.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
aetools.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
aetypes.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
aifc.rst Manually patched a few things that didn't get merged in, but should. 2007-08-17 00:24:54 +00:00
allos.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
anydbm.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
archiving.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
array.rst Remove further mentions of long integers. 2007-11-29 17:41:05 +00:00
asynchat.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
asyncore.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
atexit.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
audioop.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
autogil.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
base64.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
basehttpserver.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
bdb.rst Merged revisions 59376-59406 via svnmerge from 2007-12-08 15:33:56 +00:00
binascii.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
binhex.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
bisect.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
bsddb.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
builtins.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
bz2.rst Remove mentions of "long integer" in the docs. 2007-11-29 17:24:34 +00:00
calendar.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
carbon.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
cgi.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
cgihttpserver.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
cgitb.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
chunk.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
cmath.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
cmd.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
code.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
codecs.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
codeop.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
collections.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
colorpicker.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
colorsys.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
commands.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
compileall.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
configparser.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
constants.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
contextlib.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
cookie.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
cookielib.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
copy.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
copy_reg.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
crypt.rst Remove all definitions of raw_input() that were still scattered throughout the docs 2007-12-02 22:48:17 +00:00
crypto.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
csv.rst Merged revisions 59333-59370 via svnmerge from 2007-12-05 20:18:38 +00:00
ctypes.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
curses.ascii.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
curses.panel.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
curses.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
custominterp.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
datatypes.rst Removed the new module 2007-11-28 08:28:28 +00:00
datetime.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
dbhash.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
dbm.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
debug.rst remove hotshot profiler from Py3k 2007-10-11 18:01:43 +00:00
decimal.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
development.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
difflib.rst Remove versionadded/changed directives merged as an oversight. 2008-01-05 20:11:13 +00:00
dircache.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
dis.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
distutils.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
dl.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
doctest.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
docxmlrpcserver.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
dumbdbm.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
dummy_thread.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
dummy_threading.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
easydialogs.rst Remove mentions of "long integer" in the docs. 2007-11-29 17:24:34 +00:00
email-examples.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
email.charset.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
email.encoders.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
email.errors.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
email.generator.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
email.header.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
email.iterators.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
email.message.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
email.mime.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
email.parser.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
email.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
email.util.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
errno.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
exceptions.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
fcntl.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
filecmp.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
fileformats.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
fileinput.rst Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from 2007-09-19 03:06:30 +00:00
filesys.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
fnmatch.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
formatter.rst Merged revisions 57152-57220 via svnmerge from 2007-08-20 19:06:03 +00:00
fpectl.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
fpformat.rst Commit #1068: new docs for PEP 3101. Also document the old string formatting as "old", and begin documenting str/unicode unification. 2007-08-31 09:22:56 +00:00
framework.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
frameworks.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
ftplib.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
functions.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
functools.rst Merged revisions 59259-59274 via svnmerge from 2007-12-02 15:22:16 +00:00
gc.rst Minor cleanup in the gc module. 2007-12-10 23:58:35 +00:00
gdbm.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
gensuitemodule.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
getopt.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
getpass.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
gettext.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
glob.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
grp.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
gzip.rst Merged revisions 58817-58861 via svnmerge from 2007-11-05 19:43:04 +00:00
hashlib.rst Merged revisions 58862-58885 via svnmerge from 2007-11-06 20:51:31 +00:00
heapq.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
hmac.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
htmllib.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
htmlparser.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
httplib.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
i18n.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
ic.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
idle.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
imaplib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
imghdr.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
imp.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
imputil.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
index.rst New documentation for the bdb module. Forward-port from rev. 58112, with a few 3k-specific changes. 2007-09-12 18:04:37 +00:00
inspect.rst Merged revisions 59259-59274 via svnmerge from 2007-12-02 15:22:16 +00:00
internet.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
intro.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
ipc.rst Merge the trunk changes in. Breaks socket.ssl for now. 2007-08-28 21:37:11 +00:00
itertools.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
keyword.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
language.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
linecache.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
locale.rst Update what the locale module documents about string operations. 2007-10-15 15:42:31 +00:00
logging.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
mac.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
macos.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
macosa.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
macostools.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
macpath.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
mailbox.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
mailcap.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
markup.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
marshal.rst Remove mentions of "long integer" in the docs. 2007-11-29 17:24:34 +00:00
math.rst Remove versionadded/changed directives merged as an oversight. 2008-01-05 20:11:13 +00:00
mhlib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
mimetools.rst Manually patched a few things that didn't get merged in, but should. 2007-08-17 00:24:54 +00:00
mimetypes.rst Merged revisions 59041-59055 via svnmerge from 2007-11-19 18:03:44 +00:00
miniaeframe.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
misc.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
mm.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
mmap.rst Fix some 2.xisms in merged docs. 2007-12-02 18:20:12 +00:00
modulefinder.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
modules.rst Merge the trunk changes in. Breaks socket.ssl for now. 2007-08-28 21:37:11 +00:00
msilib.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
msvcrt.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
multifile.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
mutex.rst Merged revisions 57778-58052 via svnmerge from 2007-09-08 17:39:28 +00:00
netdata.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
netrc.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
nis.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
nntplib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
numbers.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
numeric.rst Merged revisions 59666-59679 via svnmerge from 2008-01-03 23:01:04 +00:00
objects.rst Merged revisions 59512-59540 via svnmerge from 2007-12-17 20:04:13 +00:00
operator.rst Merged revisions 59259-59274 via svnmerge from 2007-12-02 15:22:16 +00:00
optparse.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
os.path.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
os.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
ossaudiodev.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
othergui.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
parser.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
pdb.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
persistence.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
pickle.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
pickletools.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
pipes.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
pkgutil.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
platform.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
poplib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
posix.rst Remove further mentions of long integers. 2007-11-29 17:41:05 +00:00
pprint.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
profile.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
pty.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
pwd.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
py_compile.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
pyclbr.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
pydoc.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
pyexpat.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
python.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
queue.rst Merged revisions 57778-58052 via svnmerge from 2007-09-08 17:39:28 +00:00
quopri.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
random.rst Merged revisions 59275-59303 via svnmerge from 2007-12-03 21:02:03 +00:00
re.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
readline.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
repr.rst Remove mentions of "long integer" in the docs. 2007-11-29 17:24:34 +00:00
resource.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
rfc822.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
rlcompleter.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
robotparser.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
runpy.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
sched.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
scrolledtext.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
select.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
sgmllib.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
shelve.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
shlex.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
shutil.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
signal.rst Merged revisions 59565-59594 via svnmerge from 2007-12-24 08:52:31 +00:00
simplehttpserver.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
simplexmlrpcserver.rst Merged revisions 59275-59303 via svnmerge from 2007-12-03 21:02:03 +00:00
site.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
smtpd.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
smtplib.rst Remove all definitions of raw_input() that were still scattered throughout the docs 2007-12-02 22:48:17 +00:00
sndhdr.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
socket.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
socketserver.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
someos.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
spwd.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
sqlite3.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
ssl.rst Merged revisions 59376-59406 via svnmerge from 2007-12-08 15:33:56 +00:00
stat.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
statvfs.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
stdtypes.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
string.rst Fix the string formatting docs for now; if the feature is changed again, the docs can be changed too. 2007-09-04 07:27:54 +00:00
stringio.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
stringprep.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
strings.rst Commit #1068: new docs for PEP 3101. Also document the old string formatting as "old", and begin documenting str/unicode unification. 2007-08-31 09:22:56 +00:00
struct.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
subprocess.rst Merged revisions 59107-59186 via svnmerge from 2007-11-26 23:23:18 +00:00
sunau.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
symbol.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
sys.rst Remove versionadded/changed directives merged as an oversight. 2008-01-05 20:11:13 +00:00
syslog.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
tabnanny.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
tarfile.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
telnetlib.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
tempfile.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
termios.rst Remove all definitions of raw_input() that were still scattered throughout the docs 2007-12-02 22:48:17 +00:00
test.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
textwrap.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
thread.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
threading.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
time.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
timeit.rst Merged revisions 59259-59274 via svnmerge from 2007-12-02 15:22:16 +00:00
tix.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
tk.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
tkinter.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
token.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
tokenize.rst #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. 2007-11-01 20:32:30 +00:00
trace.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
traceback.rst Merged revisions 59333-59370 via svnmerge from 2007-12-05 20:18:38 +00:00
tty.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
turtle.rst Merged revisions 59512-59540 via svnmerge from 2007-12-17 20:04:13 +00:00
types.rst Cleanups and documentation updates related to the removal of unbound methods. 2007-11-30 22:29:24 +00:00
undoc.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
unicodedata.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
unittest.rst Merged revisions 59107-59186 via svnmerge from 2007-11-26 23:23:18 +00:00
unix.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
urllib.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
urllib2.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
urlparse.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
user.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
userdict.rst remove/update many of the references to dict.iter*() 2007-09-04 17:33:11 +00:00
uu.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
uuid.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
warnings.rst Merged revisions 59423-59440 via svnmerge from 2007-12-09 15:58:13 +00:00
wave.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
weakref.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
webbrowser.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
whichdb.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
windows.rst Merged revisions 59259-59274 via svnmerge from 2007-12-02 15:22:16 +00:00
winsound.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
wsgiref.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xdrlib.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
xml.dom.minidom.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xml.dom.pulldom.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
xml.dom.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xml.etree.elementtree.rst Merged revisions 59259-59274 via svnmerge from 2007-12-02 15:22:16 +00:00
xml.etree.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xml.sax.handler.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xml.sax.reader.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xml.sax.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
xml.sax.utils.rst Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. 2007-09-01 23:34:30 +00:00
xmlrpclib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
zipfile.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
zipimport.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
zlib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00