You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Benjamin Peterson feaa54f537 don't depend on __debug__ because it's baked in at freeze time (issue #16046) 13 years ago
..
Python-ast.c add gc support to the AST base type (closes #15293) 14 years ago
_warnings.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
asdl.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
ast.c Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. 13 years ago
bltinmodule.c Merge 3.2. 14 years ago
ceval.c fix yield from return value on custom iterators (closes #15568) 14 years ago
ceval_gil.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
codecs.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
compile.c remove unused variable 14 years ago
condvar.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dtoa.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dup2.c #9060 Let platforms without dup2() compile the replacement fonction without error. 15 years ago
dynamic_annotations.c Make (most of) Python's tests pass under Thread Sanitizer. 16 years ago
dynload_aix.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_dl.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_hpux.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_next.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_os2.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_shlib.c Issue #15766: Fix a crash in imp.load_dynamic() on PyUnicode_FromString() failure 14 years ago
dynload_stub.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_win.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
errors.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
fileutils.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
formatter_unicode.c After the jump in line 1051 unicode_tmp is NULL. Found by Coverity. 13 years ago
frozen.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
frozenmain.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
future.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
getargs.c Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 13 years ago
getcompiler.c The GCC version is loooooooooong; put it on a new line. 26 years ago
getcopyright.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
getcwd.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
getopt.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
getplatform.c REMOVED all CWI, CNRI and BeOpen copyright markings. 26 years ago
getversion.c Remove trailing whitespace. 16 years ago
graminit.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
import.c Issue #15781: Fix two small race conditions in import's module locking. 14 years ago
importdl.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
importdl.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
importlib.h don't depend on __debug__ because it's baked in at freeze time (issue #16046) 13 years ago
makeopcodetargets.py Issue #13590: Improve support for OS X Xcode 4: 14 years ago
marshal.c Issue #15466: Stop using TYPE_INT64 in marshal, 14 years ago
modsupport.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
mysnprintf.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
mystrtoul.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
opcode_targets.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
peephole.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
pyarena.c Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. 13 years ago
pyctype.c Include files missed in r72044. 17 years ago
pyfpe.c Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. 25 years ago
pymath.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
pystate.c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates 13 years ago
pystrcmp.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
pystrtod.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
pythonrun.c Issue #15895: my analysis was slightly off. The FILE pointer is only leaked when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening. 13 years ago
pytime.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
random.c Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. 13 years ago
sigcheck.c REMOVED all CWI, CNRI and BeOpen copyright markings. 26 years ago
strdup.c Mass ANSIfication of function definitions. Doesn't cover all 'extern' 26 years ago
structmember.c Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 13 years ago
symtable.c Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. 13 years ago
sysmodule.c Issue #15242: Have PyImport_GetMagicTag() return a const char * 14 years ago
thread.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
thread_foobar.h Recorded merge of revisions 81029 via svnmerge from 16 years ago
thread_nt.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
thread_os2.h Recorded merge of revisions 81029 via svnmerge from 16 years ago
thread_pth.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
thread_pthread.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
traceback.c Issue #15463: the faulthandler module truncates strings to 500 characters, 14 years ago