[issue13701] Remove Decimal Python 2.3 Compatibility

2012-01-02 Thread Ramchandra Apte
New submission from Ramchandra Apte : Decimal has compatibility for Python 2.3 (such as not using decorators) as mentioned in comments in the source code for it. This compatibility should be removed in Python 3.3 and if possible, in Python 3.2. -- components: Library (Lib) messages

[issue13708] Document ctypes.wintypes

2012-01-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- nosy: ramchandra.apte priority: normal severity: normal status: open title: Document ctypes.wintypes ___ Python tracker <http://bugs.python.org/issue13

[issue13708] Document ctypes.wintypes

2012-01-03 Thread Ramchandra Apte
New submission from Ramchandra Apte : Document ctypes.wintypes. -- ___ Python tracker <http://bugs.python.org/issue13708> ___ ___ Python-bugs-list mailin

[issue13708] Document ctypes.wintypes

2012-01-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- assignee: -> docs@python components: +Documentation nosy: +docs@python ___ Python tracker <http://bugs.python.org/issu

[issue13709] Capitalization mistakes in the documentation for ctypes

2012-01-03 Thread Ramchandra Apte
New submission from Ramchandra Apte : In section 15.17.1.17 in the ctypes documentation, the documentation says "It is funny to see that on linux the sort function seems to work much more efficiently, it is doing less comparisons" "It is quite interesting to see that th

[issue13710] hash() on string containing only null characters returns the length of the strings

2012-01-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: hash() on string containing only null characters returns the length of the string -> hash() on string containing only null characters returns the length of the strings ___ Python tracker &l

[issue13710] hash() on strings containing only null characters returns the length of the strings

2012-01-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: hash() on string containing only null characters returns the length of the strings -> hash() on strings containing only null characters returns the length of the strings ___ Python tracker &l

[issue13710] hash() on string containing only null characters returns the length of the string

2012-01-03 Thread Ramchandra Apte
New submission from Ramchandra Apte : If you run hash on strings containing only null characters it returns the length of the string >>> hash("\0") 1 >>> hash("\0\0") 2 >>> hash("\0"*1000) 1000 This behaviour is not like proper hash

[issue13798] Pasting and then running code doesn't work in the IDLE Shell

2012-01-16 Thread Ramchandra Apte
New submission from Ramchandra Apte : If you paste code with multiple lines which are not in a block of code into the IDLE Shell and press enter to run the code, only the first line of the code gets executed and the rest of the code is ignored. You can even put garbage such as "&qu

[issue13799] Base 16 should be hexadecimal in Unicode HOWTO

2012-01-16 Thread Ramchandra Apte
New submission from Ramchandra Apte : "base 16" should be "hexadecimal" in the Unicode HOWTO in both Python 2 and 3 docs. -- assignee: docs@python components: Documentation messages: 151354 nosy: docs@python, ramchandra.apte priority: normal severity: normal status:

[issue13801] The Python 3 Docs don't highlight nonlocal

2012-01-16 Thread Ramchandra Apte
New submission from Ramchandra Apte : The Python 3 Docs don't highlight nonlocal such as in the code example in the Python 3 documentation for itertools.zip_longest() (http://docs.python.org/py3k/library/itertools.html) -- messages: 151362 nosy: ramchandra.apte priority: n

[issue13801] The Python 3 Docs doesn't highlight nonlocal

2012-01-16 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: The Python 3 Docs don't highlight nonlocal -> The Python 3 Docs doesn't highlight nonlocal ___ Python tracker <http://bugs.pytho

[issue13801] The Python 3 Docs doesn't highlight nonlocal

2012-01-16 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- assignee: -> docs@python components: +Documentation nosy: +docs@python versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue13701] Remove Decimal Python 2.3 Compatibility

2012-01-30 Thread Ramchandra Apte
Ramchandra Apte added the comment: There is another problem with the code it creates a dummy module when threading is not available but now threading imports dummy_threading when threading is not available. Thanks -- ___ Python tracker <h

[issue13933] IDLE:not able to complete the hashlib module

2012-02-03 Thread Ramchandra Apte
New submission from Ramchandra Apte : No completion appears when I import hashlib in IDLE and type in "hashlib." and press Tab to complete. With any other module it works. -- components: IDLE, Library (Lib) messages: 152531 nosy: ramchandra.apte priority: normal severity: nor

[issue13933] IDLE:not able to complete the hashlib module

2012-02-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: I am using Ubuntu 11.04 with Python 3.2.2 from the package reprositeries (binaries) -- ___ Python tracker <http://bugs.python.org/issue13

