New submission from Natalia :
$ python2.7 -c 'from distutils.version import LooseVersion as V; print V("a") >
V("1")'
True
$ python3.2 -c 'from distutils.version import LooseVersion as V; print(V("a") >
V("b"))'
False
$ python3
Natalia added the comment:
Hello, as a GSoC student, I'm working on PyPI to Debian repository converter. I
wanted to compare versions of packages available in PyPI and it broke while
comparing appwsgi, wsgi-design ('default') and gar ('pr
Natalia added the comment:
Hi, I'm attaching a patch that fixes this issue:)
--
keywords: +patch
Added file: http://bugs.python.org/file25807/14894.patch
___
Python tracker
<http://bugs.python.org/is
Natalia added the comment:
I had a wrong return value in one of unit tests, fixed.
--
Added file: http://bugs.python.org/file25808/14894.patch
___
Python tracker
<http://bugs.python.org/issue14
Changes by Natalia :
Removed file: http://bugs.python.org/file25807/14894.patch
___
Python tracker
<http://bugs.python.org/issue14894>
___
___
Python-bugs-list mailin
New submission from Natalia B. Bidart :
If libreadline-dev was installed after configure was run, and the latter is not
re-run, test_readline fails with:
[1/1] test_readline
test test_readline failed -- Traceback (most recent call last):
File "/home/nessita/pycon/sprint/cpython/Lib
Natalia B. Bidart added the comment:
I'm working on a patch.
--
___
Python tracker
<http://bugs.python.org/issue11496>
___
___
Python-bugs-list mailing list
Natalia B. Bidart added the comment:
Trivial patch to skip the test if module 'readline' doesn't have the
'clear_history' attr.
--
keywords: +patch
Added file: http://bugs.python.org/file21115/pycon-issue11496.patch
New submission from Natalia B. Bidart :
When running the test suite, if zlib is not available, we get this failure:
[1/1] test_zipfile
test test_zipfile failed -- Traceback (most recent call last):
File "/home/nessita/pycon/sprint/cpython/Lib/test/test_zipfile.py", lin
Natalia B. Bidart added the comment:
Trivial patch to skip the aforementioned test.
--
keywords: +patch
Added file: http://bugs.python.org/file21118/pycon-issue11498.patch
___
Python tracker
<http://bugs.python.org/issue11
Natalia B. Bidart added the comment:
Attaching patch with improved skip message as per David's comment.
--
Added file: http://bugs.python.org/file21119/pycon-issue11496.patch
___
Python tracker
<http://bugs.python.org/is
New submission from Natalia B. Bidart :
When creating a zipfile, the code:
zip = zipfile.ZipFile(zip_filename, "w",
compression=zipfile.ZIP_DEFLATED)
does not handle the potential RuntimeError casued by:
"If ZIP_DEFLATED is specified but the zlib module i
Natalia B. Bidart added the comment:
Attaching patch that performs the following:
* skip all the distutils tests that need zlib in order to run properly.
* add a new test (test_make_zipfile_no_zlib) to ensure that make_zipfile uses
the compression option from zipfile module that works without
Natalia B. Bidart added the comment:
Hi Éric,
Thanks for looking at the patch. I'm not using "if zlib is not None" since the
archive_utils module never explicitly imports zlib. Only the zipfile module
imports zlib and raises RuntimeError if not available (as per
http://
Natalia B. Bidart added the comment:
* Added change notice to Misc/NEWS.
* changed patch method implementation so AttributeError is raised when trying
to patch a non-existent attribute for an object (see Éric's comment).
--
Added file: http://bugs.python.org/file21142/pycon-issue
Natalia B. Bidart added the comment:
On Tue, Mar 15, 2011 at 7:15 AM, Éric Araujo wrote:
>
> Éric Araujo added the comment:
>
>> I'm not using "if zlib is not None" since the archive_utils module
>> never explicitly imports zlib.
>
> Well, you can i
Natalia B. Bidart added the comment:
Attaching a new patch with latest changes from trunk merged in (conflicts
resolved).
--
Added file: http://bugs.python.org/file21211/pycon-issue11501.patch
___
Python tracker
<http://bugs.python.org/issue11
New submission from Natalia B. Bidart :
Current coverage is:
Name Stmts Miss Cover
--
Lib/logging/__init__ 73916278%
Lib/logging/config 571 9883%
Lib/logging/handlers 60132546
Natalia B. Bidart added the comment:
Attaching a patch that increases test coverage for logging/__init__.py by 12%.
There are still a lot more to do, but this pacth is big enough.
--
keywords: +patch
Added file: http://bugs.python.org/file21249/pycon-issue11557.patch
Natalia B. Bidart added the comment:
I'll work on a fix during next weekend (sooner if I have an open slot).
--
___
Python tracker
<http://bugs.python.org/is
Changes by Natalia B. Bidart :
--
nosy: +nessita
___
Python tracker
<http://bugs.python.org/issue22293>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Natalia B. Bidart :
Current docstring states:
Return an enumerate object. iterable must be an other object that
supports iteration.
It should be:
Return an enumerate object. iterable must be another object that
supports iteration.
--
assignee: georg.brandl
22 matches
Mail list logo