cpython/Modules
Benjamin Peterson d7b032841a Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r66394 | benjamin.peterson | 2008-09-11 17:04:02 -0500 (Thu, 11 Sep 2008) | 1 line

  fix typo
........
  r66404 | gerhard.haering | 2008-09-12 08:54:06 -0500 (Fri, 12 Sep 2008) | 2 lines

  sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API.
........
  r66412 | gerhard.haering | 2008-09-12 13:58:57 -0500 (Fri, 12 Sep 2008) | 2 lines

  Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.
........
  r66414 | gerhard.haering | 2008-09-12 17:33:22 -0500 (Fri, 12 Sep 2008) | 2 lines

  Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
........
  r66424 | andrew.kuchling | 2008-09-12 20:22:08 -0500 (Fri, 12 Sep 2008) | 1 line

  #687648 from Robert Schuppenies: use classic division.  (RM Barry gave permission to update the demos.)
........
  r66425 | andrew.kuchling | 2008-09-12 20:27:33 -0500 (Fri, 12 Sep 2008) | 1 line

  #687648 from Robert Schuppenies: use classic division.  From me: don't use string exception; flush stdout after printing
........
  r66426 | andrew.kuchling | 2008-09-12 20:34:41 -0500 (Fri, 12 Sep 2008) | 1 line

  #687648 from Robert Schuppenies: use classic division.  From me: don't use string exception; add __main__ section
........
  r66427 | andrew.kuchling | 2008-09-12 20:42:55 -0500 (Fri, 12 Sep 2008) | 1 line

  #687648 from Robert Schuppenies: use classic division.  From me: remove two stray semicolons
........
  r66428 | andrew.kuchling | 2008-09-12 20:43:28 -0500 (Fri, 12 Sep 2008) | 1 line

  #687648 from Robert Schuppenies: use classic division.
........
  r66429 | andrew.kuchling | 2008-09-12 20:47:02 -0500 (Fri, 12 Sep 2008) | 1 line

  Remove semicolon
........
  r66430 | andrew.kuchling | 2008-09-12 20:48:36 -0500 (Fri, 12 Sep 2008) | 1 line

  Subclass exception
........
  r66431 | andrew.kuchling | 2008-09-12 20:56:56 -0500 (Fri, 12 Sep 2008) | 1 line

  Fix SyntaxError
........
  r66432 | andrew.kuchling | 2008-09-12 20:57:25 -0500 (Fri, 12 Sep 2008) | 1 line

  Update uses of string exceptions
........
  r66433 | andrew.kuchling | 2008-09-12 21:08:30 -0500 (Fri, 12 Sep 2008) | 1 line

  Use title case
........
  r66434 | andrew.kuchling | 2008-09-12 21:09:15 -0500 (Fri, 12 Sep 2008) | 1 line

  Remove extra 'the'; the following title includes it
........
  r66435 | andrew.kuchling | 2008-09-12 21:11:51 -0500 (Fri, 12 Sep 2008) | 1 line

  #3288: Document as_integer_ratio
........
  r66436 | andrew.kuchling | 2008-09-12 21:14:15 -0500 (Fri, 12 Sep 2008) | 1 line

  Use title case
