| .. |
|
Python-ast.c
|
Issue #13436: commit regenerated Python-ast.c
|
14 years ago |
|
_warnings.c
|
Remove obsolete py3k comment.
|
14 years ago |
|
asdl.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
ast.c
|
kill this disabled code
|
14 years ago |
|
bltinmodule.c
|
fold into one if statement
|
14 years ago |
|
ceval.c
|
catch nasty exception classes with __new__ that doesn't return a exception (closes #11627)
|
15 years ago |
|
ceval_gil.h
|
Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work with 3.2.
|
15 years ago |
|
codecs.c
|
Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry.
|
14 years ago |
|
compile.c
|
merge 3.1
|
15 years ago |
|
dtoa.c
|
Remove unnecessary assignments.
|
16 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
|
#730467: Another small AIX fix.
|
15 years ago |
|
dynload_dl.c
|
Implement PEP 3121: new module initialization and finalization API.
|
18 years ago |
|
dynload_hpux.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
dynload_next.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
dynload_os2.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
dynload_shlib.c
|
Merge branches/pep-0384.
|
15 years ago |
|
dynload_stub.c
|
REMOVED all CWI, CNRI and BeOpen copyright markings.
|
26 years ago |
|
dynload_win.c
|
Merge branches/pep-0384.
|
15 years ago |
|
errors.c
|
Issue #10780: PyErr_SetFromWindowsErrWithFilename() and
|
15 years ago |
|
fileutils.c
|
_Py_char2wchar() frees the memory on conversion error
|
15 years ago |
|
formatter_unicode.c
|
Issue #1588: Add complex.__format__.
|
17 years ago |
|
frozen.c
|
Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas
|
15 years ago |
|
frozenmain.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
future.c
|
check by equality for __future__ not identity (closes #14378)
|
14 years ago |
|
getargs.c
|
Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred
|
15 years ago |
|
getcompiler.c
|
The GCC version is loooooooooong; put it on a new line.
|
26 years ago |
|
getcopyright.c
|
add another year to glorious PSF IP
|
14 years ago |
|
getcwd.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
getopt.c
|
Fix test failure in test_cmd_line by initializing the hash secret at the earliest point.
|
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 #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes.
|
14 years ago |
|
import.c
|
Fixes Issue #14331: Use significantly less stack space when importing modules by
|
14 years ago |
|
importdl.c
|
_PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding
|
15 years ago |
|
importdl.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
makeopcodetargets.py
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
marshal.c
|
Issue #14177: marshal.loads() now raises TypeError when given an unicode string.
|
14 years ago |
|
modsupport.c
|
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
|
16 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
|
#4617: Previously it was illegal to delete a name from the local
|
16 years ago |
|
peephole.c
|
#5057: Merge with 3.1.
|
15 years ago |
|
pyarena.c
|
Remove redundant includes of headers that are already included by Python.h.
|
15 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
|
bytes() can't be used to get a representation of an object.
|
14 years ago |
|
pystrcmp.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
pystrtod.c
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
pythonrun.c
|
Fix test failure in test_cmd_line by initializing the hash secret at the earliest point.
|
14 years ago |
|
pytime.c
|
Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API
|
16 years ago |
|
random.c
|
ensure no one tries to hash things before the random seed is found
|
14 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
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
symtable.c
|
Issue #13343: Fix a SystemError when a lambda expression uses a global
|
14 years ago |
|
sysmodule.c
|
Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime)
|
14 years ago |
|
thread.c
|
#11565: Merge with 3.1.
|
15 years ago |
|
thread_cthread.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_foobar.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_lwp.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_nt.h
|
Issue #11618: Fix the timeout logic in threading.Lock.acquire() under
|
15 years ago |
|
thread_os2.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_pth.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_pthread.h
|
Issue #14184: Increase the default stack size for secondary threads on
|
14 years ago |
|
thread_sgi.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_solaris.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
thread_wince.h
|
Recorded merge of revisions 81029 via svnmerge from
|
16 years ago |
|
traceback.c
|
Remove redundant includes of headers that are already included by Python.h.
|
15 years ago |