[issue30618] readlink for pathlib paths

2017-07-21 Thread Steve Ward
Changes by Steve Ward <plane...@gmail.com>: -- nosy: +planet36 -smheidrich ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue30618> ___

[issue30618] readlink for pathlib paths

2017-07-21 Thread Steve Ward
Changes by Steve Ward <plane...@gmail.com>: -- nosy: +smheidrich ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue30618> ___ __

[issue23017] string.printable.isprintable() returns False

2014-12-08 Thread Steve Ward
New submission from Steve Ward: string.printable includes all whitespace characters. However, the only whitespace character that is printable is the space (0x20). By definition, the only ASCII characters considered printable are: alphanumeric characters punctuation characters

[issue12932] filecmp.dircmp does not allow non-shallow comparisons

2013-06-14 Thread Steve Ward
Steve Ward added the comment: Add input parameter 'shallow' to dircmp. Use it in phase3 and phase4. Document it in filecmp.rst. Did not modify test_filecmp.py. -- keywords: +patch Added file: http://bugs.python.org/file30589/issue12932.diff

[issue12932] filecmp.dircmp does not allow non-shallow comparisons

2013-06-06 Thread Steve Ward
Changes by Steve Ward plane...@gmail.com: -- nosy: +planet36 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12932 ___ ___ Python-bugs-list mailing

[issue12015] possible characters in temporary file name is too few

2011-05-09 Thread Steve Ward
Changes by Steve Ward plane...@gmail.com: Added file: http://bugs.python.org/file21950/tempfile.py.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12015

[issue12015] possible characters in temporary file name is too few

2011-05-06 Thread Steve Ward
Steve Ward plane...@gmail.com added the comment: It is an issue because... 1) Python falls out of line with most other popular systems and languages. 2) There was never a good reason to decrease the entropy in the first place. If there was, the reason of case-sensitive files systems

[issue12015] possible characters in temporary file name is too few

2011-05-05 Thread Steve Ward
New submission from Steve Ward plane...@gmail.com: In this revision http://hg.python.org/cpython/rev/b6da97930f63, the possible characters that comprise a temporary file decreased. It was noted in this thread http://mail.python.org/pipermail/python-dev/2010-November/105452.html. The old