[issue31774] tarfile.open ignores custom bufsize value when creating a new archive

2017-10-16 Thread Nitish
Nitish added the comment: Sorry. My bad. There *is* an argument 'copybufsize' in TarFile. -- ___ Python tracker ___ ___ Python-bugs-

[issue31774] tarfile.open ignores custom bufsize value when creating a new archive

2017-10-16 Thread Nitish
Nitish added the comment: Seems like bufsize is used only in streaming modes. Even in the documentation bufsize is described only in the context of streaming modes. Even TarFile constructor doesn't take bufsize as an argument. Why is it so? -- ___

[issue31774] tarfile.open ignores custom bufsize value when creating a new archive

2017-10-16 Thread Nitish
Change by Nitish : -- nosy: +nitishch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue31774] tarfile.open ignores custom bufsize value when creating a new archive

2017-10-12 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : Trying to create an archive with the tarfile module, by specifying a different blocking factor, doesn't seem to work as only the default value is being used. The issue is reproducible on all the active python branches. Attaching a script to reproduce