- 08 Eyl, 2016 25 kayıt (commit)
-
-
Eric Snow yazdı
-
R David Murray yazdı
Also make it clear on the contents page what chapters are about the legacy API.
-
Christian Heimes yazdı
The _locale module was using old-style APIs to set numeric module constants from macros. The new way requires less code and properly checks for NULL. CID 1295027
-
Christian Heimes yazdı
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 yazdı
-
Christian Heimes yazdı
_PyObject_GetNewArguments() can leave args == NULL but the __newobj_ex__ branch expects args to be not-NULL. CID 1353201
-
Christian Heimes yazdı
_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 yazdı
The module initializer of the pyexpat module failed to check the return value of PySys_GetObject() for NULL. CID 982779
-
Christian Heimes yazdı
The signal module was using old-style module initialization with potential NULL dereferencing. CID 1295026
-
Christian Heimes yazdı
In the case of an escape character, c is never read. tok_next() is used to advance the pointer. CID 1225097
-
Christian Heimes yazdı
-
R David Murray yazdı
-
Raymond Hettinger yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Senthil Kumaran yazdı
documentation consistent with the code.
-
Senthil Kumaran yazdı
-
Davin Potts yazdı
Issue #21201: Improves readability of multiprocessing error message from server to client for certain exceptions
-
-
Berker Peksag yazdı
Patch by Claude Paroz.
-
Senthil Kumaran yazdı
Initial patch contributed by Denver Coneybeare.
-
Gregory P. Smith yazdı
-
-
between runs given the same Grammar.txt input regardless of the hash randomization setting.
-
Vinay Sajip yazdı
-
- 07 Eyl, 2016 15 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Gregory P. Smith yazdı
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 yazdı
Original patch by Martin Panter, new policy fixes by me.
-
R David Murray yazdı
-
R David Murray yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Senthil Kumaran yazdı
-
Guido van Rossum yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Berker Peksag yazdı
-
Benjamin Peterson yazdı
-