Update changes file with tp_print removal

This commit is contained in:
William S Fulton 2018-12-11 08:17:56 +00:00
commit 230b979c0f

View file

@ -13,12 +13,17 @@ Version 4.0.0 (in progress)
occurred when the nested class' destructor is explicitly specified.
2018-12-04: adr26
[Python] #1368 AV in tp_print caused by mismatched Python/extension CRT usage
[Python] #1368 #1369 Access Violation in tp_print caused by mismatched Python/extension
CRT usage
Remove all use of tp_print, as this API uses a FILE*, which can be
mismatched when modules are built with different C libraries from
the main python executable.
This change also brings consistent output between Python 2 and 3 for the 'cvar' SWIG
object (that contains the global variables) and SWIG packed objects (such as callback
constants).
2018-12-04: wsfulton
[Python] #1282 Fix running 'python -m' when using 'swig -builtin'