[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2012-11-01 Thread Ramchandra Apte
Ramchandra Apte added the comment: @Mark Dickinson Run the attached file, exploit.py, with normal priveleges and then run IDLE with sudo (something I did to actually uncover this bug!). Then the file "/root/exploited" should contain "Exploit succeeded!" ---

[issue16248] Security bug in tkinter allows for untrusted, arbitrary code execution.

2012-11-01 Thread Ramchandra Apte
Ramchandra Apte added the comment: On 2 November 2012 01:48, Stefan Krah wrote: > > Stefan Krah added the comment: > > Isn't IDLE supposed to be a Python shell? As I understand this issue, > you'd have the same "exploit" by adding this to your .bashrc:

[issue16261] Fix bare excepts in various places in std lib

2012-11-01 Thread Ramchandra Apte
Ramchandra Apte added the comment: Yes. most of the bare excepts can be replaced with a stricter clause On 2 November 2012 01:06, Andrew Svetlov wrote: > > Andrew Svetlov added the comment: > > Sorry, looks like I don't understood you correctly. > Do you want to replace

[issue16385] evaluating dict with repeated keys gives no warnings

2012-11-02 Thread Ramchandra Apte
Ramchandra Apte added the comment: This is an unavoidable behaviour of the hash tables (dictionaries) I don't see much use cases of a warning. -- nosy: +ramchandra.apte title: evaluating dict with repeated keys gives no error/warnings -> evaluating dict with repeated keys

[issue16385] evaluating dict with repeated keys gives no warnings/errors

2012-11-02 Thread Ramchandra Apte
Ramchandra Apte added the comment: Retract earlier statement. I didn't read the comment fully. -- title: evaluating dict with repeated keys gives no warnings -> evaluating dict with repeated keys gives no warnings/errors ___ Python tracke

[issue16385] evaluating dict with repeated keys gives no warnings/errors

2012-11-02 Thread Ramchandra Apte
Ramchandra Apte added the comment: You should be using json for configuration purposes anyway. This is low priority as only few programs use dictionaries with a gazillion keys. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16218] Python launcher does not support unicode characters

2012-11-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: Python launcher does not support non ascii characters -> Python launcher does not support unicode characters ___ Python tracker <http://bugs.python.org/issu

[issue5184] Add -3 warning for extension types that implement tp_compare but not tp_richcompare

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

[issue5720] ctime: I don't think that word means what you think it means.

2012-11-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue5720> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5141] C API for appending to arrays

2012-11-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- components: +Library (Lib) ___ Python tracker <http://bugs.python.org/issue5141> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6933] Threading issue with Tkinter Frame.insert

2012-11-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue6933> ___ ___ Python-bugs-list mailin

[issue16394] Reducing tee() memory footprint

2012-11-03 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: Improving tee() memory footprint -> Reducing tee() memory footprint ___ Python tracker <http://bugs.python.org/issu

[issue8243] curses writing to window's bottom right position raises: `_curses.error: addstr() returned ERR'

2012-11-05 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- components: +Library (Lib) ___ Python tracker <http://bugs.python.org/issue8243> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8243] curses writing to window's bottom right position raises: `_curses.error: addstr() returned ERR'

2012-11-05 Thread Ramchandra Apte
New submission from Ramchandra Apte: AutoBump™. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue8243> ___ ___ Python-bugs-list mailin

[issue4887] environment inspection and manipulation API is buggy, inconsistent with "Python philosophy" for wrapping native APIs

2012-11-05 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- versions: +Python 3.4 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue4887> ___ ___ Python-bug

[issue7292] Multiprocessing Joinable race condition?

2012-11-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: Buu..mp -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue7292> ___ ___ Python-bugs-list mailin

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

2012-11-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump. -- ___ Python tracker <http://bugs.python.org/issue14215> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16491] try-except-raise-bug

2012-11-17 Thread Ramchandra Apte
Ramchandra Apte added the comment: Also, please report bugs in English. (read the devguide to learn more) -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16

