Danijel added the comment:
For me, this patch solves my problems. Thank you.
--
___
Python tracker
<https://bugs.python.org/issue40049>
___
___
Python-bug
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/issue
Change by Danijel :
--
type: -> crash
___
Python tracker
<https://bugs.python.org/issue40049>
___
___
Python-bugs-list mailing list
Unsubscrib
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.ta
New submission from Danijel :
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
status: open
title