- 08 Sep, 2016 22 commits
-
-
Christian Heimes authored
symtable_analyze() calls analyze_block() with bound=NULL. Theoretically that NULL can be passed down to update_symbols(). update_symbols() may deference NULL and pass it to PySet_Contains()
-
Benjamin Peterson authored
-
Christian Heimes authored
_PyObject_GetNewArguments() can leave args == NULL but the __newobj_ex__ branch expects args to be not-NULL. CID 1353201
-
Christian Heimes authored
_PyGen_Finalize() checks that gen->gi_code is not NULL before it accesses the flags of the code object. This means that the flag could be NULL. It passes down the generatore to gen_close() and gen_send_ex(). gen_send_ex() did not check for gen->gi_code != NULL. CID 1297900
-
Christian Heimes authored
The module initializer of the pyexpat module failed to check the return value of PySys_GetObject() for NULL. CID 982779
-
Christian Heimes authored
The signal module was using old-style module initialization with potential NULL dereferencing. CID 1295026
-
Christian Heimes authored
In the case of an escape character, c is never read. tok_next() is used to advance the pointer. CID 1225097
-
Christian Heimes authored
-
R David Murray authored
-
Raymond Hettinger authored
-
Steve Dower authored
-
Steve Dower authored
-
Senthil Kumaran authored
documentation consistent with the code.
-
Senthil Kumaran authored
-
Davin Potts authored
Issue #21201: Improves readability of multiprocessing error message from server to client for certain exceptions
-
-
Berker Peksag authored
Patch by Claude Paroz.
-
Senthil Kumaran authored
Initial patch contributed by Denver Coneybeare.
-
Gregory P. Smith authored
-
-
between runs given the same Grammar.txt input regardless of the hash randomization setting.
-
Vinay Sajip authored
-
- 07 Sep, 2016 16 commits
-
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
-
Gregory P. Smith authored
required for PGO linking - to be a configure time error rather than make time when --with-optimizations is enabled. Also improve our ability to find the llvm-profdata tool on MacOS and some Linuxes.
-
R David Murray authored
Original patch by Martin Panter, new policy fixes by me.
-
R David Murray authored
-
R David Murray authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Senthil Kumaran authored
-
Guido van Rossum authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Berker Peksag authored
-
Benjamin Peterson authored
-
Brett Cannon authored
-
- 06 Sep, 2016 2 commits
-
-
modules.
-
Berker Peksag authored
Initial patch by Alex LordThorsen.
-