[issue27546] Integrate tkinter and asyncio (and async)

2016-07-18 Thread Maxime S
Maxime S added the comment: I've signed the CLA. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27546> ___ ___ Python-bugs-list

[issue23562] file.read() followed by file.write() result in incorrect behavior

2015-03-02 Thread Maxime S
New submission from Maxime S: Observed Behavior: $python3 Python 3.5.0a1+ (default, Mar 2 2015, 14:30:05) [GCC 4.6.3] on linux Type help, copyright, credits or license for more information. f = open(test, w+) f.write(Hello World) 11 f.seek(0) 0 f.read(5) 'Hello' f.write( people) 7