[issue5614] Malloc errors in test_io

2018-10-10 Thread Ronald Oussoren
Ronald Oussoren added the comment: The error is printed by libc, there's nothing we can do about that. -- ___ Python tracker ___

[issue5614] Malloc errors in test_io

2018-10-09 Thread William Schwartz
William Schwartz added the comment: In Jupyter Notebook, I tried to pass a large amount of data (about 2.3 GB) to Statsmodels's KDEUnivariate.fit (https://www.statsmodels.org/dev/generated/statsmodels.nonparametric.kde.KDEUnivariate.fit.html#statsmodels.nonparametric.kde.KDEUnivariate.fit)

[issue5614] Malloc errors in test_io

2009-11-17 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Closing the issue as this is not a bug in python (as noted in the comments) and there doesn't seem to be a workaround for avoiding the spurious messages on stderr. -- resolution: - wont fix status: open - closed type: crash -

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: What's more annoying: the error goes away while running in a debugger. The issue happens at least in tes_constructor: test_constructor (__main__.CBufferedWriterTest) ... python.exe(35957,0x7fff701d1720) malloc: *** mmap(size=-

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Buffer_size is set to 0x7fff in BufferedWriter_init at the end of test_constructor. I have no idea why this happens, but this definitly seems wrong to me. Debugging is rather hard at the moment because the issue goes away

[issue5614] Malloc errors in test_io

2009-03-30 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: malloc: *** mmap(size=-9223372036854775808) failed Does this error occur even if you revert Modules/mmapmodule.c to r69214? I have touched this module recently (I believe I fixed only SEGV bugs, not changed behavior) so I want to

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I don't think this is related to Python's mmap module, the message says that malloc(3) cannot mmap some extra memory space. I'll test with the older version of mmap just in case. -- ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: Sorry, this is not related to mmap module... Forgot my comments. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5614 ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: -- nosy: -ocean-city ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5614 ___ ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: If you look at test_io, calling malloc() with sys.maxsize is precisely the purpose of the test, to check that allocation failures are detected and reported properly. So the warnings can be safely ignored, if they only happen in test_constructor.

[issue5614] Malloc errors in test_io

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: PS: if the warnings are annoying, the test can be disabled selectively under Mac OS X. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5614

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I can't believe that I completely missed that this is the purpose of the tests, I honestly believed that I had checked everything there was to check :-( Disabling the test won't be necessary, I'm keeping this issue open for a while