summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-04-14 12:03:01 +0200
committerGeorg Brandl <georg@python.org>2013-04-14 12:03:01 +0200
commitc8fb047d6993e5b559bba8449e230364ae47764b (patch)
treefe68deabc7cbad2be00382f71104249c68cae558
parente827ea866d811fd58aa5aec0786e76e18217c368 (diff)
parent1aca953a40425833f60e76bfa23df1ca89ae574e (diff)
downloadcpython-git-c8fb047d6993e5b559bba8449e230364ae47764b.tar.gz
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 cb7a09c0fb..b12c2173c0 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::