[issue4111] Add DTrace probes

2008-10-12 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: At one point we were told Apple would try to backport their dtrace instrumentation. I don't know what the status of that is, but it obviously has not happened. -- nosy: +brett.cannon ___ Python track

[issue4104] Namespace inconsistency

2008-10-12 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-lis

[issue4075] Use WCHAR variant of OutputDebugString

2008-10-12 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: > If the python switch to W functions then the issue will be resolved. Python should use the *W functions wherever possible. > Without general switch to W functions and to wide strings we need to > convert every time from single chat to wid

[issue4051] UNICODE macro in cPickle conflicts with Windows define

2008-10-12 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- title: use of TCHAR under win32 -> UNICODE macro in cPickle conflicts with Windows define ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4051] use of TCHAR under win32

2008-10-12 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: > I couldn't found where python C-code use so called "TCHAR meaning" and > the first sentence from comment in Ulrich patch looks irrelevant to the > issue. I was confused by Ulrich's terminology at first, also (claiming that Python doesn't u

[issue4104] Namespace inconsistency

2008-10-12 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Me too. There are too many cases where class statements can be executed to get this right. -- nosy: +georg.brandl ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4104] Namespace inconsistency

2008-10-12 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: I'm tempted to close this as "won't fix". -- nosy: +loewis resolution: -> wont fix ___ Python tracker <[EMAIL PROTECTED]> __

[issue4110] A minor slip while typing

2008-10-12 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Duplicate of #4002. -- resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue4111] Add DTrace probes

2008-10-12 Thread Brett Hoerner
New submission from Brett Hoerner <[EMAIL PROTECTED]>: It would be great if the main Python distribution supported DTrace on (Open)Solaris / FreeBSD / OS X. I've attached a patch against 2.6 that instruments function calls. It's from the ed scripts included in Apple's Python distribution: http:

[issue4110] A minor slip while typing

2008-10-12 Thread John
New submission from John <[EMAIL PROTECTED]>: Hello, please let me focus your attention to a little slip that was made while typing a code example in the Python 3.0 documentation. Please visit the link http://docs.python.org/dev/3.0/library/functions.html?highlight=property#property and note

[issue3876] multiprocessing does not compile on systems which do not define sem_timedwait

2008-10-12 Thread David Peckham
Changes by David Peckham <[EMAIL PROTECTED]>: -- nosy: +dave.peckham ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mai

[issue4109] Wrong UnboundLocalError with += operator

2008-10-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Inplace operators ("+=", "-=" etc) are assignments since in the case of immutable types like str code += "some string" is equivalent to code = code + "some string" -- resolution: -> invalid status: open -> closed _

[issue4109] Wrong UnboundLocalError with += operator

2008-10-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Is code a global variable? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue4109] Wrong UnboundLocalError with += operator

2008-10-12 Thread Eric Atienza
New submission from Eric Atienza <[EMAIL PROTECTED]>: the following code : def test(): code='' def sub(n): for i in range(n): code+=str(i) sub(5) sub(10) return code >>> test() Traceback (most recent call last): File "", line 1, in File "", line 6, i

[issue4108] robotparser.py fail when more than one User-Agent: * is present

2008-10-12 Thread taskinoor hasan sajid
New submission from taskinoor hasan sajid <[EMAIL PROTECTED]>: Check the robots.txt file from mathworld. --> http://mathworld.wolfram.com/robots.txt It contains 2 User-Agent: * lines. >From http://www.robotstxt.org/norobots-rfc.txt "These name tokens are used in User-agent lines in /robots.tx

[issue4107] Backticks still mentioned in documentation

2008-10-12 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks! Fixed in r66880. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> __

[issue4017] IDLE 2.6 broken on OSX (Leopard)

2008-10-12 Thread Matteo Bertini
Matteo Bertini <[EMAIL PROTECTED]> added the comment: I have the same error as in msg74221 RuntimeError: tk.h version (8.4) doesn't match libtk.a version (8.5) Some workaround not involving a full rebuild? -- nosy: +naufraghi ___ Python tracker <[EMA

[issue4107] Backticks still mentioned in documentation

2008-10-12 Thread jamesie
New submission from jamesie <[EMAIL PROTECTED]>: At the following part of the first sentence should be ommited: "and by string conversions (reverse quotes)" -- assignee: georg.brandl components: Documentation mess