cpython/Doc/library
Georg Brandl 2ee470f7f9 Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64722 | georg.brandl | 2008-07-05 12:13:36 +0200 (Sat, 05 Jul 2008) | 4 lines

  #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.

  This is a new feature, but Barry authorized adding it in the beta period.
........
  r64729 | mark.dickinson | 2008-07-05 13:33:52 +0200 (Sat, 05 Jul 2008) | 5 lines

  Issue 3188: accept float('infinity') as well as float('inf').  This
  makes the float constructor behave in the same way as specified
  by various other language standards, including C99, IEEE 754r,
  and the IBM Decimal standard.
........
  r64753 | gregory.p.smith | 2008-07-06 05:35:58 +0200 (Sun, 06 Jul 2008) | 4 lines

  - Issue #2862: Make int and float freelist management consistent with other
    freelists.  Changes their CompactFreeList apis into ClearFreeList apis and
    calls them via gc.collect().
........
  r64845 | raymond.hettinger | 2008-07-10 16:03:19 +0200 (Thu, 10 Jul 2008) | 1 line

  Issue 3301:  Bisect functions behaved badly when lo was negative.
........
  r64846 | raymond.hettinger | 2008-07-10 16:34:57 +0200 (Thu, 10 Jul 2008) | 1 line

  Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments.
........
  r64849 | andrew.kuchling | 2008-07-10 16:43:31 +0200 (Thu, 10 Jul 2008) | 1 line

  Wording changes
........
  r64871 | raymond.hettinger | 2008-07-11 14:00:21 +0200 (Fri, 11 Jul 2008) | 1 line

  Add cautionary note on the use of PySequence_Fast_ITEMS.
........
  r64880 | amaury.forgeotdarc | 2008-07-11 23:28:25 +0200 (Fri, 11 Jul 2008) | 5 lines

  #3317 in zipfile module, restore the previous names of global variables:
  some applications relied on them.

  Also remove duplicated lines.
........
  r64881 | amaury.forgeotdarc | 2008-07-11 23:45:06 +0200 (Fri, 11 Jul 2008) | 3 lines

  #3342: In tracebacks, printed source lines were not indented since r62555.
  #3343: Py_DisplaySourceLine should be a private function. Rename it to _Py_DisplaySourceLine.
........
  r64882 | josiah.carlson | 2008-07-12 00:17:14 +0200 (Sat, 12 Jul 2008) | 2 lines

  Fix for the AttributeError in test_asynchat.
........
  r64885 | josiah.carlson | 2008-07-12 01:26:59 +0200 (Sat, 12 Jul 2008) | 2 lines

  Fixed test for asyncore.
........
  r64888 | matthias.klose | 2008-07-12 09:51:48 +0200 (Sat, 12 Jul 2008) | 2 lines

  - Fix bashisms in Tools/faqwiz/move-faqwiz.sh
........
  r64897 | benjamin.peterson | 2008-07-12 22:16:19 +0200 (Sat, 12 Jul 2008) | 1 line

  fix various doc typos #3320
........
  r64900 | alexandre.vassalotti | 2008-07-13 00:06:53 +0200 (Sun, 13 Jul 2008) | 2 lines

  Fixed typo.
........
  r64901 | benjamin.peterson | 2008-07-13 01:41:19 +0200 (Sun, 13 Jul 2008) | 1 line

  #1778443 robotparser fixes from Aristotelis Mikropoulos
........
  r64915 | nick.coghlan | 2008-07-13 16:52:36 +0200 (Sun, 13 Jul 2008) | 1 line

  Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute)
........
  r64926 | martin.v.loewis | 2008-07-13 22:31:49 +0200 (Sun, 13 Jul 2008) | 2 lines

  Add turtle into the module index.
........
  r64927 | alexandre.vassalotti | 2008-07-13 22:42:44 +0200 (Sun, 13 Jul 2008) | 3 lines

  Issue #3274: Use a less common identifier for the temporary variable
  in Py_CLEAR().
........
  r64928 | andrew.kuchling | 2008-07-13 23:43:25 +0200 (Sun, 13 Jul 2008) | 1 line

  Re-word
........
  r64929 | andrew.kuchling | 2008-07-13 23:43:52 +0200 (Sun, 13 Jul 2008) | 1 line

  Add various items; move ctypes items into a subsection of their own
........
  r64938 | andrew.kuchling | 2008-07-14 02:35:32 +0200 (Mon, 14 Jul 2008) | 1 line

  Typo fixes
........
  r64939 | andrew.kuchling | 2008-07-14 02:40:55 +0200 (Mon, 14 Jul 2008) | 1 line

  Typo fix
