cpython/Modules
2010-08-25 07:38:15 +00:00
..
_ctypes Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use memcpy to convert between the two (as already done when wchar_t is unsigned) 2010-08-24 21:57:33 +00:00
_io Issue #9617: Signals received during a low-level write operation aren't 2010-08-21 19:09:32 +00:00
_multiprocessing Merged revisions 81692 via svnmerge from 2010-06-04 17:20:56 +00:00
_sqlite #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute. 2010-06-01 01:32:12 +00:00
cjkcodecs
expat
zlib Import files from zlib 1.2.5. 2010-07-30 20:03:17 +00:00
_bisectmodule.c
_codecsmodule.c Merged revisions 81860 via svnmerge from 2010-06-09 16:38:55 +00:00
_collectionsmodule.c Fix <deque iterator>.__length_hint__() under 64-bit Windows. 2010-08-17 18:30:06 +00:00
_csv.c Fix more 64-bit warnings. 2010-08-15 18:51:10 +00:00
_curses_panel.c
_cursesmodule.c - Issue #7567: PyCurses_setupterm: Don't call `setupterm' twice. 2010-07-30 21:40:57 +00:00
_datetimemodule.c Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API 2010-08-05 17:34:27 +00:00
_dbmmodule.c
_elementtree.c Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 2010-08-11 17:31:17 +00:00
_functoolsmodule.c Issue #665761: functools.reduce() will no longer mask exceptions other 2010-08-16 18:55:46 +00:00
_gdbmmodule.c
_gestalt.c
_hashopenssl.c Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 2010-08-11 17:31:17 +00:00
_heapqmodule.c
_json.c #9087: update json docstrings -- unicode and long do not exist anymore. 2010-08-02 20:16:18 +00:00
_localemodule.c Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use memcpy to convert between the two (as already done when wchar_t is unsigned) 2010-08-24 21:57:33 +00:00
_lsprof.c
_math.c Indentation and PEP 7 fixes. 2010-07-06 15:00:40 +00:00
_math.h
_pickle.c Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x 2010-07-17 22:50:45 +00:00
_posixsubprocess.c
_randommodule.c tabbing no longer applicable 2010-08-24 18:08:22 +00:00
_scproxy.c Merged revisions 82150 via svnmerge from 2010-06-27 12:51:31 +00:00
_sre.c
_ssl.c Fix memory leak in ssl module. 2010-08-03 18:31:54 +00:00
_struct.c Issue #9422: Fix memory leak when re-initializing a struct.Struct object. 2010-07-29 21:41:59 +00:00
_testcapimodule.c Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use 2010-06-25 00:02:38 +00:00
_threadmodule.c Issue #8983: Corrected docstrings. 2010-08-16 20:17:07 +00:00
_time.c Fixed a typo in a comment. 2010-06-18 16:22:00 +00:00
_time.h Issue #9012: "Separate compilation of time and datetime modules." 2010-06-16 22:38:15 +00:00
_tkinter.c Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode 2010-05-15 16:27:27 +00:00
_weakref.c
addrinfo.h
ar_beos
arraymodule.c Issue #9526: Remove outdated casts to int that were preventing the array module from working correctly with arrays > 2GB. 2010-08-06 09:36:57 +00:00
atexitmodule.c
audioop.c Fix refleak in Modules/audioop.c. 2010-07-04 10:15:11 +00:00
binascii.c Fix more 64-bit warnings. 2010-08-15 18:51:10 +00:00
bz2module.c Issue #8397: Raise an error when attempting to mix iteration and regular 2010-08-01 20:08:46 +00:00
cmathmodule.c Issue #9165: Add math.isfinite and cmath.isfinite. 2010-07-11 17:38:24 +00:00
config.c.in Merged revisions 81602 via svnmerge from 2010-05-29 21:05:27 +00:00
cryptmodule.c
errnomodule.c Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch by 2010-08-18 21:05:19 +00:00
fcntlmodule.c
fpectlmodule.c
fpetestmodule.c
gc_weakref.txt
gcmodule.c Issue #477863: Print a warning at shutdown if gc.garbage is not empty. 2010-08-08 22:18:46 +00:00
getaddrinfo.c
getbuildinfo.c
getnameinfo.c
getpath.c Fix indentation in Modules/getpath.c 2010-08-14 12:34:41 +00:00
grpmodule.c Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode 2010-05-15 16:27:27 +00:00
hashlib.h
itertoolsmodule.c Merged revisions 81889 via svnmerge from 2010-06-11 02:26:42 +00:00
ld_so_aix
ld_so_beos
main.c PYTHONFSENCODING is not available on Windows or Mac OS X 2010-08-19 11:36:43 +00:00
makesetup Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when running 2010-07-09 16:30:58 +00:00
makexp_aix
mathmodule.c Improve docstrings for isnan, isinf and isfinite. 2010-07-11 18:13:41 +00:00
md5module.c
mmapmodule.c Fix other warnings under 64-bit Windows. 2010-08-15 18:07:50 +00:00
nismodule.c Decode NIS data to fs encoding, using the surrogate error handler. 2010-08-19 09:11:51 +00:00
operator.c
ossaudiodev.c
parsermodule.c Issue #9130: Validate ellipsis tokens in relative imports. 2010-07-04 18:38:57 +00:00
posixmodule.c #7647: add ST_RDONLY, ST_NOSUID constants to os module. 2010-08-18 22:30:34 +00:00
pwdmodule.c Issue #8983: Corrected docstrings. 2010-08-16 20:17:07 +00:00
pyexpat.c remove dead code #9292 2010-08-08 16:54:58 +00:00
python.c
readline.c Under OS X, history_get from readline returns a const char *, but the local 2010-08-22 20:36:25 +00:00
resource.c
rotatingtree.c
rotatingtree.h
selectmodule.c #6867: epoll.register() returns None. 2010-08-02 20:47:56 +00:00
Setup.config.in
Setup.dist Removing the comment lines for the modules which were made to build statically. 2010-08-15 03:59:07 +00:00
sha1module.c Rename some macros in the sha1 module to no longer conflict with termios.h. 2010-07-23 15:43:14 +00:00
sha256module.c
sha512module.c
signalmodule.c Fix #9324: Add parameter validation to signal.signal on Windows in order 2010-08-06 19:27:32 +00:00
socketmodule.c Issue #1027206: getnameinfo is now restricted to numeric addresses as input. 2010-08-25 07:38:15 +00:00
socketmodule.h
spwdmodule.c Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode 2010-05-15 16:27:27 +00:00
sre.h
sre_constants.h
symtablemodule.c
syslogmodule.c
termios.c
testcapi_long.h
timemodule.c Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API 2010-08-05 17:34:27 +00:00
tkappinit.c
tkinter.h
unicodedata.c
unicodedata_db.h
unicodename_db.h
xxmodule.c Issue #9089: Remove references to intobject.c and intobject.h from comments. 2010-06-27 18:19:09 +00:00
xxsubtype.c
zipimport.c Issue #9425: zipimporter_repr() uses unicode 2010-08-17 00:04:48 +00:00
zlibmodule.c