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
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
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
Changes by Piotr Ożarowski :
--
nosy: +piotr
___
Python tracker
<http://bugs.python.org/issue14894>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Ożarowski :
--
nosy: +piotr
___
Python tracker
<http://bugs.python.org/issue1054967>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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