~ubuntu-branches/ubuntu/saucy/python2.7/saucy-proposed

« back to all changes in this revision

Viewing changes to Doc/library/compileall.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-05-15 19:15:16 UTC
  • mto: (36.1.23 sid)
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: package-import@ubuntu.com-20130515191516-zmv6to904wemey7s
Tags: upstream-2.7.5
ImportĀ upstreamĀ versionĀ 2.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
   # Perform same compilation, excluding files in .svn directories.
129
129
   import re
130
 
   compileall.compile_dir('Lib/', rx=re.compile('/[.]svn'), force=True)
 
130
   compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True)
131
131
 
132
132
 
133
133
.. seealso::