[issue849097] Request: getpos() for sgmllib

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Anyone interested in this? I found the patch unreadable but YMMV. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue849097

[issue9635] RFE(patch): add Py_BREAKPOINT and sys.breakpoint hooks

2010-08-18 Thread Dave Malcolm
New submission from Dave Malcolm dmalc...@redhat.com: It's sometimes useful to be able to programatically inject a breakpoint when debugging CPython. For example, sometimes you want a conditional breakpoint, but the logic involved is too complex to be expressed in the debugger (e.g. runtime

[issue850482] Enhance frame handing in warnings.warn()

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: needs patch - patch review versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue850482 ___

[issue812750] OSA support for properties broken

2010-08-18 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Suggest a different wording to reflect that the 3rd-party appscript package has become the de facto standard for AppleScript support, so something like: -stopped, and a replacement is expected for Python 2.5. +stopped. For more up-to-date

[issue9635] RFE(patch): add Py_BREAKPOINT and sys.breakpoint hooks

2010-08-18 Thread Dave Malcolm
Dave Malcolm dmalc...@redhat.com added the comment: Note that when running on Linux when _not_ under a debugger, the default for SIGTRAP is to get a coredump: Trace/breakpoint trap (core dumped) so people should be strongly discouraged from adding these calls to their code. Looks like

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2010-08-18 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Carbon does not exist in Python 3. There's no need to wait to close this issue. -- nosy: +ned.deily status: pending - open versions: -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue868571] HTTPResponse.read(amt) fails when response length is UNKNOWN

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closed as svn blame shows this is hopelessly out of date. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org

[issue9516] sysconfig: $MACOSX_DEPLOYMENT_TARGET mismatch: now 10.3 but 10.5 during configure

2010-08-18 Thread Sridhar Ratnakumar
Sridhar Ratnakumar sridh...@activestate.com added the comment: On 2010-08-17, at 9:01 PM, Ronald Oussoren wrote: I now understand why my script fails, and it is caused by this issue. The sysconfig.py code has another major issue: the use of os.putenv. This changes the environment, without

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: This is a Sun Studio problem not a Python problem. -- nosy: +BreamoreBoy resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread John Levon
John Levon movem...@users.sourceforge.net added the comment: That's a little abrupt. Whilst it would be nice if the compiler had a correct return value, it occurs with multiple compilers, and I pointed you to a suitable workaround Python could employ. Even if Studio gets fixed, there are

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue822005 ___ ___

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread John Levon
John Levon movem...@users.sourceforge.net added the comment: Even worse, a nasty hack was added just for Intel's compiler as seen in http://bugs.python.org/issue1162001 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue877121

[issue877904] freeze: problems excluding site

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I can't see this happening after 6 1/2 years, feel free to reopen if you want to work on this. -- resolution: - wont fix status: open - closed ___ Python tracker rep...@bugs.python.org

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I agree, it is the job of the autotools to handle system portability issues such as this, and thus this can be considered a fixable bug. However, it is the kind of thing that is only going to get fixed if someone whom it affects can

[issue879399] socket line buffering

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'm just wondering if the original code could be the cause of subtle bugs with socket.py, anyone? (I'm no sockets guru). There's a proposed inline patch that's never been implemented, what do you (plural) make of it?. -- nosy:

[issue886488] WinPython 2.3.3 crashes using popen2 to spawn lots of child

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can this be closed as popen2 is deprecated? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue886488 ___

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-18 Thread STINNER Victor
New submission from STINNER Victor victor.stin...@haypocalc.com: With python3 -bb: {'key': 'value'}[b'key'] raises a BytesWarning, but {'key': 'value'}[b'missing_key'] doesn't. The warning is unexpected here because it's an implicit comparaison (I mean, different than an explicit: 'key' ==

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-18 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I found this problem while running test_os with python -bb: there is an error on os.get_exec_path() because this function checks if b'PATH' key exists in the input dictionary. Extract of the function: def get_exec_path(env=None):

[issue747320] rfc2822 formatdate functionality duplication

2010-08-18 Thread Shashwat Anand
Changes by Shashwat Anand anand.shash...@gmail.com: -- nosy: +l0nwlf ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue747320 ___ ___ Python-bugs-list

[issue706406] fix bug #685846: raw_input defers signals

2010-08-18 Thread Michael Stone
Michael Stone mbrie...@gmail.com added the comment: Wow, you wait 3/4 of a decade or so and the status of these bugs does tend to change on you. I'm not sure it's fixed, but it is different. Here's a test script for you: import readline import signal def handle(a,b): print received

[issue5027] xml namespace not understood by xml.sax.saxutils.XMLGenerator

2010-08-18 Thread Troy J. Farrell
Troy J. Farrell t...@entheossoft.com added the comment: Hi guys. I'd like to take a moment to remind everyone that this issue has a small patch with two tests and comments. Please don't let it get lost. :) Thanks, Troy -- ___ Python tracker

[issue892902] problem with pickling newstyle class instances

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: This is still a problem with 2.6 and 2.7. I don't know how to test this with py3k as cPickle doesn't exist, can someone advise, thanks. -- nosy: +BreamoreBoy ___ Python tracker

[issue892902] problem with pickling newstyle class instances

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue892902 ___

[issue9637] docs do not say that urllib uses HTTP_PROXY

2010-08-18 Thread Kirikaza
New submission from Kirikaza kirik...@rambler.ru: In practice urllib reads HTTP_PROXY firstly and then if HTTP_PROXY is empty urllib reads http_proxy. Documentation (http://docs.python.org/library/urllib.html) says nothing about HTTP_PROXY. Maybe it affects all the versions of Python.

[issue894936] Have a split corresponding with os.path.join

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks as won't fix unless anyone objects. -- nosy: +BreamoreBoy status: open - pending versions: -Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue6822] Error calling .storlines from ftplib

2010-08-18 Thread Ayman
Ayman ayman.alsair...@gmail.com added the comment: I do not agree with Antoine. For binary transfer, another method is called, and it does work fine. However, storelines would be called for ASCII mode, in which encoding and decoding should be done by the FTP program. ASCII mode would

[issue896330] pyconfig.h is not placed in --includedir

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is this still a problem, sorry I don't have a box to test it on? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker

[issue900092] hotshot.stats.load fails with AssertionError

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closing as no reply to msg110827. -- resolution: - wont fix status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue900092

[issue894936] Have a split corresponding with os.path.join

2010-08-18 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Mark, +1 objection against closing this. -- nosy: +orsenthil status: pending - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue894936

<    1   2   3