This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
cpython
mirror of
https://github.com/python/cpython
Watch
4
Star
1
Fork
You've already forked cpython
0
Code
Issues
Releases
Wiki
Activity
75f108174a
cpython
/
Python
History
Victor Stinner
3b635cd447
Close
#15766
: Catch exceptions while raising the ImportError in imp.load_dynamic()
2012-10-02 00:55:07 +02:00
..
Python-ast.c
…
_warnings.c
…
asdl.c
…
ast.c
Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to.
2012-09-10 16:53:28 +02:00
bltinmodule.c
Merge 3.2.
2012-08-20 17:20:46 +02:00
ceval.c
fix yield from return value on custom iterators (
closes
#15568
)
2012-08-06 17:53:09 -07:00
ceval_gil.h
…
codecs.c
…
compile.c
…
condvar.h
…
dtoa.c
…
dup2.c
…
dynamic_annotations.c
…
dynload_aix.c
…
dynload_dl.c
…
dynload_hpux.c
…
dynload_next.c
…
dynload_os2.c
…
dynload_shlib.c
Close
#15766
: Catch exceptions while raising the ImportError in imp.load_dynamic()
2012-10-02 00:55:07 +02:00
dynload_stub.c
…
dynload_win.c
…
errors.c
…
fileutils.c
…
formatter_unicode.c
Issue
#15609
: Optimize str%args for integer argument
2012-10-02 00:33:47 +02:00
frozen.c
…
frozenmain.c
…
future.c
…
getargs.c
Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641
2012-09-10 13:17:23 +02:00
getcompiler.c
…
getcopyright.c
…
getcwd.c
…
getopt.c
…
getplatform.c
…
getversion.c
…
graminit.c
…
import.c
Issue
#15781
: Fix two small race conditions in import's module locking.
2012-08-28 00:24:52 +02:00
importdl.c
…
importdl.h
…
importlib.h
Add some comments.
2012-09-28 16:41:39 -04:00
makeopcodetargets.py
…
marshal.c
…
modsupport.c
…
mysnprintf.c
…
mystrtoul.c
…
opcode_targets.h
…
peephole.c
…
pyarena.c
Issue
#15144
: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t.
2012-09-20 20:56:47 +02:00
pyctype.c
…
pyfpe.c
…
pymath.c
…
pystate.c
Issue
#13992
: The trashcan mechanism is now thread-safe. This eliminates
2012-09-06 01:17:42 +02:00
pystrcmp.c
…
pystrtod.c
…
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.
2012-09-11 15:47:28 +02:00
pytime.c
…
random.c
Issue
#15340
: Fix importing the random module when /dev/urandom cannot be opened.
2012-09-07 23:51:22 +02:00
sigcheck.c
…
strdup.c
…
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
2012-09-11 17:30:53 +02:00
symtable.c
Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases.
2012-09-12 17:58:20 +02:00
sysmodule.c
…
thread.c
…
thread_foobar.h
…
thread_nt.h
…
thread_os2.h
…
thread_pth.h
…
thread_pthread.h
…
traceback.c
Issue
#15463
: the faulthandler module truncates strings to 500 characters,
2012-07-30 13:08:58 +02:00