merge with 3.3

This commit is contained in:
Georg Brandl 2013-04-14 12:03:01 +02:00
commit c8fb047d69
1 changed files with 1 additions and 1 deletions

View File

@ -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::