Message152971
So given
/home/a
/home/a/k.py
/home/a/c/j.py
/home/b/z.py
/home/b/c/f.py
and a current directory of /home/a, we'd have:
pattern matches
------- -------
*.py k.py, c/j.py
c/*.py c/j.py
c* c [?]
../*.py ?
../c/*.py ?
Thinking about those .. cases makes my brain hurt :) What does it mean to match '../*.py' when I'm recursing into the c subdirectory? What does it mean in the current directory, for that matter?
As you can see, your short explanation has left me with one case where I have a question, and one set of cases where my intuition completely fails.
--David |
|
Date |
User |
Action |
Args |
2012-02-09 18:03:56 | r.david.murray | set | recipients:
+ r.david.murray, ncoghlan, pitrou, giampaolo.rodola, eric.araujo, eli.bendersky, ubershmekel |
2012-02-09 18:03:56 | r.david.murray | set | messageid: <1328810636.02.0.0343959296017.issue13968@psf.upfronthosting.co.za> |
2012-02-09 18:03:55 | r.david.murray | link | issue13968 messages |
2012-02-09 18:03:55 | r.david.murray | create | |
|