Laszlo Nagy added the comment:
When I uploaded via "setup.py register" and created a new user, then distutils
saved the password in the wrong format! So maybe the password read part is a
wontfix, but then the save part must be fixed.
--
nosy
Laszlo Papp added the comment:
This has just made me switching away from xml.etree.ElementTree today, sadly.
What a pity; it would have been all kind of cool to stick to this minimal,
otherwise working parser and builder.
--
nosy: +lpapp
___
Python
Laszlo Nagy added the comment:
2010/7/11 Terry J. Reedy
>
> Terry J. Reedy added the comment:
>
> If the content of the patch is correct, it looks ready to apply, with only
> a touch of editing. Do we have a resident expert of sqlite3? Or Laszlo, do
> you have a reference
New submission from Laszlo Nagy :
Clarify what isolation_level does, and how to use it, and why connections do
not commit/rollback in some cases.
Details here:
http://mail.python.org/pipermail/python-list/2010-March/1239374.html
I'll paste code for ctx_manager_2.py here. This is a new
Changes by Laszlo (Laca) Peter :
--
nosy: +laca
___
Python tracker
<http://bugs.python.org/issue1975>
___
___
Python-bugs-list mailing list
Unsubscribe:
Laszlo (Laca) Peter added the comment:
Look at these lines at the beginning of phelper.d:
#if defined(__i386)
#definestartframe PyEval_EvalFrameEx
#defineendframe PyEval_EvalCodeEx
#elif defined(__amd64)
#definePyEval_EvalFrameEx PyEval_EvalFrameExReal
#define
Changes by Laszlo (Laca) Peter :
--
nosy: +laca
___
Python tracker
<http://bugs.python.org/issue5289>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Laszlo (Laca) Peter :
--
nosy: +laca
___
Python tracker
<http://bugs.python.org/issue877121>
___
___
Python-bugs-list mailing list
Unsubscribe:
Laszlo (Laca) Peter added the comment:
Please see here for discussion about the -G flag on OS X:
http://markmail.org/message/4nheqnexjr2o6mcx
If I read it correctly, on OS X, you will need to use -h
instead of -G and it won't emit an object file (dtrace.o)
so you will not need to li
Laszlo <[EMAIL PROTECTED]> added the comment:
It is changed from PyErr_Clear() to Py_CLEAR(step) because in case
someone else makes the same mistake of not checking for an error before
calling validate_step() we do not want to hide the error.
It is true that if used properly this part wi
Changes by Laszlo <[EMAIL PROTECTED]>:
Removed file: http://bugs.python.org/file12226/range.diff
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Laszlo <[EMAIL PROTECTED]> added the comment:
Oops, sorry I didn't realize validate_step() is supposed to validate the
input AND return the converted value. Thanks for the feedback.
This new patch should work fine. It retains only the two final points of
the previous patch; it do
New submission from Laszlo <[EMAIL PROTECTED]>:
>>> range(1.0, 0, 1)
Traceback (most recent call last):
File "", line 1, in
TypeError: 'float' object cannot be interpreted as an integer
>>> range(1.0, 0, -1)
Traceback (most recent call last):
F
Laszlo (Laca) Peter <[EMAIL PROTECTED]> added the comment:
I'm the python package maintainer at Sun.
We would really like to get the dtrace probes upstream, let me know how
I can help.
--
nosy: +laca
___
Python tracker <[EMAIL PRO
Changes by Laszlo (Laca) Peter <[EMAIL PROTECTED]>:
--
nosy: +laca
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3014>
___
__
15 matches
Mail list logo