Thomas Spura added the comment:
AFAIK hg supports symlinks.
Why not just symlink .gitignore to .hgignore and keep .hgignore up to date?
But in this case "$" and "^" need to be avoided, e.g. this doesn't work for git:
Makefile$
Makefile.pre$
Thomas Spura added the comment:
It might be good to add some documentation to the sqlite3 module and describe
that version_info is only the PYSQLITE_VERSION and not the version of the
sqlite library.
--
nosy: +tomspur
___
Python tracker
<h
Thomas Spura added the comment:
The commit I'm talking about was 22 months ago (r61755), python 2.6.2 was
released April 14, 2009.
At least strange, that this is not jet in there, but if you think, it will in
the next version...
--
___
P
Thomas Spura added the comment:
#2446 should be related to this one.
--
nosy: +David Wolever
___
Python tracker
<http://bugs.python.org/issue7861>
___
___
Pytho
New submission from Thomas Spura :
My custom setup / testcase for testing the transition "import foo" -> "from .
import foo":
mkdir -p test/sub
touch test/sub/__init__.py
touch test/__init__.py
cat >> test/__init__.py << EOF
import sub
EOF
cat >> t