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: diffs in working copy after a build
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: brett.cannon, mwh, nnorwitz
Priority: normal Keywords:

Created on 2005-12-05 00:00 by mwh, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg26981 - (view) Author: Michael Hudson (mwh) (Python committer) Date: 2005-12-05 00:00
I habitually build python in a subdirectory of the checkout directory (cd 
build; ../configure; make).  After I do this, "svn diff" says this:

Index: Include/Python-ast.h
=============================================
======================
--- Include/Python-ast.h	(revision 41584)
+++ Include/Python-ast.h	(working copy)
@@ -1,4 +1,4 @@
-/* File automatically generated by ./Parser/asdl_c.py */
+/* File automatically generated by ../Parser/asdl_c.py */
 
 #include "asdl.h"
 
Index: Python/Python-ast.c
=============================================
======================
--- Python/Python-ast.c	(revision 41584)
+++ Python/Python-ast.c	(working copy)
@@ -1,4 +1,4 @@
-/* File automatically generated by ./Parser/asdl_c.py */
+/* File automatically generated by ../Parser/asdl_c.py */
 
 #include "Python.h"
 #include "Python-ast.h"

which is kind of annoying.  "File automatically generated by asdl_c.py" 
would probably do fine for me.
msg26982 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2005-12-05 00:26
Logged In: YES 
user_id=357491

Would changing the path to say /Parser/asdl_c.py work for you?
msg26983 - (view) Author: Michael Hudson (mwh) (Python committer) Date: 2005-12-05 01:17
Logged In: YES 
user_id=6656

Yes, whatever gets rid of the Ms in my wc :)
msg26984 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2005-12-11 21:18
Logged In: YES 
user_id=33168

I always wondered how Jeremy and I conflicted.  This bugged
me too, so it's fixed now.  Parser/asdl_c.py is what it says
(ie .../ is stripped).

Committed revision 41644.
History
Date User Action Args
2022-04-11 14:56:14adminsetgithub: 42658
2005-12-05 00:00:50mwhcreate