add % as allowed char, condense CHANGELOG

--HG--
branch : trunk
This commit is contained in:
holger krekel 2009-11-20 09:19:29 +01:00
parent d1dcf0fa92
commit ecb19b751a
2 changed files with 6 additions and 7 deletions

View File

@ -1,14 +1,13 @@
Changes between 1.1.1 and 1.1.0
=====================================
- fix py.test to work correctly with execnet >= 1.0.0b4
- fix py.test dist-testing to work with execnet >= 1.0.0b4 (required)
- re-introduce py.test.cmdline.main for better backward compatibility
- re-introduce py.test.cmdline.main() for better backward compatibility
- make svnwc.update() default to interactive mode like in 1.0.x
and add svnwc.update(interactive=False) to inhibit interaction.
- fix a bug with path.check(versioned=True) for svn paths
- svn paths: fix a bug with path.check(versioned=True) for svn paths,
allow '%' in svn paths, make svnwc.update() default to interactive mode
like in 1.0.x and add svnwc.update(interactive=False) to inhibit interaction.
- try harder to have deprecation warnings for py.compat.* accesses
report a correct location

View File

@ -77,7 +77,7 @@ repositories = RepoCache()
# svn support code
ALLOWED_CHARS = "_ -/\\=$.~+" #add characters as necessary when tested
ALLOWED_CHARS = "_ -/\\=$.~+%" #add characters as necessary when tested
if sys.platform == "win32":
ALLOWED_CHARS += ":"
ALLOWED_CHARS_HOST = ALLOWED_CHARS + '@:'