cpython/Modules
Benjamin Peterson 78565b2216 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73376 | benjamin.peterson | 2009-06-11 17:29:23 -0500 (Thu, 11 Jun 2009) | 1 line

  remove check for case handled in sub-function
........
  r73393 | alexandre.vassalotti | 2009-06-12 13:56:57 -0500 (Fri, 12 Jun 2009) | 2 lines

  Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.
........
  r73398 | alexandre.vassalotti | 2009-06-12 15:57:12 -0500 (Fri, 12 Jun 2009) | 3 lines

  Add const qualifier to PyErr_SetFromErrnoWithFilename and to
  PyErr_SetFromErrnoWithUnicodeFilename.
........
  r73400 | alexandre.vassalotti | 2009-06-12 16:43:47 -0500 (Fri, 12 Jun 2009) | 2 lines

  Delete outdated make file for building the parser with MSVC 6.
........
  r73404 | benjamin.peterson | 2009-06-12 20:40:00 -0500 (Fri, 12 Jun 2009) | 1 line

  keep the slice.step field as NULL if no step expression is given
........
  r73405 | benjamin.peterson | 2009-06-12 22:46:30 -0500 (Fri, 12 Jun 2009) | 1 line

  prevent import statements from assigning to None
........
  r73409 | benjamin.peterson | 2009-06-13 08:06:21 -0500 (Sat, 13 Jun 2009) | 1 line

  allow importing from a module named None if it has an 'as' clause
........
  r73419 | benjamin.peterson | 2009-06-13 11:19:19 -0500 (Sat, 13 Jun 2009) | 1 line

  set Print.values to NULL if there are no values
........
  r73420 | benjamin.peterson | 2009-06-13 12:08:53 -0500 (Sat, 13 Jun 2009) | 1 line

  give a better error message when deleting ()
........
  r73421 | benjamin.peterson | 2009-06-13 15:23:33 -0500 (Sat, 13 Jun 2009) | 1 line

  when no module is given in a 'from' relative import, make ImportFrom.module NULL
........
  r73432 | amaury.forgeotdarc | 2009-06-14 16:20:40 -0500 (Sun, 14 Jun 2009) | 3 lines

  #6227: Because of a wrong indentation, the test was not testing what it should.
  Ensure that the snippet in doctest_aliases actually contains aliases.
........
  r73457 | benjamin.peterson | 2009-06-16 18:13:09 -0500 (Tue, 16 Jun 2009) | 1 line

  add underscores
........
  r73460 | benjamin.peterson | 2009-06-16 22:23:04 -0500 (Tue, 16 Jun 2009) | 1 line

  remove unused 'encoding' member from the compiler struct
........
  r73485 | benjamin.peterson | 2009-06-19 17:07:47 -0500 (Fri, 19 Jun 2009) | 1 line

  remove duplicate test
........
  r73486 | benjamin.peterson | 2009-06-19 17:09:17 -0500 (Fri, 19 Jun 2009) | 1 line

  add missing assertion #6313
........
  r73488 | benjamin.peterson | 2009-06-19 17:16:28 -0500 (Fri, 19 Jun 2009) | 1 line

  show that this one isn't used
........
  r73489 | benjamin.peterson | 2009-06-19 17:21:12 -0500 (Fri, 19 Jun 2009) | 1 line

  use closures
........
  r73501 | benjamin.peterson | 2009-06-21 18:01:07 -0500 (Sun, 21 Jun 2009) | 1 line

  don't need to add the name 'lambda' as assigned
........
  r73502 | benjamin.peterson | 2009-06-21 18:03:36 -0500 (Sun, 21 Jun 2009) | 1 line

  remove tmpname support since it's no longer used
........
  r73513 | benjamin.peterson | 2009-06-22 20:18:57 -0500 (Mon, 22 Jun 2009) | 1 line

  fix grammar
........
  r73514 | benjamin.peterson | 2009-06-22 22:01:56 -0500 (Mon, 22 Jun 2009) | 1 line

  remove some unused symtable constants
