[issue17153] tarfile extract fails when Unicode in pathname

2016-08-10 Thread Vadim Markovtsev
Vadim Markovtsev added the comment: Relevant issue in pip: https://github.com/pypa/setuptools/issues/710 -- ___ Python tracker <http://bugs.python.org/issue17

[issue17153] tarfile extract fails when Unicode in pathname

2016-08-10 Thread Vadim Markovtsev
Vadim Markovtsev added the comment: So... The bug persists in 3.5 ad 3.6. It prevents from e.g. unpacking tarballs coming from GitHub repos with Unicode file names. -- nosy: +Vadim Markovtsev2 ___ Python tracker <http://bugs.python.org/issue17

[issue26529] urllib.request: ftplib's cwd() can do harm

2016-03-10 Thread Vadim Markovtsev
Changes by Vadim Markovtsev : -- resolution: -> not a bug status: open -> closed ___ Python tracker <http://bugs.python.org/issue26529> ___ ___ Python-bugs-

[issue26529] urllib.request: ftplib's cwd() can do harm

2016-03-10 Thread Vadim Markovtsev
New submission from Vadim Markovtsev: urllib/request.py, near line 2345 # Set transfer mode to ASCII! self.ftp.voidcmd('TYPE A') # Try a directory listing. Verify that directory exists. if file: pwd = self.ftp.pwd() try: try: self.ftp.cwd(file)

[issue23720] __del__() order is broken since 3.4.0

2015-03-20 Thread Vadim Markovtsev
Vadim Markovtsev added the comment: +1 -- nosy: +Vadim Markovtsev ___ Python tracker <http://bugs.python.org/issue23720> ___ ___ Python-bugs-list mailin

[issue14073] allow per-thread atexit()

2015-03-18 Thread Vadim Markovtsev
Vadim Markovtsev added the comment: I agree that there must be some way to join the threads before exiting, with a callback or anything else. Currently, my thread pool implementation has to monkey patch sys.exit and register SIGINT handler to shutdown itself and avoid the hangup (100+ LoC to