[issue20054] IDLE won't work (Mac)

2013-12-24 Thread Ned Deily
Ned Deily added the comment: I was assuming you were using a Python 3.3 from a binary installer downloaded from python.org. Those Pythons are built to dynamically link with a compatible Tcl and Tk 8.5 frameworks in /Library/Frameworks, such as the ActiveTcl 8.5 ones, and fall back to the Appl

[issue20064] PyObject_Malloc is not documented

2013-12-24 Thread Gennadiy Zlobin
Gennadiy Zlobin added the comment: Hi, I created the patch, please kindly review it, all comments are welcomed. Thank you! -- keywords: +patch nosy: +gennad Added file: http://bugs.python.org/file33261/20064.patch ___ Python tracker

[issue20063] Docs imply that set does not support .pop() method

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Thanks, but the proposal for 2.7 is to just delete the sentence about list/array, not the whole footnote. Unless someone can think of a mutable list type in 2.7 that does not support pop... -- ___ Python tracker

[issue20063] Docs imply that set does not support .pop() method

2013-12-24 Thread Gennadiy Zlobin
Gennadiy Zlobin added the comment: Got it. Looks like I was confused by absence of this footnote in Python 3 documentation) Here's updated patch. -- Added file: http://bugs.python.org/file33263/20063.patch ___ Python tracker

[issue20063] Docs imply that set does not support .pop() method

2013-12-24 Thread Gennadiy Zlobin
Gennadiy Zlobin added the comment: Here's the patch -- keywords: +patch nosy: +gennad Added file: http://bugs.python.org/file33262/20063.patch ___ Python tracker ___

[issue16832] Expose cache validity checking support in ABCMeta

2013-12-24 Thread R. David Murray
R. David Murray added the comment: I don't see that there's anything other than the doc change that needs done here, so I'm closing this. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement __

[issue16832] Expose cache validity checking support in ABCMeta

2013-12-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset a9f73b44ea0e by R David Murray in branch 'default': #16832: s/integer/object/ in docs/docstring, and add whatsnew entry. http://hg.python.org/cpython/rev/a9f73b44ea0e -- ___ Python tracker

[issue18688] Document undocumented Unicode object API

2013-12-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue19648] Empty tests in pickletester need to be implemented or removed

2013-12-24 Thread Gennadiy Zlobin
Gennadiy Zlobin added the comment: Antoine, sure! I have just signed it. Thank you! -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue20064] PyObject_Malloc is not documented

2013-12-24 Thread R. David Murray
New submission from R. David Murray: At least, a doc ref to :c:func:`PyObject_Malloc` does not turn into a link, and I can't find anything in the docs that it looks like it should link to. -- assignee: docs@python components: Documentation, Interpreter Core messages: 206910 nosy: docs@p

[issue20054] IDLE won't work (Mac)

2013-12-24 Thread Sophie Chancheong
Sophie Chancheong added the comment: i have downloaded and installed activeTcl 8.5.15.0 and that's still what it says. do you mean a new version of python? -- ___ Python tracker ___

[issue18529] Use long dash

2013-12-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 01d2c25a6804 by R David Murray in branch 'default': Use endash in PEP callouts. http://hg.python.org/cpython/rev/01d2c25a6804 -- nosy: +python-dev ___ Python tracker _

[issue20061] make pdb through separate terminal more convenient

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Sorry, I mean stdin/stdout of the controlling terminal of the process. Of course, I could be completely confused :) -- ___ Python tracker ___

[issue20061] make pdb through separate terminal more convenient

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Command line history (if I understand correctly) depends on the input/output being stdin/stdout, which isn't the case when doing remote debugging using the current implementation of remote debugging. -- ___ Python

[issue20061] make pdb through separate terminal more convenient

2013-12-24 Thread Chiel ten Brinke
Chiel ten Brinke added the comment: I called it a bug, because command history etc. works when debugging in a single terminal. It only fails when debugging remotely/in a separate terminal. But if this is not due to a improper implementation, it should indeed be an enhancement. -- ___

[issue20061] make pdb through separate terminal more convenient

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Changing title to reflect the fact that it is an enhancement. -- title: pdb through separate terminal not working properly -> make pdb through separate terminal more convenient ___ Python tracker

[issue20061] pdb through separate terminal not working properly

2013-12-24 Thread R. David Murray
R. David Murray added the comment: To clarify: remote debugging is not a new feature, but enabling command history &c should probably be considered a new feature, and making the interface for doing all this more convenient (which would be cool) certainly would be. -- _

