New submission from Wojciech Walczak:
py3k's print() is not flushing when the string's length is 1 byte long
and 'end' parameter is set to ''. Example:
>>> print('x',end='') # it should print 'x' but it does nothing
&g
Wojciech Walczak added the comment:
2007/11/8, admin <[EMAIL PROTECTED]>:
> --
> keywords: +py3k
> priority: -> high
> resolution: -> accepted
Which resolution was accepted?
Wojtek Walczak
__
Tracker <[EMAIL PROTECTE
New submission from Wojciech Walczak:
For debugging reasons I have added a simple line to PyObject_Call()
function in Objects/abstract.c:
printf("%s.%s\n", func->ob_type->tp_name, PyEval_GetFuncName(func));
Now, after compiling python and running interpreter with simple
print(
New submission from Wojciech Walczak:
While using multiprocessing.Manager() to send data between processes I've
noticed that one of the traceback messages is not very informative:
Traceback (most recent call last):
File "age_predict.py", line 39, in
train_data, train_ta