summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-04-14 10:03:01 (GMT)
committerGeorg Brandl <georg@python.org>2013-04-14 10:03:01 (GMT)
commitc8fb047d6993e5b559bba8449e230364ae47764b (patch)
treefe68deabc7cbad2be00382f71104249c68cae558
parente827ea866d811fd58aa5aec0786e76e18217c368 (diff)
parent1aca953a40425833f60e76bfa23df1ca89ae574e (diff)
downloadcpython-c8fb047d6993e5b559bba8449e230364ae47764b.zip
cpython-c8fb047d6993e5b559bba8449e230364ae47764b.tar.gz
cpython-c8fb047d6993e5b559bba8449e230364ae47764b.tar.bz2
merge with 3.3
-rw-r--r--Doc/library/compileall.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst
index cb7a09c..b12c217 100644
--- a/Doc/library/compileall.rst
+++ b/Doc/library/compileall.rst
@@ -162,7 +162,7 @@ subdirectory and all its subdirectories::
# 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::