........
  r64940 | andrew.kuchling | 2008-07-14 03:18:16 +0200 (Mon, 14 Jul 2008) | 1 line

  Typo fix
........
  r64941 | andrew.kuchling | 2008-07-14 03:18:31 +0200 (Mon, 14 Jul 2008) | 1 line

  Expand the multiprocessing section
........
  r64944 | gregory.p.smith | 2008-07-14 08:06:48 +0200 (Mon, 14 Jul 2008) | 7 lines

  Fix posix.fork1() / os.fork1() to only call PyOS_AfterFork() in the child
  process rather than both parent and child.

  Does anyone actually use fork1()?  It appears to be a Solaris thing
  but if Python is built with pthreads on Solaris, fork1() and fork()
  should be the same.
........
  r64961 | jesse.noller | 2008-07-15 15:47:33 +0200 (Tue, 15 Jul 2008) | 1 line

  multiprocessing/connection.py patch to remove fqdn oddness for issue 3270
........
  r64966 | nick.coghlan | 2008-07-15 17:40:22 +0200 (Tue, 15 Jul 2008) | 1 line

  Add missing NEWS entry for r64962
........
  r64973 | jesse.noller | 2008-07-15 20:29:18 +0200 (Tue, 15 Jul 2008) | 1 line

  Revert 3270 patch: self._address is in pretty widespread use, need to revisit
