[issue16320] Establish order in bytes/string dependencies

2013-01-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed. Thank you for review, Meador. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16320] Establish order in bytes/string dependencies

2013-01-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8a6068ec220e by Serhiy Storchaka in branch 'default': Issue #16320: Remove redundant Makefile dependencies for strings and bytes. http://hg.python.org/cpython/rev/8a6068ec220e -- nosy: +python-dev ___ Pyt

[issue16320] Establish order in bytes/string dependencies

2013-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'll wait for some time, perhaps a Christian wants to say something. -- ___ Python tracker ___ ___

[issue16320] Establish order in bytes/string dependencies

2012-12-31 Thread Meador Inge
Meador Inge added the comment: On Mon, Dec 31, 2012 at 4:50 AM, Serhiy Storchaka wrote: >> The cleanup of BYTESTR_DEPS and UNICODE_DEPS seems reasonable, but can you >> explain the rationale behind removing the additional dependencies on >> formatter_unicode.c? > > This question already was ask

[issue16320] Establish order in bytes/string dependencies

2012-12-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > The cleanup of BYTESTR_DEPS and UNICODE_DEPS seems reasonable, but can you > explain the rationale behind removing the additional dependencies on > formatter_unicode.c? This question already was asked by Antoine on IRC. Because now Python/formatter_unicode.

[issue16320] Establish order in bytes/string dependencies

2012-12-30 Thread Meador Inge
Meador Inge added the comment: Sorry, the BYTESTR_DEPS dependencies were already there pre-8beaa9a37387. I am still curious why they are needed. -- ___ Python tracker ___ _

[issue16320] Establish order in bytes/string dependencies

2012-12-30 Thread Meador Inge
Meador Inge added the comment: The cleanup of BYTESTR_DEPS and UNICODE_DEPS seems reasonable, but can you explain the rationale behind removing the additional dependencies on formatter_unicode.c? Why were those dependencies ever needed (I can't see the dependencies from reading formatter_unic

[issue16320] Establish order in bytes/string dependencies

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16320] Establish order in bytes/string dependencies

2012-12-28 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16320] Establish order in bytes/string dependencies

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Please review. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue16320] Establish order in bytes/string dependencies

2012-10-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue16320] Establish order in bytes/string dependencies

2012-10-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The proposed patch reorganizes the dependencies for bytes and strings. Now object files depended only from needed (and from all needed) headers. This will reduce the compilation time when modifying the bytes implementation. -- components: Build, Un