[issue16483] Make int(float('inf')) raise ValueError rather than OverflowError.

2012-11-17 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 on OverflowError being a subclass of ValueError -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16

[issue16548] os.system won't run any command and there is no error message when memory cannot be allocated

2012-11-25 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 on exception -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16548> ___ ___ Python-bugs-list mailin

[issue1569040] Speed up using + for string concatenation

2012-11-25 Thread Ramchandra Apte
Ramchandra Apte added the comment: Buuump. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue1569040> ___ ___ Python-bugs-list mailin

[issue2537] re.compile(r'((x|y+)*)*') should fail

2012-11-25 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- components: +Library (Lib) -Regular Expressions versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issue2

[issue3410] platform.version() don't work as expected in Vista in portuguese

2012-11-25 Thread Ramchandra Apte
Ramchandra Apte added the comment: Beemp. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue3410> ___ ___ Python-bugs-list mailin

[issue16818] Couple of mistakes in PEP 431

2012-12-29 Thread Ramchandra Apte
New submission from Ramchandra Apte: in PEP 431, Time zone support improvements "NonExistentTimeError This exception is raised when giving a datetime specification that are ambigious while setting is_dst to None:" it should be "that is non-existent" or similar. The same des

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

2012-12-29 Thread Ramchandra Apte
Ramchandra Apte added the comment: Buump... -- ___ Python tracker <http://bugs.python.org/issue13657> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16819] IDLE b"" method completion incorrect

2012-12-30 Thread Ramchandra Apte
New submission from Ramchandra Apte: To reproduce, type b"". and then press TAB. The encode method is listed, that means that IDLE is listing the methods of "" (it should list the methods of b""). -- components: IDLE messages: 178558 nosy: ramchandra.

[issue13555] cPickle MemoryError when loading large file (while pickle works)

2012-12-30 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump. @neologix I have a 64-bit laptop with 2 GB memory so I don't think I can do so. (though one could use swap) -- ___ Python tracker <http://bugs.python.org/is

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

2012-12-30 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump. -- ___ Python tracker <http://bugs.python.org/issue13951> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2012-12-30 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: Seg Fault in .so called by ctypes causes the interpreter to Seg Fault -> Document that Seg Fault in .so called by ctypes causes the interpreter to Seg Fault ___ Python tracker <http://bugs.pyth

[issue16827] Remove the relatively advanced content from section 2 in tutorial

2012-12-31 Thread Ramchandra Apte
New submission from Ramchandra Apte: Most of the content in section 2 in the tutorial, http://docs.python.org/3/tutorial/interpreter.html , is relatively advanced and doesn't belong in, at least, the beginning of the tutorial. Only 2.1. Invoking the Interpreter, and 2.2.3. Source

[issue16831] Better docs for ABCMeta.__subclasshook__

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

[issue16833] http.client delayed ack / Nagle algorithm optimisation performs badly for large messages

2013-01-01 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: httpc.lient delayed ack / Nagle algorithm optimisation performs badly for large messages -> http.client delayed ack / Nagle algorithm optimisation performs badly for large messages ___ Python tracker &l

[issue16829] IDLE on POSIX can't print filenames with spaces

2013-01-02 Thread Ramchandra Apte
Ramchandra Apte added the comment: I think if IDLE directly starts lpr directly (subprocess) rather than using a shell to run it, then this problem won't happen. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/is

[issue16861] Portion of code example not highlighted in collections doc

2013-01-04 Thread Ramchandra Apte
New submission from Ramchandra Apte: In http://docs.python.org/2/library/collections.html#namedtuple-factory-function-for-tuples-with-named-fields , a portion of the code example is not highlighted. --- Happy, new, melodious, joyful, etc, boring new year. -- assignee: -> docs@pyt

[issue16861] Portion of code example not highlighted in collections doc

2013-01-04 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- nosy: ramchandra.apte priority: normal severity: normal status: open title: Portion of code example not highlighted in collections doc ___ Python tracker <http://bugs.python.org/issue16

