On Friday, October 7, 2016 at 1:05:43 PM UTC-4, Michael Torrie wrote:
> On 10/06/2016 10:46 AM, Tim wrote:
> > I need to zip up a directory that's about 400mb.
> > I'm using shutil.make_archive and I'm getting this response:
> >
> > Segmentation fault: 11 (core dumped)
> >
> > The code is str
On 10/06/2016 10:46 AM, Tim wrote:
> I need to zip up a directory that's about 400mb.
> I'm using shutil.make_archive and I'm getting this response:
>
> Segmentation fault: 11 (core dumped)
>
> The code is straightforward (and works on other, smaller dirs):
>
> shutil.make_archive(os.pat
On Friday, October 7, 2016 at 5:18:11 AM UTC-4, Chris Angelico wrote:
> On Fri, Oct 7, 2016 at 5:24 PM, dieter wrote:
> > Memory allocations are frequent (in many places) and they fail rarely.
> > Therefore, there is quite a high probability that some of those
> > allocations fail to check that the
On Fri, Oct 7, 2016 at 5:24 PM, dieter wrote:
> Memory allocations are frequent (in many places) and they fail rarely.
> Therefore, there is quite a high probability that some of those
> allocations fail to check that the allocation has been successful.
> If this happens (and the allocation fails)
Tim writes:
> I need to zip up a directory that's about 400mb.
> I'm using shutil.make_archive and I'm getting this response:
>
> Segmentation fault: 11 (core dumped)
>
> The code is straightforward (and works on other, smaller dirs):
>
> shutil.make_archive(os.path.join(zip_dir, zname), '
On Thursday, October 6, 2016 at 2:04:20 PM UTC-4, Random832 wrote:
> On Thu, Oct 6, 2016, at 13:45, Random832 wrote:
> > On Thu, Oct 6, 2016, at 12:46, Tim wrote:
> > > I need to zip up a directory that's about 400mb.
> > > I'm using shutil.make_archive and I'm getting this response:
> > >
> > >
On Thu, Oct 6, 2016, at 13:45, Random832 wrote:
> On Thu, Oct 6, 2016, at 12:46, Tim wrote:
> > I need to zip up a directory that's about 400mb.
> > I'm using shutil.make_archive and I'm getting this response:
> >
> > Segmentation fault: 11 (core dumped)
> >
> > The code is straightforward (a
On Thu, Oct 6, 2016, at 12:46, Tim wrote:
> I need to zip up a directory that's about 400mb.
> I'm using shutil.make_archive and I'm getting this response:
>
> Segmentation fault: 11 (core dumped)
>
> The code is straightforward (and works on other, smaller dirs):
Are you able to make a test
I need to zip up a directory that's about 400mb.
I'm using shutil.make_archive and I'm getting this response:
Segmentation fault: 11 (core dumped)
The code is straightforward (and works on other, smaller dirs):
shutil.make_archive(os.path.join(zip_dir, zname), 'zip', tgt_dir)
I guess I