[issue22966] py_compile: foo.bar.py → __pycache__/foo.cpython-34.pyc

2014-11-29 Thread Piotr Ożarowski
Piotr Ożarowski added the comment: Python 3.2 generates foo.bar.cpython-32.pyc so it's a regression -- ___ Python tracker <http://bugs.python.org/is

[issue22966] py_compile: foo.bar.py → __pycache__/foo.cpython-34.pyc

2014-11-29 Thread Piotr Ożarowski
New submission from Piotr Ożarowski: when py_compile module is asked to create .pyc file for file with invalid name, it doesn't fail or ignore such request - it creates/overwrites .pyc file for sane file name (i.e. ignores everything after dot) $ touch foo.bar.py $ python3.4 -m py_co

[issue17469] Fix sys.getallocatedblocks() when running on valgrind

2013-03-18 Thread Piotr Ożarowski
New submission from Piotr Ożarowski: [Forwarding patch from Julien Cristau ] _Py_AllocatedBlocks was never incremented in PyObject_Malloc(), but would still be decremented on failure or in PyObject_Free(). -- components: Interpreter Core files: obmalloc.patch keywords: patch messages

[issue14894] distutils.LooseVersion fails to compare number and a word

2012-05-23 Thread Piotr Ożarowski
Changes by Piotr Ożarowski : -- nosy: +piotr ___ Python tracker <http://bugs.python.org/issue14894> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1054967] bdist_deb - Debian packager

2010-04-30 Thread Piotr Ożarowski
Changes by Piotr Ożarowski : -- nosy: +piotr ___ Python tracker <http://bugs.python.org/issue1054967> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8233] extend py_compile to compile files from stdin

2010-03-25 Thread Piotr Ożarowski
Changes by Piotr Ożarowski : Added file: http://bugs.python.org/file16659/py_compile.py.diff ___ Python tracker <http://bugs.python.org/issue8233> ___ ___ Python-bug

[issue8233] extend py_compile to compile files from stdin

2010-03-25 Thread Piotr Ożarowski
New submission from Piotr Ożarowski : Following issue 8140 - attached patches add functionality to take file names to be compiled from standard input in py_compile module (if '-' is the only parameter in args) -- components: Library (Lib) files: py_compile.py.diff keywo