[issue15512] Correct __sizeof__ support for parser

2014-08-16 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Revision aceb975c4832 added useless '#ifndef Py_LIMITED_API' check in 2.7 branch. Support for Py_LIMITED_API was introduced in Python 3.2. -- nosy: +Arfrever ___ Python tracker

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15512 ___ ___ Python-bugs-list mailing list

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset aceb975c4832 by Jesus Cea in branch '2.7': Closes #15512: Correct __sizeof__ support for parser http://hg.python.org/cpython/rev/aceb975c4832 New changeset 91884d04de06 by Jesus Cea in branch '3.2': Closes #15512: Correct __sizeof__ support for

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: Compilation of 2.7 under Windows is broken: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%202.7/builds/75 -- assignee: - jcea nosy: +pitrou status: closed - open ___ Python tracker

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oops, I forgot to remove the remnants of debugging code. Here's the patch. Sorry. -- Added file: http://bugs.python.org/file26677/parser_sizeof_cleanup.patch ___ Python tracker rep...@bugs.python.org

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Compilation of 2.7 under Windows is broken: Here is a patch for declarations reorganizing. -- Added file: http://bugs.python.org/file26678/parser_methods_declaration_move-2.7.patch ___ Python tracker

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0827fef8652d by Jesus Cea in branch '2.7': #15512: Remove remnants of debugging code http://hg.python.org/cpython/rev/0827fef8652d New changeset 0bda3f00b60a by Jesus Cea in branch '3.2': #15512: Remove remnants of debugging code

[issue15512] Correct __sizeof__ support for parser

2012-08-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Compilation of 2.7 under Windows is successful: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%202.7/builds/77 -- status: open - closed ___ Python tracker rep...@bugs.python.org

[issue15512] Correct __sizeof__ support for parser

2012-07-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch that implements correct __sizeof__ for ST objects in parser module. -- components: Interpreter Core, Library (Lib) files: parser_sizeof.patch keywords: patch messages: 166978 nosy: benjamin.peterson, storchaka priority: normal

[issue15512] Correct __sizeof__ support for parser

2012-07-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: Added file: http://bugs.python.org/file26614/parser_sizeof-2.7.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15512 ___