mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
merge with 3.4
This commit is contained in:
commit
d51c1a1953
5 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
# that aren't pickleable (module imports are okay, they're removed automatically).
|
# that aren't pickleable (module imports are okay, they're removed automatically).
|
||||||
|
|
||||||
import sys, os, time
|
import sys, os, time
|
||||||
sys.path.append(os.path.abspath('tools'))
|
sys.path.append(os.path.abspath('tools/extensions'))
|
||||||
|
|
||||||
# General configuration
|
# General configuration
|
||||||
# ---------------------
|
# ---------------------
|
||||||
|
|
|
@ -91,7 +91,7 @@ class CheckSuspiciousMarkupBuilder(Builder):
|
||||||
self.log_file_name = os.path.join(self.outdir, 'suspicious.csv')
|
self.log_file_name = os.path.join(self.outdir, 'suspicious.csv')
|
||||||
open(self.log_file_name, 'w').close()
|
open(self.log_file_name, 'w').close()
|
||||||
# load database of previously ignored issues
|
# load database of previously ignored issues
|
||||||
self.load_rules(os.path.join(os.path.dirname(__file__),
|
self.load_rules(os.path.join(os.path.dirname(__file__), '..',
|
||||||
'susp-ignored.csv'))
|
'susp-ignored.csv'))
|
||||||
|
|
||||||
def get_outdated_docs(self):
|
def get_outdated_docs(self):
|
Loading…
Add table
Add a link
Reference in a new issue