[issue14472] .gitignore is outdated

2012-04-02 Thread Thomas Spura
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$

[issue13934] sqlite3 test typo

2012-04-01 Thread Thomas Spura
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

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-08 Thread Thomas Spura
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

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Thomas Spura
Thomas Spura added the comment: #2446 should be related to this one. -- nosy: +David Wolever ___ Python tracker <http://bugs.python.org/issue7861> ___ ___ Pytho

[issue7861] 2to3: "import foo" -> "from . import foo"

2010-02-05 Thread Thomas Spura
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