[issue29652] Fix evaluation order of keys/values in dict comprehensions

2018-04-28 Thread janzert
janzert <janz...@janzert.com> added the comment: Just as a note so the email discussion isn't forever lost to the void. In an unrelated thread on python-dev recently there was a short discussion on this topic in which both Guido van Rossum[1] and Tim Peters[2] gave the o

[issue1191964] asynchronous Subprocess

2014-03-30 Thread janzert
Changes by janzert janz...@janzert.com: -- nosy: +janzert ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1191964 ___ ___ Python-bugs-list mailing

[issue19435] Directory traversal attack for CGIHTTPRequestHandler

2013-10-29 Thread janzert
Changes by janzert janz...@janzert.com: -- nosy: +janzert ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19435 ___ ___ Python-bugs-list mailing

[issue19055] Regular expressions: * does not match as many repetitions as possible.

2013-09-19 Thread janzert
janzert added the comment: The documentation on the | operator in the re module pretty explicitly covers this. http://docs.python.org/2/library/re.html A|B, where A and B can be arbitrary REs, creates a regular expression that will match either A or B. An arbitrary number of REs can

[issue19037] mailbox module modifies maildir file times after moving from tmp directory

2013-09-18 Thread janzert
janzert added the comment: Thanks for committing the fix. Figured I should finally get it done and signed the online CLA when I submitted this issue. I assume it just takes a while for someone to go through and apply the appropriate flag? This change seems rather insubstantial for an ACKS

[issue19037] mailbox module modifies maildir file times after moving from tmp directory

2013-09-16 Thread janzert
New submission from janzert: The Maildir.add and Maildir.__setitem__ methods in the mailbox module attempts to change the file mtime after moving the file into the new directory. This allows a race condition since other programs are can move or otherwise modify the file as soon

[issue19037] mailbox module modifies maildir file times after moving from tmp directory

2013-09-16 Thread janzert
janzert added the comment: I can certainly write a patch if wanted. It should be simply moving and modifying two lines in each of the two methods. My understanding is that it should be against 2.7 so it can be applied there first then merged forward? Unfortunately while I can consistently

[issue19037] mailbox module modifies maildir file times after moving from tmp directory

2013-09-16 Thread janzert
Changes by janzert janz...@janzert.com: -- keywords: +patch Added file: http://bugs.python.org/file31802/mailbox.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19037

[issue18606] Add statistics module to standard library

2013-08-27 Thread janzert
janzert added the comment: Seems that the discussion is now down to implementation issues and the PEP is at the point of needing to ask python-dev for a PEP dictator? -- nosy: +janzert ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue17174] Posix os.path.join should raise TypeError when passed unusable type

2013-02-09 Thread Janzert
Janzert added the comment: While the current error message is a bit generic, I rather like that it tells you exactly why the type/object passed couldn't be used. -- nosy: +Janzert ___ Python tracker rep...@bugs.python.org http://bugs.python.org