This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: The makefile dependencies listing formatter.h are wrong
Type: behavior Stage:
Components: Interpreter Core Versions: Python 3.1
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, stutzbach
Priority: normal Keywords: patch

Created on 2009-03-30 16:12 by stutzbach, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
formatter.patch stutzbach, 2009-03-30 16:12
Messages (2)
msg84574 - (view) Author: Daniel Stutzbach (stutzbach) (Python committer) Date: 2009-03-30 16:12
The makefile lists Objects/stringlib/formatter.h as a dependency for
Objects/unicodeobject.o, which doesn't include formatter.h.  

Python/formatter_unicode includes it, but doesn't list it as a dependency.

I've attached a patch for Makefile.pre.in for the trunk.  I'm not sure
which other versions might be affected.  At some point in the past
perhaps it was a dependency for unicodeobject.o.
msg85480 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-05 11:11
Committed as r71223.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49856
2009-04-05 11:11:24georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg85480

resolution: accepted
2009-03-30 16:12:15stutzbachcreate