........
2008-09-13 15:58:53 +00:00
..
_ctypes Merged revisions 66006 via svnmerge from 2008-08-24 05:48:10 +00:00
_multiprocessing Merged revisions 66377 via svnmerge from 2008-09-10 22:24:24 +00:00
_sqlite Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from 2008-09-13 15:58:53 +00:00
cjkcodecs Issue #3575: Incremental decoder's decode function now takes bytearray 2008-08-17 12:59:57 +00:00
expat Remove support for BeOS 2007-08-17 12:57:41 +00:00
zlib Remove RISCOS support 2007-08-16 14:35:24 +00:00
Setup.config.in Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 2008-05-25 13:05:15 +00:00
Setup.dist compile _bytesio and _stringio into the binary and initalize stdio before site fixing #3279 2008-09-05 23:27:15 +00:00
_bisectmodule.c Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 via svnmerge from 2008-07-31 16:23:04 +00:00
_bytesio.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
_codecsmodule.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
_collectionsmodule.c Merged revisions 66377 via svnmerge from 2008-09-10 22:24:24 +00:00
_csv.c Merged revisions 64114 via svnmerge from 2008-06-18 00:47:36 +00:00
_curses_panel.c #3247: get rid of Py_FindMethod 2008-07-02 22:38:47 +00:00
_cursesmodule.c #3247: get rid of Py_FindMethod 2008-07-02 22:38:47 +00:00
_dbmmodule.c fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap, 2008-09-06 21:34:51 +00:00
_elementtree.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
_fileio.c Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-66074,66080,66082-66083,66090-66093,66097-66099,66103,66105,66110,66118 via svnmerge from 2008-09-02 00:31:15 +00:00
_functoolsmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
_gdbmmodule.c #3247: get rid of Py_FindMethod 2008-07-02 22:38:47 +00:00
_gestalt.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
_hashopenssl.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
_heapqmodule.c Remove 2.6 compatibility code: 2008-06-17 21:25:35 +00:00
_json.c #3560: cleanup C memoryview API 2008-08-19 18:22:14 +00:00
_localemodule.c Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin. 2008-09-03 18:58:51 +00:00
_lsprof.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
_pickle.c #3640: Correct a crash in cPickle on 64bit platforms, in the case of deeply nested lists or dicts. 2008-09-11 21:03:37 +00:00
_randommodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
_sre.c Merged revisions 66364 via svnmerge from 2008-09-10 14:30:50 +00:00
_ssl.c clean up ssl.py; expose unwrap and add test for it 2008-08-12 16:56:25 +00:00
_stringio.c Issue 2918: Merge StringIO and cStringIO. 2008-06-11 22:58:36 +00:00
_struct.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
_testcapimodule.c Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,66020 via svnmerge from 2008-08-25 21:05:21 +00:00
_threadmodule.c #3247 Get rid of Py_FindMethod; use tp_members instead. 2008-07-02 20:50:16 +00:00
_tkinter.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
_weakref.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
addrinfo.h Cruft removal: 2006-12-28 04:47:50 +00:00
ar_beos Moved BeOS/ar-fake and BeOS/linkmodule to Modules/ar_beos and 2001-02-16 03:24:50 +00:00
arraymodule.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
atexitmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
audioop.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
binascii.c Fix #3651 various memory leaks when using the buffer interface 2008-08-27 00:31:37 +00:00
bz2module.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
cmathmodule.c 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
config.c.in Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
cryptmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
datetimemodule.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
errnomodule.c Merged revisions 64214 via svnmerge from 2008-06-13 01:09:34 +00:00
fcntlmodule.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
fpectlmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
fpetestmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
gc_weakref.txt SF 1055820: weakref callback vs gc vs threads 2004-10-30 23:09:22 +00:00
gcmodule.c Closes release blocker #3627. 2008-08-24 07:08:55 +00:00
getaddrinfo.c SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners. 2007-02-27 19:06:23 +00:00
getbuildinfo.c Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
getnameinfo.c SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners. 2007-02-27 19:06:23 +00:00
getpath.c Issue #3813: cannot lanch python.exe via symbolic link on cygwin. 2008-09-09 13:56:11 +00:00
grpmodule.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
itertoolsmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
ld_so_aix SF Bug # 941346, AIX shared library fix 2005-10-03 03:57:09 +00:00
ld_so_beos Remove a hard coded Python version, and a now incorrect relative path. Closes 2001-02-16 03:27:35 +00:00
main.c Revert r33661, which broke all buildbots. 2008-09-09 07:28:22 +00:00
makesetup Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
makexp_aix - Changes donated by Elemental Security to make it work on AIX 5.3 2005-09-14 18:09:42 +00:00
mathmodule.c Merged revisions 65258,65292,65299,65308-65309,65315,65326 via svnmerge from 2008-08-01 08:16:13 +00:00
md5module.c Use s* to receive data. Fixes #3552. 2008-08-14 15:52:23 +00:00
mmapmodule.c fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap, 2008-09-06 21:34:51 +00:00
nismodule.c Merged revisions 64685 via svnmerge from 2008-07-02 23:44:19 +00:00
operator.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
ossaudiodev.c fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap, 2008-09-06 21:34:51 +00:00
parsermodule.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
posixmodule.c Merged revisions 65745 via svnmerge from 2008-08-17 09:30:15 +00:00
pwdmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
pyexpat.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
python.c Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin. 2008-09-03 18:58:51 +00:00
readline.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
resource.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
rotatingtree.c randombits(): Stop compiler warning about mixing 2006-02-15 03:01:30 +00:00
rotatingtree.h Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 2006-05-27 19:21:47 +00:00
selectmodule.c Merged revisions 65182 via svnmerge from 2008-07-23 16:13:07 +00:00
sha1module.c Zero-initialize buf. Fixes #3557. 2008-08-15 06:27:17 +00:00
sha256module.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
sha512module.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
signalmodule.c Merged revisions 66006 via svnmerge from 2008-08-24 05:48:10 +00:00
socketmodule.c Merged revisions 65654 via svnmerge from 2008-08-13 15:53:07 +00:00
socketmodule.h Merged revisions 64267-64272 via svnmerge from 2008-06-14 11:59:52 +00:00
spwdmodule.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
sre.h #2834: Change re module semantics, so that str and bytes mixing is forbidden, 2008-08-19 17:56:33 +00:00
sre_constants.h Implemented non-recursive SRE matching. 2003-10-17 22:13:16 +00:00
symtablemodule.c Merged revisions 65715,65724,65726,65732,65736-65739,65775 via svnmerge from 2008-08-17 18:02:44 +00:00
syslogmodule.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
termios.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
testcapi_long.h Fix error in comment, and in test_long_api and test_longlong_api remove 2001-06-16 08:10:13 +00:00
timemodule.c Rename PyUnicode_AsString -> _PyUnicode_AsString and 2008-08-07 18:54:33 +00:00
tkappinit.c Remove warning about implicit declaration of strcmp() 2004-06-13 20:29:55 +00:00
unicodedata.c Merged revisions 66362 via svnmerge from 2008-09-10 14:08:48 +00:00
unicodedata_db.h Merged revisions 66362 via svnmerge from 2008-09-10 14:08:48 +00:00
unicodename_db.h Merged revisions 66362 via svnmerge from 2008-09-10 14:08:48 +00:00
xxmodule.c Correct a typo that breaks test_distutils 2008-07-02 23:22:30 +00:00
xxsubtype.c Implement PEP 3121: new module initialization and finalization API. 2008-06-11 05:26:20 +00:00
yuv.h REMOVED all CWI, CNRI and BeOpen copyright markings. 2000-09-01 23:29:29 +00:00
yuvconvert.c REMOVED all CWI, CNRI and BeOpen copyright markings. 2000-09-01 23:29:29 +00:00
zipimport.c Fixes release blocker issue #3492 and #3790. 2008-09-06 20:13:06 +00:00
zlibmodule.c Fixes release blocker issue #3492 and #3790. 2008-09-06 20:13:06 +00:00