[issue40049] tarfile cannot extract from stdin

2020-03-27 Thread Danijel
Danijel added the comment: For me, this patch solves my problems. Thank you. -- ___ Python tracker <https://bugs.python.org/issue40049> ___ ___ Python-bug

[issue40049] tarfile cannot extract from stdin

2020-03-26 Thread Danijel
Danijel added the comment: Hi, well, it says entity too large. I've attached a smaller one, that throws a similar but slightly different error. (Note: only on the _second_ extraction, it looks like problems with symlinks) You can find larger ones here: https://data.rbfh.de/issue40049

[issue40049] tarfile cannot extract from stdin

2020-03-24 Thread Danijel
Change by Danijel : -- type: -> crash ___ Python tracker <https://bugs.python.org/issue40049> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue40049] tarfile cannot extract from stdin

2020-03-23 Thread Danijel
New submission from Danijel : Hi, I have the following code: ``` import tarfile import sys tar = tarfile.open(fileobj=sys.stdin.buffer, mode='r|*') tar.extractall("tarout") tar.close() ``` then doing the following on a debian 10 system: ``` $ python -m tarfile -c git.tar /usr/sha

[issue11989] deprecate shutil.copy2

2011-05-03 Thread Danijel
New submission from Danijel d...@korn.shell.la: The function name is really ugly. The attached patch introduces an optional parameter to shutil.copy. -- components: Library (Lib) files: shutil.py.diff keywords: patch messages: 135073 nosy: datamuc priority: normal severity: normal