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: Python-ast.[ch] out-of-date w.r.t. sources in fresh 2.5 checkout
Type: Stage:
Components: Versions: Python 2.5
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, pitrou
Priority: normal Keywords:

Created on 2011-03-06 23:47 by skip.montanaro, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg130203 - (view) Author: Skip Montanaro (skip.montanaro) * (Python triager) Date: 2011-03-06 23:47
I'm working my way through the steps necessary to check out and build
all versions of Python since 2.4 using Mercurial checkouts.  I encountered
my first problem with 2.5.  It seems the Mercurial checkout creates the
Python-ast.[ch] files before the files they depend on.  This causes an
initial checkout to try and run Python.  I don't know if Mercurial can
be tweaked to guarantee checkout order or not.  Would be nice if it could.
The workaround is simple, just touch the two files.
msg130206 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-03-06 23:49
I think SVN had the same issue. You just have to be lucky, or touch the files yourself.
msg130622 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-03-11 21:49
Some info: http://mercurial.selenic.com/wiki/FAQ#FAQ.2BAC8-CommonProblems.Why_is_the_modification_time_of_files_not_restored_on_checkout.3F and http://mercurial.808500.n3.nabble.com/Mercurial-s-treatment-of-directory-file-timestamps-td796168.html
Related bug: http://mercurial.selenic.com/bts/issue326
History
Date User Action Args
2022-04-11 14:57:14adminsetgithub: 55628
2011-06-01 06:29:47terry.reedysetstatus: open -> closed
2011-03-19 19:08:14skip.montanarosetnosy: - skip.montanaro
2011-03-11 21:49:12eric.araujosetstatus: pending -> open
nosy: + eric.araujo
messages: + msg130622

2011-03-06 23:49:16pitrousetstatus: open -> pending
2011-03-06 23:49:11pitrousetresolution: wont fix

messages: + msg130206
nosy: + pitrou
2011-03-06 23:48:28skip.montanarosetversions: + Python 2.5
2011-03-06 23:47:53skip.montanarocreate