[issue1783] nonexistent data items declared as exports in sysmodule.h

2013-02-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6074530b526f by Serhiy Storchaka in branch '2.7': Issue #1783: Remove declarations of nonexistent private variables. http://hg.python.org/cpython/rev/6074530b526f New changeset 349419bb6283 by Serhiy Storchaka in branch '3.2': Issue #1783: Remove

[issue1783] nonexistent data items declared as exports in sysmodule.h

2013-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for the report, Jukka Laurila. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1783

[issue1783] nonexistent data items declared as exports in sysmodule.h

2013-01-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file28910/sysmodule_h_cleanup-2.7.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1783

[issue1783] nonexistent data items declared as exports in sysmodule.h

2013-01-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here are patches. -- assignee: - serhiy.storchaka keywords: +easy nosy: +serhiy.storchaka stage: needs patch - patch review versions: +Python 3.2, Python 3.3, Python 3.4 -Python 3.1 Added file:

[issue1783] nonexistent data items declared as exports in sysmodule.h

2010-09-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The 1st declaration still exists, the 2nd has been removed. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1783

[issue1783] nonexistent data items declared as exports in sysmodule.h

2009-05-13 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - needs patch type: - behavior versions: +Python 2.7, Python 3.1 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1783

[issue1783] nonexistent data items declared as exports in sysmodule.h

2008-01-10 Thread Jukka Laurila
New submission from Jukka Laurila: sysmodule.h contains the following declarations for data to be exported from the Python DLL, but these variables don't seem to exist anywhere: PyAPI_DATA(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc; PyAPI_DATA(int) _PySys_CheckInterval; Either the

[issue1783] nonexistent data items declared as exports in sysmodule.h

2008-01-10 Thread Christian Heimes
Christian Heimes added the comment: Sounds good to me. The vars were probably forgotten. The header files may contain more missing vars, too. -- nosy: +tiran priority: - normal versions: +Python 3.0 -Python 2.5 __ Tracker [EMAIL PROTECTED]