[py-svn] py-trunk commit d7614a65d219: add % as allowed char, condense CHANGELOG

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Fri Nov 20 09:19:55 CET 2009


# HG changeset patch -- Bitbucket.org
# Project py-trunk
# URL http://bitbucket.org/hpk42/py-trunk/overview/
# User holger krekel <holger at merlinux.eu>
# Date 1258705169 -3600
# Node ID d7614a65d21983e9e1cd8df199f0d8c7a8f024ea
# Parent c3b549bd0904a4527f382058de7a6d551157b6c5
add % as allowed char, condense CHANGELOG

--- a/py/impl/path/svnwc.py
+++ b/py/impl/path/svnwc.py
@@ -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 + '@:'

--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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



More information about the pytest-commit mailing list