[Python-checkins] r80060 - python/trunk/.hgignore

antoine.pitrou python-checkins at python.org
Tue Apr 13 19:36:07 CEST 2010


Author: antoine.pitrou
Date: Tue Apr 13 19:36:07 2010
New Revision: 80060

Log:
Fix overzealous patterns in .hgignore, which used to hide files containing e.g. "python".

(also an occasional source of bugs on the hgsvn-generated hg mirrors)



Modified:
   python/trunk/.hgignore

Modified: python/trunk/.hgignore
==============================================================================
--- python/trunk/.hgignore	(original)
+++ python/trunk/.hgignore	Tue Apr 13 19:36:07 2010
@@ -1,36 +1,36 @@
 .gdb_history
 .purify
-.svn
+.svn/
 Makefile$
 Makefile.pre$
-TAGS
-autom4te.cache
-build
-buildno
+TAGS$
+autom4te.cache$
+build/
+buildno$
 config.cache
 config.log
 config.status
 config.status.lineno
 db_home
-platform
-pyconfig.h
-python
-python.exe
-reflog.txt
-tags
+platform$
+pyconfig.h$
+python$
+python.exe$
+reflog.txt$
+tags$
 Lib/plat-mac/errors.rsrc.df.rsrc
 Doc/tools/sphinx/
 Doc/tools/docutils/
 Doc/tools/jinja/
 Doc/tools/pygments/
 Misc/python.pc
-Modules/Setup
+Modules/Setup$
 Modules/Setup.config
 Modules/Setup.local
 Modules/config.c
-Parser/pgen
-core
-python-gdb.py
+Parser/pgen$
+^core
+^python-gdb.py
 
 syntax: glob
 libpython*.a


More information about the Python-checkins mailing list