[issue18262] ZipInfo.external_attr are not documented

2020-05-17 Thread Pavol Babinčák
Pavol Babinčák added the comment: I'm interested in this documentation enhancement as well. Alex, I'm wondering if you could convert your patch to GitHub? [1] [1] https://devguide.python.org/pullrequest/#converting-an-existing-patch-from-b-p-o-to-github -- nosy: +scrool ___

[issue18262] ZipInfo.external_attr are not documented

2015-04-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue18262] ZipInfo.external_attr are not documented

2015-04-16 Thread Ned Deily
Changes by Ned Deily : -- stage: needs patch -> patch review versions: +Python 3.4, Python 3.5 ___ Python tracker ___ ___ Python-bugs-

[issue18262] ZipInfo.external_attr are not documented

2015-04-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +alanmcintyre, serhiy.storchaka, twouters ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue18262] ZipInfo.external_attr are not documented

2015-04-16 Thread Alex Lord
Alex Lord added the comment: Any follow up on this? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue18262] ZipInfo.external_attr are not documented

2014-04-14 Thread Alex Lord
Alex Lord added the comment: And here's the 3.4 and 3.5 patch -- Added file: http://bugs.python.org/file34859/Issue18262_34_35.patch ___ Python tracker ___ __

[issue18262] ZipInfo.external_attr are not documented

2014-04-14 Thread Alex Lord
Alex Lord added the comment: Here's a documentation patch for 2.7 that informs the users that Zipfile.extra and Zipfile.extraall don't save permissions and that Zipfile.writestr will use ZipInfo.extra_attr or default to chmod permission set of 0600. -- keywords: +patch nosy: +Alex.Lord

[issue18262] ZipInfo.external_attr are not documented

2013-06-19 Thread anatoly techtonik
anatoly techtonik added the comment: 3.4+ feature is not a replacement for proper documentation for 2.7-3.4 -- resolution: duplicate -> ___ Python tracker ___ __

[issue18262] ZipInfo.external_attr are not documented

2013-06-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing this as a duplicate of #15795 (which already has a patch) -- resolution: -> duplicate superseder: -> Zipfile.extractall does not preserve file permissions ___ Python tracker

[issue18262] ZipInfo.external_attr are not documented

2013-06-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: See also #15795 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue18262] ZipInfo.external_attr are not documented

2013-06-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'd be +1 on extending the zipfile API in 3.4 (with a documentation update in older releases as suggested by anatoly): * Add a method or property to ZipInfo for (un)packing the external_attr field * Add an keyword argument to Zipfile.extract and Zipfile.ex

[issue18262] ZipInfo.external_attr are not documented

2013-06-19 Thread anatoly techtonik
anatoly techtonik added the comment: Here is the doc - http://stackoverflow.com/questions/434641/how-do-i-set-permissions-attributes-on-a-file-in-a-zip-file-using-pythons-zip/6297838#6297838 -- ___ Python tracker

[issue18262] ZipInfo.external_attr are not documented

2013-06-18 Thread anatoly techtonik
New submission from anatoly techtonik: zipfile doesn't restore file attributes when extracting. Documentation should at least contain example how to do this manually, because the ony way to do this - through ZipInfo.external_attr is too cryptic. -- assignee: docs@python components: Doc