[issue16862] FAQ has outdated information about Stackless

2013-01-04 Thread Ramchandra Apte
New submission from Ramchandra Apte: The FAQ says "It’s [Stackless] still experimental but looks very promising." AFAIK, Stackless is mature. -- assignee: docs@python components: Documentation messages: 179038 nosy: docs@python, ramchandra.apte priority: normal severity: nor

[issue16862] FAQ has outdated information about Stackless

2013-01-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: Sorry, link here, http://docs.python.org/3/faq/design.html#can-t-you-emulate-threads-in-the-interpreter-instead-of-relying-on-an-os-specific-thread-implementation . -- ___ Python tracker <http://bugs.python.

[issue16908] Enhancing performance and memory usage

2013-01-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: What is the problem? Python 3 uses more memory because many things that were earlier ASCII strings in Python 2 are Unicode strings. Same reason for performance AFAIK. -- nosy: +ramchandra.apte ___ Python tracker

[issue16907] Distutils fails to build extension in path with spaces

2013-01-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Can you fix the bare except? -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16907> ___ ___ Python-bug

[issue16261] Fix bare excepts in various places in std lib

2013-01-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Here's a patch on revision 75fe7f5fda9a (I did it on a trip without an internet connection) There might be some mistakes of this type: I incorrectly changed instances like this ` try: something except: close file raise ` to ` try: some

[issue16261] Fix bare excepts in various places in std lib

2013-01-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Sorry, I entered the wrong filename for the patch and so it didn't get attached. Now I have attached it. -- keywords: +patch Added file: http://bugs.python.org/file28647/patch.patch ___ Python tracker

[issue16829] IDLE on POSIX can't print filenames with spaces

2013-01-11 Thread Ramchandra Apte
Ramchandra Apte added the comment: Going to attach a patch using subprocess in a few minutes... -- ___ Python tracker <http://bugs.python.org/issue16829> ___ ___

[issue16829] IDLE on POSIX can't print filenames with spaces

2013-01-11 Thread Ramchandra Apte
Ramchandra Apte added the comment: @Serhiy Storchaka I don't think anybody edits that line anyway. IMHO, a warning about this change should be enough. -- ___ Python tracker <http://bugs.python.org/is

[issue16933] argparse: remove magic from examples

2013-01-11 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16933> ___ ___ Python-bugs-list mailing list Unsub

[issue16942] urllib still doesn't support persistent connections

2013-01-12 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: seriously? urllib still doesn't support persistent connections? -> urllib still doesn't support persistent connections ___ Python tracker <http://bugs.pytho

[issue16829] IDLE on POSIX can't print filenames with spaces

2013-01-12 Thread Ramchandra Apte
Ramchandra Apte added the comment: Attached is a patch which uses subprocess. Haven't tested it much. -- Added file: http://bugs.python.org/file28705/issue16829.patch ___ Python tracker <http://bugs.python.org/is

[issue16259] Replace exec() in test.regrtest with __import__

2013-01-12 Thread Ramchandra Apte
Ramchandra Apte added the comment: Boiiummp. -- ___ Python tracker <http://bugs.python.org/issue16259> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13659] Add a help() viewer for IDLE's Shell.

2013-01-13 Thread Ramchandra Apte
Ramchandra Apte added the comment: Patch LGTM. -- ___ Python tracker <http://bugs.python.org/issue13659> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2226] Small _abcoll Bugs / Oddities

2013-01-13 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue2226> ___ ___ Python-bugs-list mailin

[issue16580] Add examples to int.to_bytes and int.from_bytes

2013-01-13 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: Add examples to int.to_bytres and int.from_bytes -> Add examples to int.to_bytes and int.from_bytes ___ Python tracker <http://bugs.python.org/issu

[issue16960] Fix PEP8 errors in stdlib.

