diff options
author | mattip <matti.picus@gmail.com> | 2018-04-11 14:23:07 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-04-11 14:23:07 +0300 |
commit | 1eef2af85df832b55c856935a820889cdee83581 (patch) | |
tree | 6d08ab46d404717869e23811bdde7db2ce29ec62 /numpy/distutils/misc_util.py | |
parent | 0a8ba953cc3fb973f63e2948c1d2027d39b9f88c (diff) | |
download | numpy-1eef2af85df832b55c856935a820889cdee83581.tar.gz |
formatting fixes
Diffstat (limited to 'numpy/distutils/misc_util.py')
-rw-r--r-- | numpy/distutils/misc_util.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 1d08942f6..b6d6a06c7 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -1218,15 +1218,15 @@ class Configuration(object): #. file.txt -> (., file.txt)-> parent/file.txt #. foo/file.txt -> (foo, foo/file.txt) -> parent/foo/file.txt #. /foo/bar/file.txt -> (., /foo/bar/file.txt) -> parent/file.txt - #. *.txt -> parent/a.txt, parent/b.txt - #. foo/*.txt -> parent/foo/a.txt, parent/foo/b.txt - #. */*.txt -> (*, */*.txt) -> parent/c/a.txt, parent/d/b.txt + #. \*.txt -> parent/a.txt, parent/b.txt + #. foo/\*.txt -> parent/foo/a.txt, parent/foo/b.txt + #. \*/\*.txt -> (\*, \*/*.txt) -> parent/c/a.txt, parent/d/b.txt #. (sun, file.txt) -> parent/sun/file.txt #. (sun, bar/file.txt) -> parent/sun/file.txt #. (sun, /foo/bar/file.txt) -> parent/sun/file.txt - #. (sun, *.txt) -> parent/sun/a.txt, parent/sun/b.txt - #. (sun, bar/*.txt) -> parent/sun/a.txt, parent/sun/b.txt - #. (sun/*, */*.txt) -> parent/sun/c/a.txt, parent/d/b.txt + #. (sun, \*.txt) -> parent/sun/a.txt, parent/sun/b.txt + #. (sun, bar/\*.txt) -> parent/sun/a.txt, parent/sun/b.txt + #. (sun/\*, \*/\*.txt) -> parent/sun/c/a.txt, parent/d/b.txt An additional feature is that the path to a data-file can actually be a function that takes no arguments and returns the actual path(s) to |