[issue5097] asyncore.dispatcher_with_send undocumented

2009-10-02 Thread Kandalintsev Alexandre
Kandalintsev Alexandre bug_hun...@messir.net added the comment: Please don't keep this bug open :( -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5097

[issue6969] configparser

2009-09-22 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre bug_hun...@messir.net: 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 module

[issue6052] for-loop doesn't work with -c

2009-05-18 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre bug_hun...@messir.net: Hello! I found this problem: $ python3 -c 'import sys; for line in sys.stdout: pass' File string, line 1 import sys; for line in sys.stdout: pass ^ SyntaxError: invalid syntax Without import-statement

[issue5966] unnecessary hardlink

2009-05-08 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre bug_hun...@messir.net: 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

[issue5097] asyncore.dispatcher_with_send undocumented

2009-02-02 Thread Kandalintsev Alexandre
Kandalintsev Alexandre bug_hun...@messir.net added the comment: Ok, I'll try :). I'll send it today or tomorrow. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5097

[issue5097] asyncore.dispatcher_with_send undocumented

2009-02-02 Thread Kandalintsev Alexandre
Kandalintsev Alexandre bug_hun...@messir.net 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 based

[issue5096] strange thing after call PyObject_CallMethod

2009-01-29 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre bug_hun...@messir.net: 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

[issue5096] strange thing after call PyObject_CallMethod

2009-01-29 Thread Kandalintsev Alexandre
Kandalintsev Alexandre bug_hun...@messir.net 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

[issue5097] asyncore.dispatcher_with_send undocumented

2009-01-29 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre bug_hun...@messir.net: 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

[issue4737] documentation and noddy*.c

2008-12-24 Thread Kandalintsev Alexandre
New submission from Kandalintsev Alexandre bug_hun...@messir.net: 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

[issue4576] Defining new types little outdated

2008-12-07 Thread Kandalintsev Alexandre
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); -- assignee: georg.brandl components

[issue4535] Build / Test Py3K failed on Ubuntu 8.10

2008-12-07 Thread Kandalintsev Alexandre
Kandalintsev Alexandre [EMAIL PROTECTED] added the comment: Rob, could you repeat this test on trunk version of python? ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4535

[issue4535] Build / Test Py3K failed on Ubuntu 8.10

2008-12-05 Thread Kandalintsev Alexandre
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_codecmaps_kr

[issue4504] Doc/includes out of date

2008-12-03 Thread Kandalintsev Alexandre
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: georg.brandl components

[issue4505] ob_size not removed from docs

2008-12-03 Thread Kandalintsev Alexandre
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 remove

[issue4149] Py_BuildValue and y format unit

2008-10-19 Thread Kandalintsev Alexandre
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: normal status: open