cpython/Doc/library
Christian Heimes af98da18c0 Merged revisions 60284-60349 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r60286 | christian.heimes | 2008-01-25 15:54:23 +0100 (Fri, 25 Jan 2008) | 1 line

  setup.py doesn't pick up changes to a header file
........
  r60287 | christian.heimes | 2008-01-25 16:52:11 +0100 (Fri, 25 Jan 2008) | 2 lines

  Added the Python core headers Include/*.h and pyconfig.h as dependencies for the extensions in Modules/
  It forces a rebuild of all extensions when a header files has been modified
........
  r60291 | raymond.hettinger | 2008-01-25 20:24:46 +0100 (Fri, 25 Jan 2008) | 4 lines

  Changes 54857 and 54840 broke code and were reverted in Py2.5 just before
  it was released, but that reversion never made it to the Py2.6 head.
........
  r60296 | guido.van.rossum | 2008-01-25 20:50:26 +0100 (Fri, 25 Jan 2008) | 2 lines

  Rewrite the list_inline_repeat overflow check slightly differently.
........
  r60301 | thomas.wouters | 2008-01-25 22:09:34 +0100 (Fri, 25 Jan 2008) | 4 lines


  Use the right (portable) definition of the max of a Py_ssize_t.
........
  r60303 | thomas.wouters | 2008-01-26 02:47:05 +0100 (Sat, 26 Jan 2008) | 5 lines


  Make 'testall' work again when building in a separate directory.
  test_distutils still fails when doing that.
........
  r60305 | neal.norwitz | 2008-01-26 06:54:48 +0100 (Sat, 26 Jan 2008) | 3 lines

  Prevent this test from failing if there are transient network problems
  by retrying the host for up to 3 times.
........
  r60306 | neal.norwitz | 2008-01-26 08:26:12 +0100 (Sat, 26 Jan 2008) | 12 lines

  Use a condition variable (threading.Event) rather than sleeps and checking a
  global to determine when the server is ready to be used.  This slows the test
  down, but should make it correct.  There was a race condition before where the
  server could have assigned a port, yet it wasn't ready to serve requests.  If
  the client sent a request before the server was completely ready, it would get
  an exception.  There was machinery to try to handle this condition.  All of
  that should be unnecessary and removed if this change works.  A NOTE was
  added as a comment about what needs to be fixed.

  The buildbots will tell us if there are more errors or
  if this test is now stable.
........
  r60307 | neal.norwitz | 2008-01-26 08:38:03 +0100 (Sat, 26 Jan 2008) | 3 lines

  Fix exception in tearDown on ppc buildbot.  If there's no directory,
  that shouldn't cause the test to fail.  Just like it setUp.
........
  r60308 | raymond.hettinger | 2008-01-26 09:19:06 +0100 (Sat, 26 Jan 2008) | 3 lines

  Make PySet_Add() work with frozensets.  Works like PyTuple_SetItem() to build-up values in a brand new frozenset.
........
  r60309 | neal.norwitz | 2008-01-26 09:26:00 +0100 (Sat, 26 Jan 2008) | 1 line

  The OS X buildbot had errors with the unavailable exceptions disabled.  Restore it.
........
  r60310 | raymond.hettinger | 2008-01-26 09:37:28 +0100 (Sat, 26 Jan 2008) | 4 lines

  Let marshal build-up sets and frozensets one element at a time.
  Saves the unnecessary creation of a tuple as intermediate container.
........
  r60311 | raymond.hettinger | 2008-01-26 09:41:13 +0100 (Sat, 26 Jan 2008) | 1 line

  Update test code for change to PySet_Add().
........
  r60312 | raymond.hettinger | 2008-01-26 10:31:11 +0100 (Sat, 26 Jan 2008) | 1 line

  Revert PySet_Add() changes.
........
  r60314 | georg.brandl | 2008-01-26 10:43:35 +0100 (Sat, 26 Jan 2008) | 2 lines

  #1934: fix os.path.isabs docs.
........
  r60316 | georg.brandl | 2008-01-26 12:00:18 +0100 (Sat, 26 Jan 2008) | 2 lines

  Add missing things in re docstring.
........
  r60317 | georg.brandl | 2008-01-26 12:02:22 +0100 (Sat, 26 Jan 2008) | 2 lines

  Slashes allowed on Windows.
........
  r60319 | georg.brandl | 2008-01-26 14:41:21 +0100 (Sat, 26 Jan 2008) | 2 lines

  Fix markup again.
........
  r60320 | andrew.kuchling | 2008-01-26 14:50:51 +0100 (Sat, 26 Jan 2008) | 1 line

  Add some items
........
  r60321 | georg.brandl | 2008-01-26 15:02:38 +0100 (Sat, 26 Jan 2008) | 2 lines

  Clarify "b" mode under Unix.
........
  r60322 | georg.brandl | 2008-01-26 15:03:47 +0100 (Sat, 26 Jan 2008) | 3 lines

  #1940: make it possible to use curses.filter() before curses.initscr()
  as the documentation says.
........
  r60324 | georg.brandl | 2008-01-26 15:14:20 +0100 (Sat, 26 Jan 2008) | 3 lines

  #1473257: add generator.gi_code attribute that refers to
  the original code object backing the generator. Patch by Collin Winter.
........
  r60325 | georg.brandl | 2008-01-26 15:19:22 +0100 (Sat, 26 Jan 2008) | 2 lines

  Move C API entries to the corresponding section.
........
  r60326 | christian.heimes | 2008-01-26 17:43:35 +0100 (Sat, 26 Jan 2008) | 1 line

  Unit test fix from Giampaolo Rodola, #1938
........
  r60327 | gregory.p.smith | 2008-01-26 19:51:05 +0100 (Sat, 26 Jan 2008) | 2 lines

  Update docs for new callpack params added in r60188
........
  r60329 | neal.norwitz | 2008-01-26 21:24:36 +0100 (Sat, 26 Jan 2008) | 3 lines

  Cleanup the code a bit.  test_rfind is failing on PPC and PPC64 buildbots,
  this might fix the problem.
........
  r60330 | neal.norwitz | 2008-01-26 22:02:45 +0100 (Sat, 26 Jan 2008) | 1 line

  Always try to remove the test file even if close raises an exception
........
  r60331 | neal.norwitz | 2008-01-26 22:21:59 +0100 (Sat, 26 Jan 2008) | 3 lines

  Reduce the race condition by signalling when the server is ready
  and not trying to connect before.
........
  r60334 | neal.norwitz | 2008-01-27 00:13:46 +0100 (Sun, 27 Jan 2008) | 5 lines

  On some systems (e.g., Ubuntu on hppa) the flush()
  doesn't cause the exception, but the close() does.

  Will backport.
........
  r60335 | neal.norwitz | 2008-01-27 00:14:17 +0100 (Sun, 27 Jan 2008) | 2 lines

  Consistently use tempfile.tempdir for the db_home directory.
........
  r60338 | neal.norwitz | 2008-01-27 02:44:05 +0100 (Sun, 27 Jan 2008) | 4 lines

  Eliminate the sleeps that assume the server will start in .5 seconds.
  This should make the test less flaky.  It also speeds up the test
  by about 75% on my box (20+ seconds -> ~4 seconds).
........
  r60342 | neal.norwitz | 2008-01-27 06:02:34 +0100 (Sun, 27 Jan 2008) | 6 lines

  Try to prevent this test from being flaky.  We might need a sleep in here
  which isn't as bad as it sounds.  The close() *should* raise an exception,
  so if it didn't we should give more time to sync and really raise it.

  Will backport.
........
  r60344 | jeffrey.yasskin | 2008-01-27 06:40:35 +0100 (Sun, 27 Jan 2008) | 3 lines

  Make rational.gcd() public and allow Rational to take decimal strings, per
  Raymond's advice.
........
  r60345 | neal.norwitz | 2008-01-27 08:36:03 +0100 (Sun, 27 Jan 2008) | 3 lines

  Mostly reformat.  Also set an error and return NULL if neither MS_WINDOWS
  nor UNIX is defined.  This may have caused problems on cygwin.
........
  r60346 | neal.norwitz | 2008-01-27 08:37:38 +0100 (Sun, 27 Jan 2008) | 3 lines

  Use int for the sign rather than a char.  char can be signed or unsigned.
  It's system dependent.  This might fix the problem with test_rfind failing.
........
  r60347 | neal.norwitz | 2008-01-27 08:41:33 +0100 (Sun, 27 Jan 2008) | 1 line

  Add stdarg include for va_list to get this to compile on cygwin
........
  r60348 | raymond.hettinger | 2008-01-27 11:13:57 +0100 (Sun, 27 Jan 2008) | 1 line

  Docstring nit
........
  r60349 | raymond.hettinger | 2008-01-27 11:47:55 +0100 (Sun, 27 Jan 2008) | 1 line

  Removed an unnecessary and confusing paragraph from the namedtuple docs.
........
2008-01-27 15:18:18 +00:00
..
__future__.rst
__main__.rst
_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 Merged revisions 59843-59863 via svnmerge from 2008-01-09 00:17:24 +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
anydbm.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
archiving.rst
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
basehttpserver.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
bdb.rst Fix now-wrong :keyword: markup. Remove the section about 2008-01-20 11:22:21 +00:00
binascii.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
binhex.rst
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
cgi.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
cgihttpserver.rst
cgitb.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
chunk.rst
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
codecs.rst Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in configure. 2008-01-07 18:10:24 +00:00
codeop.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
collections.rst Merged revisions 60284-60349 via svnmerge from 2008-01-27 15:18:18 +00:00
colorpicker.rst
colorsys.rst
commands.rst
compileall.rst
configparser.rst Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 2008-01-21 20:36:10 +00:00
constants.rst Merged revisions 60124-60142 via svnmerge from 2008-01-20 15:14:11 +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
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
csv.rst Merged revisions 59774-59783 via svnmerge from 2008-01-06 17:05:40 +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
curses.rst Merged revisions 60053-60078 via svnmerge from 2008-01-19 16:21:02 +00:00
custominterp.rst
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
debug.rst remove hotshot profiler from Py3k 2007-10-11 18:01:43 +00:00
decimal.rst Merged revisions 59921-59932 via svnmerge from 2008-01-12 19:39:10 +00:00
development.rst
difflib.rst Merged revisions 59883-59920 via svnmerge from 2008-01-11 16:17:00 +00:00
dircache.rst
dis.rst Merged revisions 59921-59932 via svnmerge from 2008-01-12 19:39:10 +00:00
distutils.rst
dl.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
doctest.rst Merged revisions 59883-59920 via svnmerge from 2008-01-11 16:17:00 +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
dummy_threading.rst
easydialogs.rst Remove mentions of "long integer" in the docs. 2007-11-29 17:24:34 +00:00
email-examples.rst
email.charset.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
email.encoders.rst
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
exceptions.rst Merged revisions 59921-59932 via svnmerge from 2008-01-12 19:39:10 +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 Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 2008-01-21 20:36:10 +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
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
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
frameworks.rst
ftplib.rst Merged revisions 60284-60349 via svnmerge from 2008-01-27 15:18:18 +00:00
functions.rst Merged revisions 60176-60209 via svnmerge from 2008-01-23 08:24:23 +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 Copied doc for reload() from trunk's function.rst to imp.rst 2008-01-07 17:19:16 +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
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
ic.rst
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 Copied doc for reload() from trunk's function.rst to imp.rst 2008-01-07 17:19:16 +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 59883-59920 via svnmerge from 2008-01-11 16:17:00 +00:00
internet.rst
intro.rst
ipc.rst Merge the trunk changes in. Breaks socket.ssl for now. 2007-08-28 21:37:11 +00:00
itertools.rst Fix merge glitch. 2008-01-24 23:34:34 +00:00
keyword.rst
language.rst
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 60234-60244 via svnmerge from 2008-01-24 16:21:45 +00:00
mac.rst
macos.rst
macosa.rst Convert all print statements in the docs. 2007-09-04 07:15:32 +00:00
macostools.rst
macpath.rst
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
markup.rst
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
misc.rst
mm.rst
mmap.rst Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 2008-01-21 20:36:10 +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 59985-60000,60002,60005-60007,60009-60042 via svnmerge from 2008-01-18 09:56:22 +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
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 59952-59984 via svnmerge from 2008-01-15 21:44:53 +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 60094-60123 via svnmerge from 2008-01-20 09:06:41 +00:00
os.path.rst Merged revisions 60284-60349 via svnmerge from 2008-01-27 15:18:18 +00:00
os.rst Remove versionadded tag. 2008-01-20 09:11:30 +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
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
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
plistlib.rst Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 2008-01-21 20:36:10 +00:00
poplib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
posix.rst Merged revisions 59921-59932 via svnmerge from 2008-01-12 19:39:10 +00:00
pprint.rst Merged revisions 60176-60209 via svnmerge from 2008-01-23 08:24:23 +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
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 Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 2008-01-21 20:36:10 +00:00
pyexpat.rst Merged revisions 59843-59863 via svnmerge from 2008-01-09 00:17:24 +00:00
python.rst #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
queue.rst Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from 2008-01-18 09:56:22 +00:00
quopri.rst
random.rst Take Tim's advice and have random.sample() support only sequences and sets. 2008-01-14 01:00:53 +00:00
rational.rst Merged revisions 60053-60078 via svnmerge from 2008-01-19 16:21:02 +00:00
re.rst Merged revisions 59883-59920 via svnmerge from 2008-01-11 16:17:00 +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 59985-60000,60002,60005-60007,60009-60042 via svnmerge from 2008-01-18 09:56:22 +00:00
scrolledtext.rst
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 60124-60142 via svnmerge from 2008-01-20 15:14:11 +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
smtplib.rst Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from 2008-01-18 09:56:22 +00:00
sndhdr.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00
socket.rst Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from 2008-01-18 09:56:22 +00:00
socketserver.rst Merged revisions 60080-60089,60091-60093 via svnmerge from 2008-01-19 20:08:23 +00:00
someos.rst
spwd.rst Get rid of the remaining versionadded/versionchanged directives. 2007-09-01 13:51:09 +00:00
sqlite3.rst Merged revisions 60094-60123 via svnmerge from 2008-01-20 09:06:41 +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 59822-59841 via svnmerge from 2008-01-07 21:14:23 +00:00
string.rst Fix markup. 2008-01-11 12:58:40 +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 59774-59783 via svnmerge from 2008-01-06 17:05:40 +00:00
sunau.rst
symbol.rst
sys.rst Merged revisions 60124-60142 via svnmerge from 2008-01-20 15:14:11 +00:00
syslog.rst
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 Merged revisions 59774-59783 via svnmerge from 2008-01-06 17:05:40 +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 59952-59984 via svnmerge from 2008-01-15 21:44:53 +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 60080-60089,60091-60093 via svnmerge from 2008-01-19 20:08:23 +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
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 Merged revisions 60080-60089,60091-60093 via svnmerge from 2008-01-19 20:08:23 +00:00
traceback.rst Merged revisions 59333-59370 via svnmerge from 2007-12-05 20:18:38 +00:00
tty.rst
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
urllib.rst Merged revisions 60124-60142 via svnmerge from 2008-01-20 15:14:11 +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
userdict.rst remove/update many of the references to dict.iter*() 2007-09-04 17:33:11 +00:00
uu.rst
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
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 Merged revisions 60094-60123 via svnmerge from 2008-01-20 09:06:41 +00:00
xmlrpclib.rst Merged revisions 59921-59932 via svnmerge from 2008-01-12 19:39:10 +00:00
zipfile.rst Merged revisions 60094-60123 via svnmerge from 2008-01-20 09:06:41 +00:00
zipimport.rst Merged revisions 59774-59783 via svnmerge from 2008-01-06 17:05:40 +00:00
zlib.rst Merged revisions 59605-59624 via svnmerge from 2007-12-31 16:14:33 +00:00