Bug#861736: marked as done (python-nxs: Cannot save files with nxs python module)

2017-11-01 Thread Debian Bug Tracking System
Your message dated Thu, 02 Nov 2017 01:34:14 + with message-id <e1ea4oc-0001rz...@fasolo.debian.org> and subject line Bug#861736: fixed in nexus 4.3.2-svn1921-6 has caused the Debian Bug report #861736, regarding python-nxs: Cannot save files with nxs python module to be marked a

Processed: Re: Bug#861736 closed by Andreas Tille <ti...@debian.org> (Bug#861736: fixed in nexus 4.3.2-svn1921-5)

2017-10-16 Thread Debian Bug Tracking System
Processing control commands: > tags -1 + patch Bug #861736 [python-nxs] python-nxs: Cannot save files with nxs python module Ignoring request to alter tags of bug #861736 to the same tags previously set -- 861736: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861736 Debian Bug Track

Bug#861736: closed by Andreas Tille <ti...@debian.org> (Bug#861736: fixed in nexus 4.3.2-svn1921-5)

2017-10-16 Thread Gilles Filippini
Control: tags -1 + patch Hi, On Fri, 12 May 2017 08:32:28 +0200 Marc Rosanes wrote: > Hi, > > We have found that python-nxs is still affected by problems: > > The following piece of code fails on stretch + the lastest nexus from > unstable: > > ``` > import nxs > f =

Bug#861736: closed by Andreas Tille <ti...@debian.org> (Bug#861736: fixed in nexus 4.3.2-svn1921-5)

2017-05-12 Thread Marc Rosanes
Hi, We have found that python-nxs is still affected by problems: The following piece of code fails on stretch + the lastest nexus from unstable: ``` import nxs f = nxs.open("/tmp/foo.h5", "w5") f.makegroup('entry', 'NXentry') f.opengroup('entry') f.makegroup('g', 'NXcollection')

Bug#861736: Still some regression in python-nxs

2017-05-11 Thread Carlos Pascual
Hi, while nexus 4.3.2-svn1921-5 fixes the originally reported exception, the fix seems not to be complete [1]. In order to trigger the still-existing regression, run the following python code (which ideally should exit without errors): ``` import nxs f = nxs.open("/tmp/foo.h5", "w5")

Bug#861736:

2017-05-11 Thread PICCA Frederic-Emmanuel
here the error message ~/Debian/nexus/bugs$ ./bug.py Traceback (most recent call last): File "./bug.py", line 15, in f.flush() File "/usr/lib/python2.7/dist-packages/nxs/napi.py", line 397, in flush raise NeXusError, "Could not flush NeXus file %s"%(self.filename)

Bug#861736:

2017-05-11 Thread PICCA Frederic-Emmanuel
It seems that the fix is not enought this test failed at the flush import nxs f = nxs.open("/tmp/foo.h5", "w5") f.makegroup('entry', 'NXentry') f.opengroup('entry') f.makegroup('g', 'NXcollection') f.opengroup('g', 'NXcollection') f.makedata('d', 'float64', shape=(1,)) f.opendata('d')