Thorsten added the comment:
German example in casefolding is plain incorrect.
#Casefolding is similar to lowercasing but more aggressive because it is
#intended to remove all case distinctions in a string. For example, the #German
lowercase letter 'ß' is equivalent to "s
Thorsten added the comment:
I see. I found the documents. That's an issue. That usage is incorrect. It is
still valid to upper case "ß" to SS since "ẞ" is fairly new as an official
German character, but the other way around is not valid.
As such the current sente
New submission from Thorsten Simons :
Using Python '3.2.2 (default, Sep 4 2011, 09:07:29) [MSC v.1500 64 bit
(AMD64)]' on Windows 7 Professional SP1:
If you set an access time for a file beyond Jan. 2038 on a file stored in a
local NTFS filesystem, all's well:
>>> o
Thorsten Simons added the comment:
Gentlemen,
thank you for your contribution - the information about the Samba fix solved
the problem!
--
resolution: -> works for me
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
New submission from Thorsten Kampe :
Error with argparse and UTF-8 non-ASCII help text on Linux (works on Windows
and on Linux with optparse):
% LANG=de_De ./script.py --help
Traceback (most recent call last):
File "./script.py", line 26, in
args = cmdlineparser.parse_arg
Changes by Thorsten Kampe :
--
type: -> crash
___
Python tracker
<http://bugs.python.org/issue12193>
___
___
Python-bugs-list mailing list
Unsubscri
Changes by Thorsten Kampe :
Added file: http://bugs.python.org/file22139/script.de.po
___
Python tracker
<http://bugs.python.org/issue12193>
___
___
Python-bugs-list m
Changes by Thorsten Kampe :
Added file: http://bugs.python.org/file22140/script.mo
___
Python tracker
<http://bugs.python.org/issue12193>
___
___
Python-bugs-list mailin
Thorsten Kampe added the comment:
"LANG=de_De" - should've been "LANG=de_DE". Sorry for wasting someone's time. I
shouldn't write bug reports in the middle of the night.
Sorry and thanks, Thorsten
--
resolution:
Thorsten Behrens added the comment:
I can test this for 3.1, as all I have is the Express version of VC++. If you
could point me towards a library that will work with 3.1 and has C components,
that'll make the testing a lot easier. pycrypto and setuptools, the two libs
mentioned in
Thorsten Behrens added the comment:
You are right, this is not a bug in Python. The diff provides a workaround for
a limitation in VC++ 2008 Express. This diff is a piece of user service.
An equally as workable workaround is for the user to copy VC\bin\vcvars64.bat
into VC\bin\amd64
Thorsten Behrens added the comment:
Thank you for that patch, Stefan. I am currently tinkering with bringing
pycrypto to 3.x and ran into this issue. initfunc2.patch resolves the issue on
Win7-64, python31-64.
I don't feel comfortable releasing code that requires the user to manually
New submission from Thorsten Behrens :
The documentation titled "Building C and C++ Extensions on Windows" at
http://docs.python.org/py3k/extending/windows.html shows a Python 2.x way of
handling static type object initializers, to whit:
>>
If your module creates a new ty
Thorsten Behrens added the comment:
Confirmed that this issue exists on Python 3.1 and 3.2b2. The exception thrown
presents as:
ValueError: ['path', 'include', 'lib']
--
___
Python tracker
<
New submission from Thorsten Behrens :
The documentation for hashlib.hash.digest() states that digest() will "[r]eturn
the digest of the data passed to the update() method so far. This is a bytes
array of size digest_size[...]".
The returned object is of class 'bytes
New submission from Thorsten Simons :
Hi !
when specifying additional files to be distributed by distutils.core.setup,
documentation says that:
"Each file name in files is interpreted relative to the setup.py script at the
top of the package source distribution. No directory information
Thorsten Simons added the comment:
Hi Éric, All,
thank you for the directions you gave me!
It's all about a call of os.path.basename() missing in sdist.py. Pls. see
attached diff.
Regards,
Thorsten
--
keywords: +patch
Added file: http://bugs.python.org/file20546/fix-sdist.py
Thorsten Weimann added the comment:
Please re-open. The IO system only takes care of line separators, if no
encoding is given.
--
nosy: +Thorsten.W
___
Python tracker
<http://bugs.python.org/issue20
New submission from Thorsten Simons:
hashlib seems to leak memory when used on a Linux box (whereas the same works
fine when run under Windows 7) (tested w/ Python 3.2.1 and 3.2.3)
import hashlib
#file = 'B:\\video\\TEST\\01_file_10G'
file = '/video/TEST/01_file_10G'
myh
Thorsten Simons added the comment:
forgot to say that this is about huge files (tested w/ a 10GB file)
--
___
Python tracker
<http://bugs.python.org/issue16
Thorsten Simons added the comment:
Antoine,
this was of great help - no memory leaking anymore...
So, I asume that somewhere in the iteration the read file is buffered?
Does that make sense or - was it the developers intention?
Thank you,
Regards, Thorsten
--
resolution: -> works
Thorsten Simons added the comment:
OK, learned something again - should have known this :-(
Thank you!
Thorsten
--
___
Python tracker
<http://bugs.python.org/issue16
New submission from Thorsten Kampe:
The - deprecated - "version" keyword for argparse.ArgumentParser allowed for
localization of the "show program's version number and exit" help text for
-v/--version (output of "-h"/"--help")
The new versio
23 matches
Mail list logo