[issue20120] Percent-signs (%) in .pypirc should not be interpolated

2015-10-22 Thread Laszlo Nagy
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

[issue17372] provide pretty printer for xml.etree.ElementTree

2013-08-05 Thread Laszlo Papp
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

[issue8145] Documentation about sqlite3 isolation_level

2010-07-10 Thread Laszlo Nagy
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

[issue8145] Documentation about sqlite3 isolation_level

2010-03-15 Thread Laszlo Nagy
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

[issue1975] signals not always delivered to main thread, since other threads have the signal unmasked

2009-12-14 Thread Laszlo (Laca) Peter
Changes by Laszlo (Laca) Peter : -- nosy: +laca ___ Python tracker <http://bugs.python.org/issue1975> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4111] Add DTrace probes

2009-04-22 Thread Laszlo (Laca) Peter
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

[issue5289] ctypes.util.find_library does not work under Solaris

2009-02-18 Thread Laszlo (Laca) Peter
Changes by Laszlo (Laca) Peter : -- nosy: +laca ___ Python tracker <http://bugs.python.org/issue5289> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue877121] configure detects incorrect compiler optimization

2009-02-15 Thread Laszlo (Laca) Peter
Changes by Laszlo (Laca) Peter : -- nosy: +laca ___ Python tracker <http://bugs.python.org/issue877121> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4111] Add DTrace probes

2009-01-23 Thread Laszlo (Laca) Peter
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

[issue4536] SystemError if invalid arguments passed to range() and step=-1

2008-12-05 Thread Laszlo
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

[issue4536] SystemError if invalid arguments passed to range() and step=-1

2008-12-04 Thread Laszlo
Changes by Laszlo <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file12226/range.diff ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue4536] SystemError if invalid arguments passed to range() and step=-1

2008-12-04 Thread Laszlo
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

[issue4536] SystemError if invalid arguments passed to range() and step=-1

2008-12-04 Thread Laszlo
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

[issue4111] Add DTrace probes

2008-11-13 Thread Laszlo (Laca) Peter
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

[issue3014] file_dealloc() assumes errno is set when EOF is returned

2008-08-27 Thread Laszlo (Laca) Peter
Changes by Laszlo (Laca) Peter <[EMAIL PROTECTED]>: -- nosy: +laca ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3014> ___ __