[issue13158] tarfile.TarFile.getmembers misses some entries

2011-10-14 Thread Sebastien Binet
Sebastien Binet bi...@cern.ch added the comment: thanks! The format of the archive is of very bad quality BTW ;-) well, that's C++ :P -s -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13158

[issue13158] tarfile.TarFile.getmembers misses some entries

2011-10-13 Thread Sebastien Binet
Sebastien Binet bi...@cern.ch added the comment: one interesting additional piece of information is that if I un-tar that file and re-tar it w/o gzip compression, getmembers gets the right answer. -s -- ___ Python tracker rep...@bugs.python.org

[issue13158] tarfile.TarFile.getmembers misses some entries

2011-10-12 Thread Sebastien Binet
New submission from Sebastien Binet bi...@cern.ch: hi there, it seems tarfile in python 3.2.2 (as installed in archlinux, but I don't see any additional patch applied on top of the vanilla sources: http://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/python ) has

[issue1381] cmath is numerically unsound

2010-05-11 Thread Sebastien Binet
Sebastien Binet bi...@cern.ch added the comment: hi there, it seems there is still a problem, at least with asinh(-2j) see: $ python Python 2.6.5 (r265:79063, Apr 1 2010, 05:28:39) [GCC 4.4.3 20100316 (prerelease)] on linux2 Type help, copyright, credits or license for more information

[issue1381] cmath is numerically unsound

2010-05-11 Thread Sebastien Binet
Sebastien Binet bi...@cern.ch added the comment: hi Mark, that may very well be so, but I'd naively standardize on C/Fortran behaviour (but that's probably my physicist bias) on my platform, the following piece of C-code: $ cat test_cmath.c #include complex.h #include stdio.h int main(int

[issue1381] cmath is numerically unsound

2010-05-11 Thread Sebastien Binet
Sebastien Binet bi...@cern.ch added the comment: Note that in your program, you're feeding complex(-0.0, -2.0) to asinh, not complex(0.0, -2.0). ah! (ducking) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1381