2013-01-14 Thread Ramchandra Apte
New submission from Ramchandra Apte: This bug is intended to contain all the patches for fixing PEP8 errors in stdlib. I am thinking of using a tool such as autopep8 to help fix the errors. -- messages: 179921 nosy: ramchandra.apte priority: normal severity: normal status: open title

[issue16960] Fix PEP8 errors everywhere

2013-01-14 Thread Ramchandra Apte
Ramchandra Apte added the comment: s/stdlib/everywhere -- components: +None title: Fix PEP8 errors in stdlib. -> Fix PEP8 errors everywhere ___ Python tracker <http://bugs.python.org/issu

[issue16960] Fix PEP8 errors everywhere

2013-01-14 Thread Ramchandra Apte
Ramchandra Apte added the comment: Why? This may be low priority. -- ___ Python tracker <http://bugs.python.org/issue16960> ___ ___ Python-bugs-list mailin

[issue16960] Fix PEP8 errors everywhere

2013-01-14 Thread Ramchandra Apte
Ramchandra Apte added the comment: It's a valid bug report however difficult or low priority it is. -- ___ Python tracker <http://bugs.python.org/is

[issue16974] when "python -c command" does a traceback, it open the file ""

2013-01-15 Thread Ramchandra Apte
Ramchandra Apte added the comment: Well, it should't open "" IMHO. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16974> ___ __

[issue5773] Crash on shutdown after os.fdopen(2) in debug builds

2013-01-15 Thread Ramchandra Apte
Ramchandra Apte added the comment: Is this still valid because this seems fixed in latest Python 3.4 tip. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue5

[issue16974] when "python -c command" does a traceback, it open the file ""

2013-01-16 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 On 16 January 2013 17:43, R. David Murray wrote: > > R. David Murray added the comment: > > Ideally there would be an unambiguous way to know if the object came from > a file or some other source (say, __file__ is None and another spec

[issue5773] Crash on shutdown after os.fdopen(2) in debug builds

2013-01-16 Thread Ramchandra Apte
Ramchandra Apte added the comment: Though it may be valid in Python 2.7 still. On 16 January 2013 10:53, Ramchandra Apte wrote: > > Ramchandra Apte added the comment: > > Is this still valid because this seems fixed in latest Python 3.4 tip. > > -- > n

[issue15443] datetime module has no support for nanoseconds

2013-01-17 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue15443> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7353] cporting docs recommend using Include/intobject.h, which was removed in 3.1?

2013-01-17 Thread Ramchandra Apte
Ramchandra Apte added the comment: Bump... is this still valid? -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue7353> ___ ___ Python-bug

[issue16969] test_urlwithfrag fail

2013-01-17 Thread Ramchandra Apte
Ramchandra Apte added the comment: Hmmm. Because of the recent doc changes, that link is redirecting to "http://docs.python.org/2...";. Even if we change that, for some reason, the fragment is disappearing when redirecting. -- nosy: +ramch

[issue16969] test_urlwithfrag fail

2013-01-17 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- type: compile error -> behavior ___ Python tracker <http://bugs.python.org/issue16969> ___ ___ Python-bugs-list mailing list Un

[issue16993] shutil.which() should preserve path case

2013-01-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Somehow the patch is not showing for me. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-19 Thread Ramchandra Apte
New submission from Ramchandra Apte: This would reduce the complexity of uuid.UUID and also if the way it compares changes, one would't have to change all the compare methods. Attached is a patch. -- components: Library (Lib) files: issue.patch keywords: patch messages: 180275

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-19 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- type: -> enhancement ___ Python tracker <http://bugs.python.org/issue17001> ___ ___ Python-bugs-list mailing list Unsubscri

[issue16557] PEP 380 isn't reflected in the Functional Programming HOWTO

