[ctypes-commit] ctypes ChangeLog,1.65,1.66
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2004-10-15 07:03:57
|
Update of /cvsroot/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32270 Modified Files: ChangeLog Log Message: Record changes. Index: ChangeLog =================================================================== RCS file: /cvsroot/ctypes/ctypes/ChangeLog,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** ChangeLog 13 Oct 2004 19:39:00 -0000 1.65 --- ChangeLog 15 Oct 2004 07:03:40 -0000 1.66 *************** *** 1,2 **** --- 1,13 ---- + 2004-10-15 Thomas Heller <th...@py...> + + * Work around a bug in Python's PyUnicode_FromWideChar and + PyUnicode_AsWideChar api functions. + + 2004-10-14 Thomas Heller <th...@py...> + + * Implemented cycle GC for several internal types fixed some + leaks. Fixed another memory leak and a refcount leak. + Added a unittest to check for leaks. + 2004-10-13 Thomas Heller <th...@py...> *************** *** 5,8 **** --- 16,20 ---- specifies the number of bits in this field. Bit fields are only allowed for numeric types, not for character types like c_char. + Tested on several x86, windows and linux. 2004-10-12 Thomas Heller <th...@py...> |