[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 under windows

[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(prefix

[issue21417] Compression level for zipfile

2015-06-24 Thread Jens Diemer
Changes by Jens Diemer bugs.python@jensdiemer.de: -- nosy: +jens ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21417 ___ ___ Python-bugs-list

[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
Jens Diemer added the comment: btw. hacked work-a-round is: zlib.Z_DEFAULT_COMPRESSION = 9 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21417

[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 of the configparser... But what's about to validate

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

2011-10-05 Thread Jens Diemer
Changes by Jens Diemer bugs.python@jensdiemer.de: -- nosy: +jens ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11638 ___ ___ Python-bugs-list

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

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

[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': 1, 'C': 3, 'B': 2} This failed, because of different dict sort: test({A:1