[issue13944] HMAC object called hmac

2012-02-04 Thread Ramchandra Apte
New submission from Ramchandra Apte : When the documentation for hashlib says "An HMAC object has the following methods:" the list of methods says hmac.xxx which is wrong and should be HMAC.xxx. Thanks -- assignee: docs@python components: Documentation messages: 152657

[issue13945] Mistake in the text for PEP-383

2012-02-04 Thread Ramchandra Apte
New submission from Ramchandra Apte : "chosers" should be "choosers" in 'External libraries that operate on file names (such as GUI file chosers) should also encode them according to the PEP.' in text for PEP-383 (http://www.python.org/dev/peps/pep-0383/) --

[issue13951] Seg Fault in .so called by ctypes causes the interpreter to Seg Fault

2012-02-06 Thread Ramchandra Apte
Ramchandra Apte added the comment: It is the correct behaviour for an invalid usage to segfault and is also mentioned in the documentation. Can somebody close this bug as invalid? -- nosy: +ramchandra.apte ___ Python tracker <h

[issue13951] please close - Seg Fault in .so called by ctypes causes the interpreter to Seg Fault

2012-02-06 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: Seg Fault in .so called by ctypes causes the interpreter to Seg Fault -> please close - Seg Fault in .so called by ctypes causes the interpreter to Seg Fault ___ Python tracker <http://bugs.pyth

[issue14011] packaging should use shutil archiving functions transparently

2012-02-14 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- components: +Documentation ___ Python tracker <http://bugs.python.org/issue14011> ___ ___ Python-bugs-list mailing list Unsub

[issue13598] string.Formatter doesn't support empty curly braces "{}"

2012-02-16 Thread Ramchandra Apte
Ramchandra Apte added the comment: @Nick I don't understand why should my patch make Formatter thread-unsafe - the auto_field_count and manual variables are local variables just like the variables in the other functions in Formatter. -- ___ P

[issue13598] string.Formatter doesn't support empty curly braces "{}"

2012-02-16 Thread Ramchandra Apte
Ramchandra Apte added the comment: I have submitted a new patch, I have moved the increment to the end of if loop. -- Added file: http://bugs.python.org/file24542/issue13598.diff ___ Python tracker <http://bugs.python.org/issue13

[issue8526] msilib doesn't support multiple CAB instances in same installer

2012-02-19 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue8526> ___ ___ Python-bugs-list mailing list Unsubscri

[issue14068] problem with re split

2012-02-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: 启朗.杨, are you using text.split() in the second case? text.split() splits on any whitespace character including newlines while re.split(text," ") splits on a space. -- nosy: +ramchandra.apte ___ Pyth

[issue14068] problem with re split

2012-02-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: The problem is not in re, it is because you are passing '。' to re.split which in Python 2.x is actually passed as '\xe3\x80\x82'. You should pass u'。' to re.compile. Could we raise a SyntaxError when in a progam a unicode c

[issue14112] tutorial intro talks of "shallow copy" concept without explanation

2012-02-25 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 for Éric Araujo's idea. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue14112> ___ ___ Pytho

[issue14137] GTK3 Segmentation fault from Warning: g_object_notify: assertion `G_IS_OBJECT (object)' failed

2012-02-26 Thread Ramchandra Apte
Ramchandra Apte added the comment: Why do you think this is a bug in Python? I don't think this is a bug in Python. This might be bug in PyGTK or GTK which are third-party libraries. -- nosy: +ramchandra.apte ___ Python tracker

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Ramchandra Apte
Ramchandra Apte added the comment: See also issue14081 which got fixed. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue8706> ___ ___

[issue14139] test_ftplib: segfault

2012-02-27 Thread Ramchandra Apte
Ramchandra Apte added the comment: On my Linux machine it does not crash. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue14

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Ramchandra Apte
Ramchandra Apte added the comment: Can we have keyword arguments to range([start],stop,[step])? -- ___ Python tracker <http://bugs.python.org/issue8706> ___ ___

[issue7652] Merge C version of decimal into py3k.

2012-03-06 Thread Ramchandra Apte
Ramchandra Apte added the comment: But we could check if the compiler supports the inline keyword and use it if available. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue7

[issue14215] http://www.python.org/dev/peps/ title is python.org

2012-03-06 Thread Ramchandra Apte
New submission from Ramchandra Apte : The http://www.python.org/dev/peps browser title is python.org I suggest it should be changed to "PEP Index". -- messages: 155051 nosy: ramchandra.apte priority: normal severity: normal status: open title: http://www.python.org/dev/peps

[issue14216] ImportError: No module named binascii

2012-03-08 Thread Ramchandra Apte
Ramchandra Apte added the comment: See http://www.gentoo.org/proj/en/base/amd64/howtos/index.xml?part=1&chap=3. What it says might be the cause of the problem. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/iss

[issue13532] In IDLE, sys.stdout.write and sys.stderr can write any pickleable object

2012-03-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: What is the status of this bug? It has been about two months since the last message. -- ___ Python tracker <http://bugs.python.org/issue13

[issue14244] No information about behaviour with groups in pattern in the docstring for re.split

2012-03-09 Thread Ramchandra Apte
New submission from Ramchandra Apte : help(re.split) "split(pattern, string, maxsplit=0, flags=0) Split the source string by the occurrences of the pattern, returning a list containing the resulting substrings." No info is given about behaviour with groups in pattern. Creat

[issue14236] re: Docstring for \s and \S don’t mention Unicode

2012-03-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Done so see issue14244 . -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue14236> ___ ___ Python-bug

[issue14244] No information about behaviour with groups in pattern in the docstring for re.split

2012-03-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Oops. The link in the last sentence doesn't work. It should be see msg155283 . -- ___ Python tracker <http://bugs.python.org/is

[issue2486] Recode (parts of) decimal module in C

2012-03-15 Thread Ramchandra Apte
Ramchandra Apte added the comment: If issue7652 finishes. There's no point in fixing this bug. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/i

[issue12619] Automatically regenerate platform-specific modules

2012-03-17 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 for this. -- ___ Python tracker <http://bugs.python.org/issue12619> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14350] Strange Exception from copying an iterable

2012-03-17 Thread Ramchandra Apte
Ramchandra Apte added the comment: I get a normal exception. I see ipython at the top level in 'T:\languages\Python27\Scripts\ in ()' Perhaps you ran ipython accidentally? -- nosy: +ramchandra.apte ___ Python tracker <http://bu

[issue14350] Strange Exception from copying an iterable

2012-03-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: BTW, can we add support for copying iterators by using itertools.tee -- ___ Python tracker <http://bugs.python.org/issue14

[issue13657] IDLE doesn't support sys.ps1 and sys.ps2.

2012-03-23 Thread Ramchandra Apte
Ramchandra Apte added the comment: What is the status of this bug? -- ___ Python tracker <http://bugs.python.org/issue13657> ___ ___ Python-bugs-list mailin

[issue14503] docs:Code not highlighted

2012-04-05 Thread Ramchandra Apte
New submission from Ramchandra Apte : In http://docs.python.org/dev/whatsnew/3.3.html#pep-380-syntax-for-delegating-to-a-subgenerator , two code samples -- assignee: docs@python components: Documentation messages: 157551 nosy: docs@python, ramchandra.apte priority: normal severity

[issue14503] docs:Code not highlighted

2012-04-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: Whoops - In http://docs.python.org/dev/whatsnew/3.3.html#pep-380-syntax-for-delegating-to-a-subgenerator , two code samples are not highlighted. -- ___ Python tracker <http://bugs.python.org/issue14

[issue14478] Decimal hashing very slow, could be cached

2012-04-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: I recommend that __hash__ should use functools.lru_cache for caching. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue14

[issue7057] tkinter doc: more 3.x updates

2012-04-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: "Tkinter uses the Xlib library to draw graphics on the screen" should be "Tkinter uses the Xlib library on Linux to draw graphics on the screen" -- nosy: +ramchandra.apte ___ P

[issue13708] Document ctypes.wintypes

2012-04-06 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/issue13708> ___ ___ Python-bugs-

[issue14535] three code examples in docs are not syntax highlighted

2012-04-09 Thread Ramchandra Apte
New submission from Ramchandra Apte : Three code examples in http://docs.python.org/py3k/library/multiprocessing.html#examples are not syntax highlighted. -- assignee: docs@python components: Documentation messages: 157845 nosy: docs@python, ramchandra.apte priority: normal severity

[issue17238] IDLE: Enhance import statement completion

2013-06-15 Thread Ramchandra Apte
Ramchandra Apte added the comment: I have a patch ready; have to make it ready (PEP8-compliance etc.) and then I can send it. On 16 June 2013 00:52, Terry J. Reedy wrote: > > Terry J. Reedy added the comment: > > Making a list of all possible modules is harder than a list o

[issue18305] [patch] Fast sum() for non-numbers

2013-07-02 Thread Ramchandra Apte
Ramchandra Apte added the comment: I agree with Sergey. Would be nice if it could use copy.copy (though that might change behaviour a bit) -- nosy: +Ramchandra Apte ___ Python tracker <http://bugs.python.org/issue18

[issue18338] python --version should send output to STDOUT

2013-07-02 Thread Ramchandra Apte
Ramchandra Apte added the comment: > Your proposal is reasonable. I'm flagging it for Python 3.4+ as it's a > backward incompatible modification. Agree. -- nosy: +Ramchandra Apte ___ Python tracker <http://bugs.py

[issue18286] Python 3.3 - Slowing down computer

2013-07-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: The problem is with OP's code; not Python. Please close this bug as invalid. OP can ask on the Python mailing list to fix his code. -- nosy: +Ramchandra Apte ___ Python tracker <http://bugs.python.org/is

[issue18338] python --version should send output to STDOUT

2013-07-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: On 3 July 2013 15:16, Berker Peksag wrote: > > Berker Peksag added the comment: > > Here is a patch with an updated test. > > The -v flag also sends the output to stderr. Should that be fixed too? See > Modules/main.c:678 and Lib/test

[issue18338] python --version should send output to STDOUT

2013-07-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: No, I think that On 3 July 2013 16:06, Serhiy Storchaka wrote: > > Serhiy Storchaka added the comment: > > LGTM. > > -- > nosy: +serhiy.storchaka > > ___ > Python tracker > &

[issue18518] timeit bug?

2013-07-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: Well, not sure if this is worth fixing, I think this is because timeit runs a modified version of the code using exec(), with the actual code to be timed within a function. (timeit runs something like this with exec(): def actual_code(): #The real code

[issue18518] return-ing within code timed with timeit.timeit causes wrong return value of timeit.timeit

2013-07-21 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: return-ing within timeit.timeit causes wrong return value of timeit.timeit -> return-ing within code timed with timeit.timeit causes wrong return value of timeit.timeit ___ Python tracker &l

[issue18518] return-ing within timeit.timeit causes wrong return value of timeit.timeit

2013-07-21 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: timeit bug? -> return-ing within timeit.timeit causes wrong return value of timeit.timeit ___ Python tracker <http://bugs.python.org/issu

[issue18466] Spelling mistakes in various code comments.

2013-07-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: Hmm... once I actually created a short (<50 lines) script which spell-checked the comments. Problem is that many technical words (GCC, for example) were marked incorrect by the spell-checker (Enchant), resulting in about 1000+ "incorrectly"

[issue18655] GUI apps take long to launch on Windows

2013-08-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: Can you provide a short script that reproduces this problem? AFAIK, Python doesn't display windows, the tcl/pygame libraries' C code creates the windows. -- nosy: +Ramchandra Apte ___ Python trac

[issue18704] IDLE: PEP8 Style Check Integration

2013-08-11 Thread Ramchandra Apte
Ramchandra Apte added the comment: I like the idea of having a PEP8-checker for IDLE. -- nosy: +Ramchandra Apte ___ Python tracker <http://bugs.python.org/issue18

[issue18788] Proof of concept: implicit call syntax

2013-08-20 Thread Ramchandra Apte
Ramchandra Apte added the comment: I do not see much use of of implicit call syntax, a good editor will autocomplete the brackets. -- nosy: +Ramchandra Apte ___ Python tracker <http://bugs.python.org/issue18

[issue18704] IDLE: PEP8 Style Check Integration

2013-08-20 Thread Ramchandra Apte
Ramchandra Apte added the comment: Agree with Terry Reedy. -- ___ Python tracker <http://bugs.python.org/issue18704> ___ ___ Python-bugs-list mailing list Unsub

[issue17234] python-2.7.3-r3: crash in visit_decref()

2013-08-25 Thread Ramchandra Apte
Ramchandra Apte added the comment: > Here is one stacktrace I just got with the faulthandler installed. It does > not show in the trace any 3rd-party module so can I conclude it is a core > python bug? Just recompiling with "-ggdb" so eventually will have better > stac

[issue18918] help('FILES') finds no documentation

2013-09-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: I am able to reproduce on Python 3.3 as well. -- components: -Interpreter Core nosy: +Ramchandra Apte versions: +Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue18

[issue19002] ``dir`` function does not work correctly with classes.

2013-09-11 Thread Ramchandra Apte
Ramchandra Apte added the comment: On 11 September 2013 21:41, Ethan Furman wrote: > > Ethan Furman added the comment: > > So when you do a `dir(int)` you don't want to know what you can call on 7? > You'd rather know w

[issue19002] ``dir`` function does not work correctly with classes.

2013-09-11 Thread Ramchandra Apte
Ramchandra Apte added the comment: -1 classes themselves are objects, so dir should list the attributes/methods of the class object, not the instances. -- nosy: +Ramchandra Apte ___ Python tracker <http://bugs.python.org/issue19

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- assignee: -> eric.araujo components: +Distutils nosy: +eric.araujo, tarek versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issu

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Ramchandra Apte
New submission from Ramchandra Apte : Make distutils.ccompiler.CCompiler an abstract class by making it inherit from abc.ABCMeta. Thanks -- messages: 159369 nosy: ramchandra.apte priority: normal severity: normal status: open title: make distutils.ccompiler.CCompiler an abstract class

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Ramchandra Apte
Ramchandra Apte added the comment: Sorry, distutils.ccompiler.CCompiler should have abc.ABCMeta as the metaclass. (for example like this) class CCompiler(metaclass = abc.ABCMeta): ... Thanks -- ___ Python tracker <http://bugs.python.

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-28 Thread Ramchandra Apte
Ramchandra Apte added the comment: Well, there is no practical advantage at all. -- ___ Python tracker <http://bugs.python.org/issue14675> ___ ___ Python-bug

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-28 Thread Ramchandra Apte
Ramchandra Apte added the comment: Please change the priorty of this bug to low. -- ___ Python tracker <http://bugs.python.org/issue14675> ___ ___ Python-bug

[issue14691] a code example not highlighted in http://docs.python.org/dev/library/stdtypes.html#memoryview

2012-04-29 Thread Ramchandra Apte
New submission from Ramchandra Apte : A code example is not highlighted in the 3.3 docs for memoryview (http://docs.python.org/dev/library/stdtypes.html#memoryview) Only 3.3 is affected by this bug as the code example is for a feature in 3.3. -- assignee: docs@python components

[issue14827] IDLE crash when typing ^ character on Mac OS X

2012-05-16 Thread Ramchandra Apte
Ramchandra Apte added the comment: Please run IDLE from the command line and send the output when it crashes. (If I knew Mac better I would tell you the precise instructions) -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.

[issue14827] IDLE crash when typing ^ character on Mac OS X

2012-05-16 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- assignee: -> ronaldoussoren components: +Macintosh nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issu

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-05-20 Thread Ramchandra Apte
Ramchandra Apte added the comment: Looking at the code at http://code.google.com/p/ipaddress-py/source/browse/ipaddress.py I see a few classes which could benefit from functools.total_ordering. -- nosy: +ramchandra.apte ___ Python tracker <h

[issue14882] Link/Compile Error on Sun Sparc Solaris10 with gcc3.4.3----python2.6.8

2012-05-22 Thread Ramchandra Apte
Ramchandra Apte added the comment: Since most of the Python devs and I don't understand Chinese, can you please show the errors in English by compiling Python with LANG=C . Thanks for the bug report. -- nosy: +ramchandra.apte ___ Python tr

[issue14962] When changing IDLE configuration all text in editor window loses highlighting

2012-05-30 Thread Ramchandra Apte
New submission from Ramchandra Apte : When applying or okaying IDLE configuration (Options-> Configure IDLE) all text in the shell window loses highlighting. Text in the shell window created after the configuration is applied is highlighted though. -- components: IDLE messages: 161

[issue14962] When changing IDLE configuration all text in shell window loses highlighting

2012-05-30 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: When changing IDLE configuration all text in editor window loses highlighting -> When changing IDLE configuration all text in shell window loses highlighting ___ Python tracker <http://bugs.pyth

[issue14961] map() and filter() methods for iterators

2012-05-30 Thread Ramchandra Apte
Ramchandra Apte added the comment: Sorry, small mistake. Actually all the other Python 2.x releases are in security-fix mode. -- ___ Python tracker <http://bugs.python.org/issue14

[issue14961] map() and filter() methods for iterators

2012-05-30 Thread Ramchandra Apte
Ramchandra Apte added the comment: I think this is quite a major change to Python and this needs a PEP BTW issue912738 and therefore this bug no longer applies to Python 3. In Python 3 map returns an iterator. Even if you wanted to implement this feature in Python 2, it is not possible

[issue14961] map() and filter() methods for iterators

2012-05-30 Thread Ramchandra Apte
Ramchandra Apte added the comment: Sorry, To clarify: Python 2.7 is in bug-fix mode which means only minor enhancements are allowed. -- ___ Python tracker <http://bugs.python.org/issue14

[issue14962] When changing IDLE configuration all text in shell window loses highlighting

2012-05-30 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue14962> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13598] string.Formatter doesn't support empty curly braces "{}"

2012-06-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: What is the status of the bug? -- ___ Python tracker <http://bugs.python.org/issue13598> ___ ___ Python-bugs-list mailin

[issue13598] string.Formatter doesn't support empty curly braces "{}"

2012-06-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: Added a new patch which addresses Éric's comments. -- Added file: http://bugs.python.org/file25816/issue13598.diff ___ Python tracker <http://bugs.python.org/is

[issue13598] string.Formatter doesn't support empty curly braces "{}"

2012-06-04 Thread Ramchandra Apte
Changes by Ramchandra Apte : Added file: http://bugs.python.org/file25817/test_string.diff ___ Python tracker <http://bugs.python.org/issue13598> ___ ___ Python-bug

[issue14996] IDLE in Python 3.2.3 freezes when saving a .py program

2012-06-04 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: pthon 3.2.3 freezes when saving a .py program -> IDLE in Python 3.2.3 freezes when saving a .py program ___ Python tracker <http://bugs.python.org/issu

[issue14996] IDLE in Python 3.2.3 freezes when saving a .py program

2012-06-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: Can you run IDLE from the cmd line and send the output of the cmd line when it crashes? -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue14

[issue14997] Syntax Error in Python Version Number

2012-06-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: Can you please run IDLE from the cmd line and send the output of it in the cmd line. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue14

[issue14996] Python 3.2.3 freezes when saving a .py program

2012-06-04 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: pthon 3.2.3 freezes when saving a .py program -> Python 3.2.3 freezes when saving a .py program ___ Python tracker <http://bugs.python.org/issu

[issue14215] http://www.python.org/dev/peps/ title is python.org

2012-06-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: What it the status of this bug? -- ___ Python tracker <http://bugs.python.org/issue14215> ___ ___ Python-bugs-list mailin

[issue15008] PEP 362 reference implementation for 3.3

2012-06-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: Signature and signature are two variable names that differ only in case. To avoid confusion, I recommend one of the names should be changed. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.

[issue13532] In IDLE, sys.stdout.write and sys.stderr can write any pickleable object

2012-06-08 Thread Ramchandra Apte
Ramchandra Apte added the comment: @Roger Serwy >> Does anyone know a good way to make the exception render as: "must be str, >> not int" instead of "must be str, not " ? Use s.__name__ rather than type(s) for the type name e.g. -raise TypeError('m

[issue13598] string.Formatter doesn't support empty curly braces "{}"

2012-06-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Its not a bug though it has maintenance problems because if you change "manual is False" to not manual it no longer works correctly. -- ___ Python tracker <http://bugs.python.o

[issue415492] Compiler generates relative filenames

2012-06-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: What is the status of this bug? This is the oldest open bug. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue415

[issue3208] function annotation for builtin and C function

2012-06-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: What is the status of this bug? -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue3208> ___ ___ Pytho

[issue15113] IDLE Shell: delattr(__builtins__, "getattr") causes shell to stop working

2012-06-19 Thread Ramchandra Apte
New submission from Ramchandra Apte : delattr(__builtins__,"getattr") causes shell to stop working if you type some code in nothing gets printed back if you press enter without typing any code you get a traceback Exception in thread SockThread: Traceback (most recent call last):

[issue15113] IDLE Shell: delattr(__builtins__, "getattr") causes shell to stop working

2012-06-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Running the delattr(__builtins__,"getattr") in Python from the cmd line doesn't create any problems though. -- ___ Python tracker <http://bugs.pyt

[issue15113] IDLE Shell: delattr(__builtins__, "getattr") causes shell to stop working

2012-06-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Another note: this bug is reproducable in the IDLE Shell with the python subprocess feature enabled (the python process that runs your commands and the python process that manages IDLE's windows are diff

[issue15113] IDLE Shell: delattr(__builtins__, "getattr") causes shell to stop working

2012-06-20 Thread Ramchandra Apte
Ramchandra Apte added the comment: IDLE should try to mimic Python as much as feasible. -- ___ Python tracker <http://bugs.python.org/issue15113> ___ ___ Pytho

  1   2   3   4   >