New submission from Michal Vyskocil :
Write to /dev/full in python3 don't raise IOError. Python2 works as expected,
the close call causes an IOError exception with no space left on device message.
$ python
Python 2.7 (r27:82500, Aug 07 2010, 16:54:59) [GCC] on linux2
Type "help&qu
New submission from Michal Vyskocil:
pprint._safe_repr for type str uses much slower codepath by default, which does
not makes a sense in Python3 context. Instead of simply using repr, it check
the existence of 'locale' in sys.modules and if found, it goes one-by-one-char
call s
Michal Vyskocil added the comment:
This is simple code checks if .isalnum is or is not locale sensitive and a
small measurement of how much is the repr faster, compared to old codepath.
BTW: python3 test_pprint.py on patched version have succeeded
OK (expected failures=1
Changes by Michal Vyskocil :
Added file: http://bugs.python.org/file31194/check.py
___
Python tracker
<http://bugs.python.org/issue18682>
___
___
Python-bugs-list mailin
Michal Vyskocil added the comment:
The fast scalars approach looks great!
--
___
Python tracker
<http://bugs.python.org/issue18682>
___
___
Python-bugs-list mailin
New submission from Michal Vyskocil :
The compounded expressions with lambda functions are evaluated
incorrectly. The simple expressions, or a named functions are evaluated
good. The problem is only in the evaluation of compounded expressions.
It seems that after evaluate of the first lambda