2013-01-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Attached is a patch. Note that this is my first Doc patch; please apologize errors. -- keywords: +patch nosy: +ramchandra.apte Added file: http://bugs.python.org/file28793/issue16557.patch ___ Python tracker <h

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Yes, will do so. -- ___ Python tracker <http://bugs.python.org/issue17001> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: @Brian Curtin It appears that there are tests for UUID ordering. [0] I will run the tests. [0] http://hg.python.org/cpython/file/d1e6a48dfb0d/Lib/test/test_uuid.py#l188 -- ___ Python tracker <h

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Damn, I forgot to add import functools. Here is a fixed version that passes test_uuid. -- Added file: http://bugs.python.org/file28794/issue-v2.patch ___ Python tracker <http://bugs.python.org/issue17

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

2013-01-19 Thread Ramchandra Apte
Ramchandra Apte added the comment: Buump. -- ___ Python tracker <http://bugs.python.org/issue13598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-20 Thread Ramchandra Apte
Changes by Ramchandra Apte : Removed file: http://bugs.python.org/file28794/issue-v2.patch ___ Python tracker <http://bugs.python.org/issue17001> ___ ___ Python-bug

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-20 Thread Ramchandra Apte
Ramchandra Apte added the comment: Oh darn, I included another bugs changes in it. I unlinked the v2 patch and have attached issue17001-v2.patch -- ___ Python tracker <http://bugs.python.org/issue17

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: Performance info using the attached program: ~2.5 sec, original ~3.5 sec, patched (patched version is 40% slower) Is anybody doing the comparison in performance-critical cases? -- ___ Python tracker <h

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: On 21 January 2013 02:42, Raymond Hettinger wrote: > NotImplemented Can you please elaborate on "it doesn't handle the NotImplemented logic very well". AFAIK both will give NotImplemented f

[issue17006] Warn users about hashing secrets?

2013-01-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 "Better to be safe than sorry" -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue17006> ___ ___

[issue16699] Mountain Lion buildbot lacks disk space

2013-01-21 Thread Ramchandra Apte
Ramchandra Apte added the comment: Invalid. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue16699> ___ ___ Python-bugs-list mailin

[issue17014] _getfinalpathname() no more used in 3.4

2013-01-22 Thread Ramchandra Apte
Ramchandra Apte added the comment: LGTM -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue17014> ___ ___ Python-bugs-list mailin

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-22 Thread Ramchandra Apte
Ramchandra Apte added the comment: @Raymond Hettinger Why? Please respond to my comments. -- ___ Python tracker <http://bugs.python.org/issue17001> ___ ___ Pytho

[issue17032] Misleading error message: global name 'X' is not defined

2013-01-25 Thread Ramchandra Apte
Ramchandra Apte added the comment: +1 on Ezio's idea. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue17032> ___ ___ Python-bugs-l

[issue12883] xml.sax.xmlreader.AttributesImpl allows empty string as attribute names

2013-01-29 Thread Ramchandra Apte
Ramchandra Apte added the comment: bump... -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue12883> ___ ___ Python-bugs-list mailin

[issue7225] fwrite() compiler warnings

2013-01-31 Thread Ramchandra Apte
Ramchandra Apte added the comment: I'm pretty sure this is invalid now. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue7225> ___ ___

[issue16432] Template strings documentation in Python 3 refers to % substitution in present tense

2013-01-31 Thread Ramchandra Apte
Ramchandra Apte added the comment: > ... as it is not the preferred system. I prefer .format() but I don't think that's true for many people. -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.pytho

[issue17100] rotating an ordereddict

2013-02-01 Thread Ramchandra Apte
Ramchandra Apte added the comment: Will attach patch when I get free (10 hours from now) -- nosy: +ramchandra.apte ___ Python tracker <http://bugs.python.org/issue17

[issue16643] Wrong documented default value for timefunc parameter in sched.scheduler()

2013-02-03 Thread Ramchandra Apte
Ramchandra Apte added the comment: Here's a patch. -- keywords: +patch nosy: +ramchandra.apte Added file: http://bugs.python.org/file28943/issue16643.patch ___ Python tracker <http://bugs.python.org/is

[issue17103] ampersand "&" in path prevents compilation of Python

2013-02-04 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: ampersand "&" in path prevents from compiling pthon -> ampersand "&" in path prevents compilation of Python ___ Python tracker <

