mirror of https://github.com/python/cpython
Patch #1677862: Require a space or tab after import in .pth files.
This commit is contained in:
parent
eb62357a2e
commit
2681beb23e
|
@ -28,12 +28,17 @@ the newly added path for configuration files.
|
|||
|
||||
A path configuration file is a file whose name has the form
|
||||
\file{\var{package}.pth} and exists in one of the four directories
|
||||
mentioned above; its contents are additional items (one
|
||||
per line) to be added to \code{sys.path}. Non-existing items are
|
||||
never added to \code{sys.path}, but no check is made that the item
|
||||
refers to a directory (rather than a file). No item is added to
|
||||
\code{sys.path} more than once. Blank lines and lines beginning with
|
||||
\code{\#} are skipped. Lines starting with \code{import} are executed.
|
||||
mentioned above; its contents are additional items (one per line) to
|
||||
be added to \code{sys.path}. Non-existing items are never added to
|
||||
\code{sys.path}, but no check is made that the item refers to a
|
||||
directory (rather than a file). No item is added to \code{sys.path}
|
||||
more than once. Blank lines and lines beginning with \code{\#} are
|
||||
skipped. Lines starting with \code{import} (followed by space or tab)
|
||||
are executed.
|
||||
|
||||
\versionchanged[A space or tab is now required after the import
|
||||
keyword]{2.6}
|
||||
|
||||
\index{package}
|
||||
\indexiii{path}{configuration}{file}
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ def addpackage(sitedir, name, known_paths):
|
|||
for line in f:
|
||||
if line.startswith("#"):
|
||||
continue
|
||||
if line.startswith("import"):
|
||||
if line.startswith("import ") or line.startswith("import\t"):
|
||||
exec line
|
||||
continue
|
||||
line = line.rstrip()
|
||||
|
|
Loading…
Reference in New Issue