[issue20063] Docs imply that set does not support .pop() method

2013-12-24 Thread Madison May
Madison May added the comment: +1 for simply deleting that bit -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue20063] Docs imply that set does not support .pop() method

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Well, set supporting it is irrelevant to that section, which is about mutable sequence types. However, bytearray also supports pop, so I think perhaps that sentence should just be deleted. The whole footnote is gone in the Python3. docs. -- nosy: +

[issue20061] pdb through separate terminal not working properly

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Sounds like a good idea to me, but it would be a new feature, not a bug fix. -- components: +Library (Lib) nosy: +r.david.murray stage: -> needs patch type: behavior -> enhancement versions: +Python 3.5 -Python 3.3

[issue20063] Docs imply that set does not support .pop() method

2013-12-24 Thread Madison May
New submission from Madison May: Note item 6 of http://docs.python.org/2.7/library/stdtypes.html#mutable-sequence-types is a bit misleading. It states: "The pop() method is only supported by the list and array types. The optional argument i defaults to -1, so that by default the last item i

[issue20062] Add section on vim to devguide

2013-12-24 Thread R. David Murray
R. David Murray added the comment: The Misc/TextMate directory was also removed. I wonder if what we really want is an 'editor support' chapter that lists best practice for any editor any committers use (and are willing to write the section for). -- __

[issue20062] Add section on vim to devguide

2013-12-24 Thread R. David Murray
New submission from R. David Murray: This is a followup to issue 9893. There should be a section on vim in the devguide just like there is currently a section on emacs. -- components: Devguide messages: 206897 nosy: ezio.melotti, r.david.murray priority: normal severity: normal stage:

[issue20041] TypeError when f_trace is None and tracing.

2013-12-24 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- components: +Interpreter Core -2to3 (2.x to 3.x conversion tool) ___ Python tracker ___ ___ Python-bugs

[issue20041] TypeError when f_trace is None and tracing.

2013-12-24 Thread Xavier de Gaye
Xavier de Gaye added the comment: Adding the corresponding tests. -- components: +2to3 (2.x to 3.x conversion tool) -Interpreter Core Added file: http://bugs.python.org/file33260/tests.patch ___ Python tracker

[issue20061] pdb through separate terminal not working properly

2013-12-24 Thread Chiel ten Brinke
New submission from Chiel ten Brinke: There are several reasons why one would need to debug in a terminal window other than the debuggee terminal window, for instance when we have a curses application. The pdb doesn't support a tty command like gdb, which would allow this. Instead, it is possib

[issue20060] float() and int() TypeError messages differ

2013-12-24 Thread R. David Murray
R. David Murray added the comment: I take it back. This is a duplicate of issue 17080 and has already been fixed in 3.4, which is why I didn't see the problem (I was testing in my development sandbox). -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed s

[issue20060] float() and int() TypeError messages differ

2013-12-24 Thread R. David Murray
R. David Murray added the comment: Could you provide examples? I'm not seeing the problem myself. Unless you really do mean this to apply to the ctypes python module, which I don't know much about. It sounds like you are talking about the built in types though. -- components: +Inter

[issue20060] float() and int() TypeError messages differ

2013-12-24 Thread Mitchell Model
New submission from Mitchell Model: [Sorry if ctypes is wrong component -- don't know which to use.] Given an invalid type, int()'s TypeError message includes the name of the invalid type, but float()'s doesn't. (Nor does complex()'s.) All three should give analogous error messages. int()'s ver

[issue19999] test_monotonic fails on x86 OpenIndiana

2013-12-24 Thread STINNER Victor
STINNER Victor added the comment: > "GetSystemTimeAdjustment is not the function to look at." This sentence comes from http://stackoverflow.com/questions/7685762/windows-7-timing-functions-how-to-use-getsystemtimeadjustment-correctly which describes the wall clock (GetSystemTimeAsFileTime), no

[issue19999] test_monotonic fails on x86 OpenIndiana

2013-12-24 Thread STINNER Victor
STINNER Victor added the comment: > but 0.0156001 isn't close enough to 0.015625 for "rounding errors" to be at > all a plausible explanation for why it's so strange. 0.0156001 is close to 0.0156, and this number cannot be representated exactly in binary: >>> (0.0156).hex() '0x1.ff2e48e8a71de