........
2008-07-16 12:55:28 +00:00
..
__future__.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
__main__.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
_dummy_thread.rst Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 2008-05-25 13:05:15 +00:00
_thread.rst Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 2008-05-25 13:05:15 +00:00
abc.rst Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from 2008-07-16 03:43:04 +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 #2530: io module documentation. 2008-04-09 18:40:51 +00:00
archiving.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
array.rst Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via svnmerge from 2008-03-31 01:51:45 +00:00
ast.rst Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from 2008-07-02 17:30:14 +00:00
asynchat.rst Removed extraneous whitespace. 2008-07-07 04:24:24 +00:00
asyncore.rst Fixed documentation to be correct for Py3k. 2008-07-07 04:23:14 +00:00
atexit.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
audioop.rst Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from 2008-03-25 14:56:36 +00:00
base64.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
bdb.rst Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from 2008-05-16 00:03:33 +00:00
binascii.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
binhex.rst Remove the Mac modules 2008-05-12 22:25:16 +00:00
bisect.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
bsddb.rst Create the dbm package from PEP 3108. #2881. 2008-05-26 10:29:35 +00:00
builtins.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
bz2.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
calendar.rst Merged revisions 63361-63373,63375,63377-63380 via svnmerge from 2008-05-16 18:15:12 +00:00
cgi.rst Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from 2008-07-02 17:30:14 +00:00
cgitb.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
chunk.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
cmath.rst Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from 2008-07-02 17:30:14 +00:00
cmd.rst Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from 2008-06-10 16:37:50 +00:00
code.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
codecs.rst Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from 2008-06-10 16:57:31 +00:00
codeop.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
collections.rst Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from 2008-07-16 03:43:04 +00:00
colorsys.rst Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from 2008-05-15 22:09:29 +00:00
compileall.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
configparser.rst Renamed ConfigParser to configparser. 2008-05-14 22:59:42 +00:00
constants.rst Merged revisions 60124-60142 via svnmerge from 2008-01-20 15:14:11 +00:00
contextlib.rst Review the doc changes for the urllib package creation. 2008-06-23 11:23:31 +00:00
copy.rst Rename copy_reg module to copyreg. 2008-05-11 08:55:36 +00:00
copyreg.rst Rename copy_reg module to copyreg. 2008-05-11 08:55:36 +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 Remove last traces of cStringIO. 2008-06-10 15:50:56 +00:00
ctypes.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +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 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
custominterp.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
datatypes.rst Merged revisions 63361-63373,63375,63377-63380 via svnmerge from 2008-05-16 18:15:12 +00:00
datetime.rst Convert a lot of print statements to print functions in docstrings, 2008-05-13 04:55:24 +00:00
dbm.rst Fix old-style octal literals in the docs. 2008-05-26 17:55:52 +00:00
debug.rst remove hotshot profiler from Py3k 2007-10-11 18:01:43 +00:00
decimal.rst Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from 2008-07-02 17:30:14 +00:00
development.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
difflib.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
dis.rst document LOAD_BUILD_CLASS 2008-07-03 14:45:20 +00:00
distutils.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
doctest.rst Remove deprecated Tester class from doctest module. 2008-05-12 17:38:56 +00:00
dummy_threading.rst Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 2008-05-25 13:05:15 +00:00
email-examples.rst Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from 2008-02-03 16:51:08 +00:00
email.charset.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59: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 Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
email.header.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
email.iterators.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
email.message.rst Remove last traces of cStringIO. 2008-06-10 15:50:56 +00:00
email.mime.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
email.parser.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
email.rst Remove last traces of mimetools. 2008-06-12 18:52:31 +00:00
email.util.rst Update docs w.r.t. PEP 3100 changes -- patch for GHOP by Dan Finnie. 2008-02-01 11:56:49 +00:00
errno.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
exceptions.rst Remove mentions of "plain" integers. 2008-05-11 14:30:18 +00:00
fcntl.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
filecmp.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
fileformats.rst Documentation updates for urllib package. Modified the documentation for the 2008-06-23 04:41:59 +00:00
fileinput.rst Update docs w.r.t. PEP 3100 changes -- patch for GHOP by Dan Finnie. 2008-02-01 11:56:49 +00:00
filesys.rst Remove the statvfs module. 2008-05-16 00:42:57 +00:00
fnmatch.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
formatter.rst Remove the htmllib and sgmllib modules as per PEP 3108. 2008-06-01 21:25:55 +00:00
fpectl.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
fractions.rst Merged revisions 64561 via svnmerge from 2008-06-27 17:01:17 +00:00
frameworks.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
ftplib.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
functions.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
functools.rst Remove duplicated reduce() entry. 2008-04-19 22:18:33 +00:00
gc.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
getopt.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
getpass.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
gettext.rst #2512 implement the 3.0 gettext API 2008-07-14 14:32:15 +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 61981,61984-61987,61992-61993,61997-62000 via svnmerge from 2008-03-28 10:53:29 +00:00
hashlib.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
heapq.rst remove some old versionchanged and versionadded directives 2008-04-24 02:34:53 +00:00
hmac.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
html.entities.rst Remove the htmllib and sgmllib modules as per PEP 3108. 2008-06-01 21:25:55 +00:00
html.parser.rst Remove the htmllib and sgmllib modules as per PEP 3108. 2008-06-01 21:25:55 +00:00
http.client.rst Review the doc changes for the urllib package creation. 2008-06-23 11:23:31 +00:00
http.cookiejar.rst Fix old urllib/urllib2/urlparse usage. 2008-06-23 11:44:14 +00:00
http.cookies.rst Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from 2008-06-10 16:57:31 +00:00
http.server.rst Remove last traces of mimetools. 2008-06-12 18:52:31 +00:00
i18n.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
idle.rst Tkinter, step 3: doc updates. 2008-05-17 18:44:45 +00:00
imaplib.rst Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from 2008-03-16 00:07:10 +00:00
imghdr.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
imp.rst Merged revisions 62954-62959,62961,62963-62967,62969-62970,62972-62973,62975-62976,62978-62982,62984,62987-62996 via svnmerge from 2008-05-15 22:51:26 +00:00
index.rst Remove the Mac modules 2008-05-12 22:25:16 +00:00
inspect.rst #3021: Antoine Pitrou's Lexical exception handlers 2008-06-11 15:59:43 +00:00
internet.rst Documentation updates for urllib package. Modified the documentation for the 2008-06-23 04:41:59 +00:00
intro.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
io.rst #3007: remove stringio docs and fix a few nits in io docs. 2008-05-30 06:27:09 +00:00
ipc.rst Merge the trunk changes in. Breaks socket.ssl for now. 2007-08-28 21:37:11 +00:00
itertools.rst remove some old versionchanged and versionadded directives 2008-04-24 02:34:53 +00:00
json.rst Fix json examples so they would actually work in Py3k 2008-05-15 02:17:58 +00:00
keyword.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
language.rst Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from 2008-06-10 16:37:50 +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 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from 2008-06-10 16:37:50 +00:00
macpath.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
mailbox.rst #756982: Remove rfc822 reference. 2008-05-11 20:51:18 +00:00
mailcap.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
markup.rst Remove the htmllib and sgmllib modules as per PEP 3108. 2008-06-01 21:25:55 +00:00
marshal.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
math.rst Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,64425-64428 via svnmerge from 2008-07-02 16:11:42 +00:00
mimetypes.rst Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from 2008-03-16 00:07:10 +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 Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
modulefinder.rst Convert a lot of print statements to print functions in docstrings, 2008-05-13 04:55:24 +00:00
modules.rst Remove the imputil module. 2008-05-08 18:11:25 +00:00
msilib.rst Merged revisions 64475,64544-64545,64550,64557-64558,64565,64570,64577,64582-64583,64585,64590,64592-64593,64625,64630,64638,64647,64655-64656,64663-64664 via svnmerge from 2008-07-02 20:22:54 +00:00
msvcrt.rst Merged revisions 59703-59773 via svnmerge from 2008-01-06 16:59:19 +00:00
multiprocessing.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
netdata.rst remove the rfc822 module 2008-06-12 22:15:50 +00:00
netrc.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +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 Removed some versionadded tags, and a reference to "long" in a sample 2008-06-17 20:38:00 +00:00
numeric.rst Move UserList to collections. 2008-02-12 20:03:09 +00:00
objects.rst Merged revisions 59512-59540 via svnmerge from 2007-12-17 20:04:13 +00:00
operator.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
optparse.rst Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,64253,64278,64280,64301,64303,64320,64328,64338-64339 via svnmerge from 2008-06-17 21:11:29 +00:00
os.path.rst Remove os.path.walk 2008-05-08 23:44:58 +00:00
os.rst Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from 2008-07-02 17:30:14 +00:00
ossaudiodev.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
othergui.rst Tkinter, step 3: doc updates. 2008-05-17 18:44:45 +00:00
parser.rst Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from 2008-06-10 16:37:50 +00:00
pdb.rst Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from 2008-05-16 00:03:33 +00:00
persistence.rst Create xmlrpc package. Issue #2886. 2008-05-26 11:14:17 +00:00
pickle.rst remove references of cPickle in the pickle docs (uhh. unlabeled footnotes) 2008-06-20 21:03:22 +00:00
pickletools.rst remove some old versionchanged and versionadded directives 2008-04-24 02:34:53 +00:00
pipes.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
pkgutil.rst Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from 2008-05-04 22:42:01 +00:00
platform.rst Merged revisions 61672,61674,61676-61678,61681,61683-61684 via svnmerge from 2008-03-21 01:11:52 +00:00
plistlib.rst Convert a lot of print statements to print functions in docstrings, 2008-05-13 04:55:24 +00:00
poplib.rst Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from 2008-06-10 17:40:04 +00:00
posix.rst Merged revisions 59921-59932 via svnmerge from 2008-01-12 19:39:10 +00:00
pprint.rst Merged revisions 64446,64490,64495,64526,64567 via svnmerge from 2008-07-16 03:00:45 +00:00
profile.rst Remove merge conflict 2008-05-13 04:17:25 +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 remove some old versionchanged and versionadded directives 2008-04-24 02:34:53 +00:00
pyclbr.rst Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from 2008-05-04 22:42:01 +00:00
pydoc.rst Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 2008-01-21 20:36:10 +00:00
pyexpat.rst remove some old versionchanged and versionadded directives 2008-04-24 02:34:53 +00:00
python.rst Remove the user module. 2008-05-08 20:31:11 +00:00
queue.rst Fix last traces of old threading API. 2008-06-13 06:32:25 +00:00
quopri.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
random.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
re.rst Added a note to [] that special forms & special chars lose their meaning 2008-05-31 13:05:34 +00:00
readline.rst Merged revisions 59407-59422 via svnmerge from 2007-12-08 17:28:33 +00:00
reprlib.rst Merged revisions 63361-63373,63375,63377-63380 via svnmerge from 2008-05-16 18:15:12 +00:00
resource.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
rlcompleter.rst Merged revisions 64475,64544-64545,64550,64557-64558,64565,64570,64577,64582-64583,64585,64590,64592-64593,64625,64630,64638,64647,64655-64656,64663-64664 via svnmerge from 2008-07-02 20:22:54 +00:00
runpy.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
sched.rst Convert a lot of print statements to print functions in docstrings, 2008-05-13 04:55:24 +00:00
select.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
shelve.rst Remove remaining references to UserDict module. 2008-05-26 17:47:11 +00:00
shlex.rst Renamed ConfigParser to configparser. 2008-05-14 22:59:42 +00:00
shutil.rst Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from 2008-07-16 03:43:04 +00:00
signal.rst remove some old versionchanged and versionadded directives 2008-04-24 02:34:53 +00:00
site.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
smtpd.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
smtplib.rst Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from 2008-06-10 17:40:04 +00:00
sndhdr.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
socket.rst Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from 2008-06-10 17:40:04 +00:00
socketserver.rst Fix last traces of old threading API. 2008-06-13 06:32:25 +00:00
someos.rst Add dummy_threading to toctree. 2008-06-11 20:05: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 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from 2008-05-04 22:42:01 +00:00
ssl.rst fix bad method names in ssl module (and typo in ssl doc) 2008-06-29 00:05:51 +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
stdtypes.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
string.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
stringprep.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
strings.rst #3007: remove stringio docs and fix a few nits in io docs. 2008-05-30 06:27:09 +00:00
struct.rst Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via svnmerge from 2008-05-26 17:36:47 +00:00
subprocess.rst Merged revisions 64475,64544-64545,64550,64557-64558,64565,64570,64577,64582-64583,64585,64590,64592-64593,64625,64630,64638,64647,64655-64656,64663-64664 via svnmerge from 2008-07-02 20:22:54 +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 Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +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 63402,63405,63411,63457,63467-63468,63480,63507-63508,63516,63534,63541 via svnmerge from 2008-05-26 13:48:34 +00:00
telnetlib.rst Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from 2008-06-10 17:40:04 +00:00
tempfile.rst Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from 2008-05-16 00:03:33 +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 Make test.test_support.catch_warnings more robust as discussed on python-dev. Also add explicit tests for it to test_warnings. (forward port of r64910 from trunk) 2008-07-13 12:25:08 +00:00
textwrap.rst Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from 2008-05-16 00:03:33 +00:00
threading.rst Fix last traces of old threading API. 2008-06-13 06:32:25 +00:00
time.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
timeit.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
tk.rst Tkinter, step 3: doc updates. 2008-05-17 18:44:45 +00:00
tkinter.rst Tkinter, step 3: doc updates. 2008-05-17 18:44:45 +00:00
tkinter.scrolledtext.rst Tkinter, step 3: doc updates. 2008-05-17 18:44:45 +00:00
tkinter.tix.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
tkinter.turtle.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
token.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
tokenize.rst Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from 2008-06-10 19:20:26 +00:00
trace.rst Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from 2008-02-28 11:19:05 +00:00
traceback.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
tty.rst Move the 3k reST doc tree in place. 2007-08-15 14:28:22 +00:00
types.rst Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from 2008-04-09 08:37:03 +00:00
undoc.rst Clean up list of undocumented modules as most of them have been removed in Python 3.0. 2008-07-13 01:38:36 +00:00
unicodedata.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
unittest.rst Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from 2008-05-04 22:42:01 +00:00
unix.rst The commands module has been removed. The getoutput() and getstatusoutput() 2008-05-26 19:04:21 +00:00
urllib.error.rst Review the doc changes for the urllib package creation. 2008-06-23 11:23:31 +00:00
urllib.parse.rst Review the doc changes for the urllib package creation. 2008-06-23 11:23:31 +00:00
urllib.request.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
urllib.robotparser.rst Review the doc changes for the urllib package creation. 2008-06-23 11:23:31 +00:00
uu.rst Fix old-style octal literals in the docs. 2008-05-26 17:55:52 +00:00
uuid.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
warnings.rst Merged revisions 62954-62959,62961,62963-62967,62969-62970,62972-62973,62975-62976,62978-62982,62984,62987-62996 via svnmerge from 2008-05-15 22:51:26 +00:00
wave.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
weakref.rst Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from 2008-03-23 21:54:12 +00:00
webbrowser.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
windows.rst #2879: rename _winreg to winreg. 2008-05-25 07:45:51 +00:00
winreg.rst #2879: rename _winreg to winreg. 2008-05-25 07:45:51 +00:00
winsound.rst Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +00:00
wsgiref.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +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 Remove many "versionchanged" items that didn't use the official markup, 2008-05-12 18:05:20 +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 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from 2008-03-16 00:07:10 +00:00
xml.etree.elementtree.rst Merged revisions 62490 via svnmerge from 2008-04-25 01:59:09 +00:00
xml.etree.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
xml.sax.handler.rst Update docs w.r.t. PEP 3100 changes -- patch for GHOP by Dan Finnie. 2008-02-01 11:56:49 +00:00
xml.sax.reader.rst Update docs w.r.t. PEP 3100 changes -- patch for GHOP by Dan Finnie. 2008-02-01 11:56:49 +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 Merged revisions 60094-60123 via svnmerge from 2008-01-20 09:06:41 +00:00
xmlrpc.client.rst Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
xmlrpc.server.rst Create xmlrpc package. Issue #2886. 2008-05-26 11:14:17 +00:00
zipfile.rst Merged revisions 64688 via svnmerge from 2008-07-03 14:13:42 +00:00
zipimport.rst Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 via svnmerge from 2008-05-16 00:41:41 +00:00
zlib.rst zlib.crc32 and zlib.adler32 now return an unsigned value as any sane person 2008-03-17 20:24:09 +00:00