Kandalintsev Alexandre added the comment:
Please don't keep this bug open :(
--
___
Python tracker
<http://bugs.python.org/issue5097>
___
___
Python-bugs-l
New submission from Kandalintsev Alexandre :
Hello! Seems configparser is broken in recent versions of py3k. Please also
check older
versions of python.
$ python3 ./cfgexample.py
Traceback (most recent call last):
File "./cfgexample.py", line 9, in
config.write(configfi
New submission from Kandalintsev Alexandre :
Hello!
I found this problem:
$ python3 -c 'import sys; for line in sys.stdout: pass'
File "", line 1
import sys; for line in sys.stdout: pass
^
SyntaxError: invalid syntax
Without import-statement this w
New submission from Kandalintsev Alexandre :
Hello!
After installing py3k:72466 I found that python3 is hardlink to
python3.1:
$ ls -lai python*
34614 -rwxr-xr-x 2 root root 3625145 2009-05-08 11:10 python3
34614 -rwxr-xr-x 2 root root 3625145 2009-05-08 11:10 python3.1
38299 -rwxr-xr-x 1 root
Kandalintsev Alexandre added the comment:
This is my explanation of dispatcher_with_send. As my english is far from
perfect and I'm not expirienced writing documentation you need to review
it and fix my mistakes.
class asyncore.dispatcher_with_send
This is class bas
Kandalintsev Alexandre added the comment:
Ok, I'll try :). I'll send it today or tomorrow.
___
Python tracker
<http://bugs.python.org/issue5097>
___
___
Python-b
New submission from Kandalintsev Alexandre :
Hello!
asyncore.dispatcher_with_send undocumented in all python versions
--
assignee: georg.brandl
components: Documentation
messages: 80763
nosy: exe, georg.brandl
severity: normal
status: open
title: asyncore.dispatcher_with_send
Kandalintsev Alexandre added the comment:
Thank you for your activity. This feature drank alot of my blood. Please
document this or change behavior.
PS Older python versions may be also affected so changing behavior may
brake existing code :(
___
Python
New submission from Kandalintsev Alexandre :
When unhandled in python code exception occurs in PyObject_CallMethod
frame_dealloc() (Objects/frameobject.c:422)
not called. Even if I call PyErr_Print().
But if I call PyErr_Clear() then all okay. Documentation says that both
this functions
New submission from Kandalintsev Alexandre :
Documentation says that
There’s no chance that the reference count can overflow; at least as many bits
are used to hold the reference count as there are distinct memory locations in
virtual memory (assuming sizeof(Py_ssize_t) >= siz
New submission from Kandalintsev Alexandre :
Hello!
1) In http://docs.python.org/3.0/extending/extending.html we see:
=
Note that PyMODINIT_FUNC declares the function as void return type
=
But thats not true, it's defined as PyObject*. I think this is outdated
in
Kandalintsev Alexandre <[EMAIL PROTECTED]> added the comment:
Rob, could you repeat this test on trunk version of python?
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
New submission from Kandalintsev Alexandre <[EMAIL PROTECTED]>:
Hello!
It's need to little update "Defining new types" documentation section
in py3.0 and py3.1:
- self->ob_type->tp_free((PyObject*)self);
+ Py_TYPE(self)->tp_free((PyObject *)self);
--
ass
Kandalintsev Alexandre <[EMAIL PROTECTED]> added the comment:
My results on ubuntu 8.10 x86(with debug features enabled) on Python
3.1a0 (py3k:67586, Dec 5 2008, 19:39:50):
298 tests OK.
23 tests skipped:
test_codecmaps_cn test_codecmaps_hk test_codecmaps_jp
test_codecm
New submission from Kandalintsev Alexandre <[EMAIL PROTECTED]>:
Hello!
In http://docs.python.org/dev/3.0/extending/newtypes.html we see ob_size
in object definition.
But if we are look on PyTypeObject in ./Include/object.h we will find
that there no ob_size defined.
So we must remov
New submission from Kandalintsev Alexandre <[EMAIL PROTECTED]>:
Hello!
Doc/includes/noddy.c and all other uses Py_InitModule3 which is removed
from py3k.
noddy2.c doesn't compile("noddy2.c:16: error: ‘Noddy’ has no member
named ‘ob_type’").
--
assignee: ge
New submission from Kandalintsev Alexandre <[EMAIL PROTECTED]>:
Hello!
'y' format unit in Py_BuildValue undocumented. However it's described in
PyArg_ParseTuple.
--
assignee: georg.brandl
components: Documentation
messages: 74989
nosy: exe, georg.brandl
severity
17 matches
Mail list logo