[issue42253] xml.dom.minidom.rst missed informations

2020-11-03 Thread Jens Diemer
New submission from Jens Diemer : The standalone arguments was added in Python 3.9. This information is missed in the docu. -- messages: 380277 nosy: jedie2 priority: normal pull_requests: 22042 severity: normal status: open title: xml.dom.minidom.rst missed informations versions

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-02-10 Thread Jens Diemer
Jens Diemer added the comment: I have made https://github.com/jedie/pathlib_revised to address this, see: https://github.com/jedie/pathlib_revised#windows-max_path The idea is to add a property (I call it 'extended_path') and this will add the \\?\ prefix on all absolute path und

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-02-05 Thread Jens Diemer
Jens Diemer added the comment: I also with this problems. I have made a test script. There is a problem with os.chdir(): It doesn't work with \\?\ notation. And there is also a problem, if you use ``` import os import pathlib import tempfile with tempfile.TemporaryDirectory(p

[issue21417] Compression level for zipfile

2015-06-24 Thread Jens Diemer
Jens Diemer added the comment: btw. hacked work-a-round is: zlib.Z_DEFAULT_COMPRESSION = 9 -- ___ Python tracker <http://bugs.python.org/issue21417> ___ ___

[issue19894] zipfile ignores deflate level settings in zipinfo object

2015-06-24 Thread Jens Diemer
Jens Diemer added the comment: IMHO it should be possible to set compression level not only for DEFLATE. And it should be similar with the tarfile API. Seems that http://bugs.python.org/issue21417 will cover this. -- nosy: +jens ___ Python tracker

[issue21417] Compression level for zipfile

2015-06-24 Thread Jens Diemer
Changes by Jens Diemer : -- nosy: +jens ___ Python tracker <http://bugs.python.org/issue21417> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24086] Configparser interpolation is unexpected

2015-06-10 Thread Jens Diemer
Jens Diemer added the comment: IMHO i ran into the same bug, try to "./setup.py upload" with my new password in ~/.pypirc: configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: "%foobar" This is a limitation o

[issue11638] pysetup un sdist crashes with weird trace if version is unicode by accident

2011-10-05 Thread Jens Diemer
Jens Diemer added the comment: I have the same problem, using distutils (and not distutils2): Traceback (most recent call last): File "./setup.py", line 60, in test_suite="creole.tests.run_all_tests", File "/usr/lib/python2.7/distutils/cor

[issue11638] pysetup un sdist crashes with weird trace if version is unicode by accident

2011-10-05 Thread Jens Diemer
Changes by Jens Diemer : -- nosy: +jens ___ Python tracker <http://bugs.python.org/issue11638> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue3332] DocTest and dict sort.

2008-07-10 Thread Jens Diemer
New submission from Jens Diemer <[EMAIL PROTECTED]>: The doctest doesn't work good, if a function returns a dict. Here a simple example: def test(d): """ This works: >>> test({"A":1, "B":2, "C":3}) {'A&#x