[issue12596] cPickle - stored data differ for same dictionary

2013-02-07 Thread Ramchandra Apte
Ramchandra Apte added the comment: Try `./python -R -c "import pickle; print(pickle.dumps({'a':1, 'v':1}))" |md5sum`. The output will differ on subsequent run, while trying `./python -R -c "import pickle; print(pickle.dumps({'a':1}))" |md5sum`,

[issue12596] cPickle - stored data differ for same dictionary

2013-02-07 Thread Ramchandra Apte
Ramchandra Apte added the comment: Darn, last sentence has some mistakes. I suspect this issue is happening because the order of a dictionary is different on every run (try repr). -- ___ Python tracker <http://bugs.python.org/issue12

[issue12596] cPickle - stored data differ for same dictionary

2013-02-07 Thread Ramchandra Apte
Ramchandra Apte added the comment: Further proof: here are the results of two invocations of `./python -R -c "import pickle; print(pickle.dumps({'a':1, 'v':1}))"` b'\x80\x03}q\x00(X\x01\x00\x00\x00vq\x01K\x01X\x01\x00\x00\x00aq\x02K\x01u.' b'\x80\x0

[issue4331] Can't use _functools.partial() created function as method

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- versions: +Python 3.3, Python 3.4 -Python 3.0 ___ Python tracker <http://bugs.python.org/issue4331> ___ ___ Python-bugs-list mailin

[issue17157] issubclass should accept iterables

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- nosy: kushou, ramchandra.apte priority: normal severity: normal status: open title: issubclass should accept iterables type: enhancement versions: Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.

[issue17157] issubclass should accept iterables

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- components: +Interpreter Core ___ Python tracker <http://bugs.python.org/issue17157> ___ ___ Python-bugs-list mailing list Unsub

[issue17157] issubclass should accept iterables

2013-02-08 Thread Ramchandra Apte
New submission from Ramchandra Apte: kushou pointed this out on #python-dev -- ___ Python tracker <http://bugs.python.org/issue17157> ___ ___ Python-bugs-list m

[issue17157] issubclass() should accept iterables in 2nd arg

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: issubclass should accept iterables -> issubclass() should accept iterables in 2nd arg ___ Python tracker <http://bugs.python.org/issu

[issue17157] issubclass() should accept iterables in 2nd arg

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- status: open -> languishing ___ Python tracker <http://bugs.python.org/issue17157> ___ ___ Python-bugs-list mailing list Un

[issue17157] issubclass() should accept iterables in 2nd arg

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- status: languishing -> open ___ Python tracker <http://bugs.python.org/issue17157> ___ ___ Python-bugs-list mailing list Un

[issue17158] help() module searcher text improvement

2013-02-08 Thread Ramchandra Apte
New submission from Ramchandra Apte: help("modules spam") prints out "Here is a list of matching modules. Enter any module name to get more help." before it has even found the modules. This gives the impression that it has found the modules yet it hasn't printed

[issue17158] help() module searcher text is misleading

2013-02-08 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: help() module searcher text improvement -> help() module searcher text is misleading ___ Python tracker <http://bugs.python.org/issu

[issue17168] test.support 3.x docs mentions stringio.stringio

2013-02-09 Thread Ramchandra Apte
New submission from Ramchandra Apte: StringIO.StringIO has been renamed to io.StringIO in 3.x. Attached is a patch with the corrected version which mentions io.StringIO. -- assignee: docs@python components: Documentation files: issue.patch keywords: patch messages: 181729 nosy: docs

[issue17157] issubclass() should accept iterables in 2nd arg

2013-02-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Just so you know, I'm neutral on this idea. I think it should at least accept sequences though. -- ___ Python tracker <http://bugs.python.org/is

[issue17168] test.support 3.x docs mentions stringio.stringio

2013-02-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: Please commit or review. This is *very* trivial. -- ___ Python tracker <http://bugs.python.org/issue17168> ___ ___ Python-bug

<    1   2   3   4   >