[Python-checkins] cpython (merge 3.3 -> default): merge with 3.3

georg.brandl python-checkins at python.org
Sun Apr 14 12:02:45 CEST 2013


http://hg.python.org/cpython/rev/82d848a737da
changeset:   83358:82d848a737da
parent:      83355:50e87547b57a
parent:      83357:ca5fc67e0ad1
user:        Georg Brandl <georg at python.org>
date:        Sun Apr 14 12:03:01 2013 +0200
summary:
  merge with 3.3

files:
  Doc/library/compileall.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst
--- a/Doc/library/compileall.rst
+++ b/Doc/library/compileall.rst
@@ -162,7 +162,7 @@
 
    # Perform same compilation, excluding files in .svn directories.
    import re
-   compileall.compile_dir('Lib/', rx=re.compile('/[.]svn'), force=True)
+   compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True)
 
 
 .. seealso::

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list