..
_ctypes
Issue #9041: raised exception is misleading
14 years ago
_decimal
word.digits are always initialized before use in the Taylor series loop,
14 years ago
_io
Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore
14 years ago
_multiprocessing
Make multiprocessing's shared memory use memoryview instead of raw pointer
14 years ago
_sqlite
Merge branch '3.2'
14 years ago
cjkcodecs
Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)
14 years ago
expat
Fixes Issue 14234: fix for the previous commit, keep compilation when
14 years ago
zlib
Add file needed to make distclean.
16 years ago
Setup.config.in
Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.
18 years ago
Setup.dist
Merge 3.2, fix typos.
14 years ago
_bisectmodule.c
Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows.
14 years ago
_bz2module.c
Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one.
14 years ago
_codecsmodule.c
#13406: fix more deprecation warnings and move the deprecation of unicode-internal earlier in the code.
14 years ago
_collectionsmodule.c
Issue #14288: Serialization support for builtin iterators.
14 years ago
_cryptmodule.c
Issue #10924: Adding salt and Modular Crypt Format to crypt library.
15 years ago
_csv.c
Issue #14732: The _csv module now uses PEP 3121 module initialization.
14 years ago
_curses_panel.c
Recorded merge of revisions 81029 via svnmerge from
16 years ago
_cursesmodule.c
fix compiler warnings
14 years ago
_datetimemodule.c
Issue #14180: datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp()
14 years ago
_dbmmodule.c
Implement PEP 393.
15 years ago
_elementtree.c
Fix unterminated keyword array passed to PyArg_ParseTupleAndKeywords
14 years ago
_functoolsmodule.c
use new generic __dict__ descriptor implementations
14 years ago
_gdbmmodule.c
#6045: provide at least get() and setdefault() for all dbm modules.
15 years ago
_gestalt.c
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
14 years ago
_hashopenssl.c
Issue #13088: Add shared Py_hexdigits constant to format a number into base 16
14 years ago
_heapqmodule.c
Inline cmp_lt().
16 years ago
_json.c
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
14 years ago
_localemodule.c
Issue #14909: A number of places were using PyMem_Realloc() apis and
14 years ago
_lsprof.c
Issue #6697: _lsprof: normalizeUserObj() doesn't encode/decode (UTF-8) the
15 years ago
_lzmamodule.c
Silence VS 2010 warning on loss of precision (_int64 -> _int32).
14 years ago
_math.c
Indentation and PEP 7 fixes.
16 years ago
_math.h
Merged revisions 76978 via svnmerge from
16 years ago
_pickle.c
cleanup Ellipsis and NotImplemented strings after we're done
14 years ago
_posixsubprocess.c
Issue 14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.
14 years ago
_randommodule.c
Issue #14909: A number of places were using PyMem_Realloc() apis and
14 years ago
_scproxy.c
Fix for issue #9568.
16 years ago
_sre.c
closes #14259 re.finditer() now takes keyword arguments: pos, endpos.
14 years ago
_ssl.c
Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library.
14 years ago
_struct.c
Issue #3163: The struct module gets new format characters 'n' and 'N'
14 years ago
_testbuffer.c
Issue #14779: Get sizeof(void *) directly rather than relying on sysconfig.
14 years ago
_testcapimodule.c
Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.
14 years ago
_testembed.c
Fix compilation of _testembed.c without threads
15 years ago
_threadmodule.c
merge 3.2
14 years ago
_tkinter.c
fix issue #5136: deprecate old unused functions from tkinter.
14 years ago
_weakref.c
Implement PEP 3121: new module initialization and finalization API.
18 years ago
_winapi.c
Fix for Issue 14725 for 3.3 branch.
14 years ago
addrinfo.h
Recorded merge of revisions 81029 via svnmerge from
16 years ago
ar_beos
Moved BeOS/ar-fake and BeOS/linkmodule to Modules/ar_beos and
25 years ago
arraymodule.c
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI.
14 years ago
atexitmodule.c
Issue #11826: Fix memory leak in atexitmodule.
14 years ago
audioop.c
Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data.
14 years ago
binascii.c
Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings.
14 years ago
cmathmodule.c
#11565: Merge with 3.2.
15 years ago
config.c.in
Issue #14605: Stop having implicit entries for sys.meta_path.
14 years ago
errnomodule.c
Fix #13210. Port the Windows build from VS2008 to VS2010.
14 years ago
faulthandler.c
Issue #14154: Reimplement the bigmem test memory watchdog as a subprocess.
14 years ago
fcntlmodule.c
Issue #13324: fcntlmodule: Add the F_NOCACHE flag. Patch by Alex Stewart.
14 years ago
fpectlmodule.c
Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2
15 years ago
fpetestmodule.c
Recorded merge of revisions 81029 via svnmerge from
16 years ago
gc_weakref.txt
Issue #13575: there is only one class type.
14 years ago
gcmodule.c
Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts.
14 years ago
getaddrinfo.c
Recorded merge of revisions 81029 via svnmerge from
16 years ago
getbuildinfo.c
merge 3.2
15 years ago
getnameinfo.c
Recorded merge of revisions 81029 via svnmerge from
16 years ago
getpath.c
Implemented PEP 405 (Python virtual environments).
14 years ago
grpmodule.c
#775964: skip YP/NIS entries instead of failing the test
15 years ago
hashlib.h
Fixes Issue #3745: Fix hashlib to always reject unicode and non
17 years ago
itertoolsmodule.c
Add safecase to silence Win64 warning.
14 years ago
ld_so_aix.in
#941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou.
15 years ago
ld_so_beos
Remove a hard coded Python version, and a now incorrect relative path. Closes
25 years ago
main.c
Issue #14605: Use None in sys.path_importer_cache to represent no
14 years ago
makesetup
Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when running
16 years ago
makexp_aix
- Changes donated by Elemental Security to make it work on AIX 5.3
21 years ago
mathmodule.c
merge 3.2
14 years ago
md5module.c
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
14 years ago
mmapmodule.c
Whitespace.
14 years ago
nismodule.c
Remove a redundant assignment.
15 years ago
operator.c
Implement PEP 393.
15 years ago
ossaudiodev.c
Rename _Py_identifier to _Py_IDENTIFIER.
14 years ago
parsermodule.c
Issue #14741: Merge fix from 3.2.
14 years ago
posixmodule.c
Issue #14711: os.stat_float_times() has been deprecated.
14 years ago
pwdmodule.c
Include structseq.h in Python.h, and remove now-redundant includes in individual sources.
15 years ago
pyexpat.c
Issue #14007: implement doctype() method calling in XMLParser of _elementtree.
14 years ago
python.c
Issue #3367: NULL-terminate argv[] copies to prevent an invalid access
14 years ago
readline.c
Issue #10350: Read and save errno before calling a function which might overwrite it.
14 years ago
resource.c
alias resource.error to OSError
14 years ago
rotatingtree.c
Recorded merge of revisions 81029 via svnmerge from
16 years ago
rotatingtree.h
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
20 years ago
selectmodule.c
struct timeval.tv_usec is 4 bytes on 64-bit OS X as it should be, but
14 years ago
sha1module.c
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
14 years ago
sha256module.c
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
14 years ago
sha512module.c
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
14 years ago
signalmodule.c
Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple
14 years ago
socketmodule.c
Issue #14310: inter-process socket duplication for windows
14 years ago
socketmodule.h
Issue #13777: Add PF_SYSTEM sockets on OS X.
14 years ago
spwdmodule.c
Include structseq.h in Python.h, and remove now-redundant includes in individual sources.
15 years ago
sre.h
merge 3.2 (#14212)
14 years ago
sre_constants.h
Implemented non-recursive SRE matching.
23 years ago
symtablemodule.c
Remove redundant includes of headers that are already included by Python.h.
15 years ago
syslogmodule.c
#14416: conditionally add LOG_AUTHPRIV facility and LOG_ODELAY to syslog.
14 years ago
termios.c
Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2
15 years ago
testcapi_long.h
Issue #9530: Fix undefined behaviour due to signed overflow in testcapi_long.h.
14 years ago
timemodule.c
strip is_ prefixes on clock_info fields
14 years ago
tkappinit.c
Avoid main_window unused compiler warning.
14 years ago
tkinter.h
Merged revisions 71210 via svnmerge from
17 years ago
unicodedata.c
Issue #14909: A number of places were using PyMem_Realloc() apis and
14 years ago
unicodedata_db.h
update to Unicode 6.1
14 years ago
unicodename_db.h
update to Unicode 6.1
14 years ago
xxlimited.c
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
15 years ago
xxmodule.c
Issue #9089: Remove references to intobject.c and intobject.h from comments.
16 years ago
xxsubtype.c
Recorded merge of revisions 81029 via svnmerge from
16 years ago
zipimport.c
capitialize enum members
14 years ago
zlibmodule.c
Issue #12306: Add ZLIB_RUNTIME_VERSION to the zlib module.
15 years ago