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
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
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
Jens Diemer added the comment:
btw. hacked work-a-round is:
zlib.Z_DEFAULT_COMPRESSION = 9
--
___
Python tracker
<http://bugs.python.org/issue21417>
___
___
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
Changes by Jens Diemer :
--
nosy: +jens
___
Python tracker
<http://bugs.python.org/issue21417>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Changes by Jens Diemer :
--
nosy: +jens
___
Python tracker
<http://bugs.python.org/issue11638>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.pyth
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
10 matches
Mail list logo