diff options
author | Georg Brandl <georg@python.org> | 2013-04-14 10:03:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-14 10:03:01 (GMT) |
commit | c8fb047d6993e5b559bba8449e230364ae47764b (patch) | |
tree | fe68deabc7cbad2be00382f71104249c68cae558 | |
parent | e827ea866d811fd58aa5aec0786e76e18217c368 (diff) | |
parent | 1aca953a40425833f60e76bfa23df1ca89ae574e (diff) | |
download | cpython-c8fb047d6993e5b559bba8449e230364ae47764b.zip cpython-c8fb047d6993e5b559bba8449e230364ae47764b.tar.gz cpython-c8fb047d6993e5b559bba8449e230364ae47764b.tar.bz2 |
merge with 3.3
-rw-r--r-- | Doc/library/compileall.rst | 2 |
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:: |