........
2009-06-28 19:19:51 +00:00
..
_ctypes Merged revisions 72794 via svnmerge from 2009-05-20 17:57:28 +00:00
_io Merged revisions 73603 via svnmerge from 2009-06-28 11:07:03 +00:00
_multiprocessing Merged revisions 70908,70939,71009,71022,71036 via svnmerge from 2009-04-05 21:24:58 +00:00
_sqlite Merge revision 71222 from trunk: #5615: make it possible to configure --without-threads again. 2009-04-05 11:47:34 +00:00
cjkcodecs add a replacement API for PyCObject, PyCapsule #5630 2009-05-05 22:31:58 +00:00
expat
zlib
Setup.config.in
Setup.dist #3791: remove last traces of bsddb. 2009-06-04 09:30:30 +00:00
_bisectmodule.c
_codecsmodule.c Merged revisions 72404-72406 via svnmerge from 2009-05-06 14:41:26 +00:00
_collectionsmodule.c For collections.deque() objects, expose the maxlen parameter as a read-only attribute. 2009-03-10 12:56:32 +00:00
_csv.c
_curses_panel.c
_cursesmodule.c add a replacement API for PyCObject, PyCapsule #5630 2009-05-05 22:31:58 +00:00
_dbmmodule.c
_elementtree.c add a replacement API for PyCObject, PyCapsule #5630 2009-05-05 22:31:58 +00:00
_functoolsmodule.c Make some private functions static (thanks `make smelly`) 2009-05-24 21:25:49 +00:00
_gdbmmodule.c
_gestalt.c
_hashopenssl.c remove old undocumented compat interfaces in hashlib and pwd #5881 2009-05-04 22:25:21 +00:00
_heapqmodule.c
_json.c Fix TODO: do the sort by just the key, not the key/value pair. 2009-05-27 11:19:02 +00:00
_localemodule.c Fix for issue 6202 2009-06-07 15:29:46 +00:00
_lsprof.c
_pickle.c Issue #6137: The pickle module now translates module names when loading 2009-06-04 20:32:06 +00:00
_randommodule.c Merged revisions 72344 via svnmerge from 2009-05-05 17:54:36 +00:00
_sre.c
_ssl.c Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from 2009-06-28 17:22:03 +00:00
_struct.c Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from 2009-06-28 17:22:03 +00:00
_testcapimodule.c Issue #6012: Add cleanup support to O& argument parsing. 2009-05-29 14:47:46 +00:00
_threadmodule.c
_tkinter.c Merged revisions 71210 via svnmerge from 2009-04-10 22:19:09 +00:00
_weakref.c
addrinfo.h
ar_beos
arraymodule.c Py_BuildValue's 'c' code should use byte strings #5666 2009-04-03 22:18:11 +00:00
atexitmodule.c
audioop.c Silence compiler warning. 2009-05-16 01:46:11 +00:00
binascii.c
bz2module.c
cmathmodule.c Merged revisions 70062 via svnmerge from 2009-02-28 15:53:24 +00:00
config.c.in
cryptmodule.c
datetimemodule.c add a replacement API for PyCObject, PyCapsule #5630 2009-05-05 22:31:58 +00:00
errnomodule.c
fcntlmodule.c Merged revisions 72887 via svnmerge from 2009-05-24 15:46:13 +00:00
fpectlmodule.c
fpetestmodule.c
gc_weakref.txt
gcmodule.c Merged revisions 70546 via svnmerge from 2009-03-23 18:52:06 +00:00
getaddrinfo.c
getbuildinfo.c Merged revisions 72871-72872 via svnmerge from 2009-05-23 19:36:27 +00:00
getnameinfo.c
getpath.c
grpmodule.c Merged revisions 73016 via svnmerge from 2009-05-29 16:01:34 +00:00
hashlib.h
itertoolsmodule.c add sys prefix 2009-06-24 02:29:57 +00:00
ld_so_aix Merged revisions 72180 via svnmerge from 2009-05-01 21:18:27 +00:00
ld_so_beos
main.c
makesetup
makexp_aix
mathmodule.c
md5module.c Fixed memory leak on failure. This is related to issue5403 but won't crash on py3k. 2009-03-03 07:49:01 +00:00
mmapmodule.c Merged revisions 73425 via svnmerge from 2009-06-14 04:58:16 +00:00
nismodule.c
operator.c
ossaudiodev.c
parsermodule.c Merged revisions 72924 via svnmerge from 2009-05-25 21:10:36 +00:00
posixmodule.c Merged revisions 73603 via svnmerge from 2009-06-28 11:07:03 +00:00
pwdmodule.c Merged revisions 73016 via svnmerge from 2009-05-29 16:01:34 +00:00
pyexpat.c - Issue #5590: Remove unused global variable in pyexpat extension. 2009-06-22 13:05:52 +00:00
python.c Issue #6097: Escape UTF-8 surrogates resulting from mbstocs conversion 2009-05-29 16:22:26 +00:00
readline.c Merged revisions 71229,71271 via svnmerge from 2009-04-07 13:24:27 +00:00
resource.c Clean up some int/long detection remnants in resource module. 2009-05-08 21:28:46 +00:00
rotatingtree.c
rotatingtree.h
selectmodule.c
sha1module.c Fixed memory leak on failure. This is related to issue5403 but won't crash on py3k. 2009-03-03 07:49:01 +00:00
sha256module.c remove old undocumented compat interfaces in hashlib and pwd #5881 2009-05-04 22:25:21 +00:00
sha512module.c remove old undocumented compat interfaces in hashlib and pwd #5881 2009-05-04 22:25:21 +00:00
signalmodule.c
socketmodule.c turn this into a macro 2009-05-06 02:43:58 +00:00
socketmodule.h turn this into a macro 2009-05-06 02:43:58 +00:00
spwdmodule.c Issue #4859: Implement PEP 383 for pwd, spwd, and grp. 2009-05-29 15:23:17 +00:00
sre.h
sre_constants.h
symtablemodule.c Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from 2009-06-28 19:19:51 +00:00
syslogmodule.c
termios.c
testcapi_long.h
timemodule.c Issue #6183: Disables wcsftime on VC6. 2009-06-03 05:19:18 +00:00
tkappinit.c
tkinter.h Merged revisions 71210 via svnmerge from 2009-04-10 22:19:09 +00:00
unicodedata.c add a replacement API for PyCObject, PyCapsule #5630 2009-05-05 22:31:58 +00:00
unicodedata_db.h Merged revisions 72054 via svnmerge from 2009-04-27 22:31:40 +00:00
unicodename_db.h
xxmodule.c
xxsubtype.c
zipimport.c Fix a warning. 2009-05-17 08:20:45 +00:00
zlibmodule.c