[issue17227] devguide: buggy heading numbers

2013-02-21 Thread Kushal Das
Kushal Das added the comment: Adding a patch to fix this issue. -- keywords: +patch nosy: +kushaldas Added file: http://bugs.python.org/file29155/issue17227.patch ___ Python tracker <http://bugs.python.org/issue17

[issue17256] code example in C API docsshould be highlighted

2013-02-21 Thread Kushal Das
Kushal Das added the comment: Following patch solves the problem. -- keywords: +patch nosy: +kushaldas Added file: http://bugs.python.org/file29154/issue17256.patch ___ Python tracker <http://bugs.python.org/issue17

[issue17080] A better error message for float()

2013-01-30 Thread Kushal Das
Changes by Kushal Das : -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue17080> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16799] switch regrtest from getopt options to argparse Namespace

2013-01-04 Thread Kushal Das
Kushal Das added the comment: The patches look good. Applied successfully and tests ran ok. -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16

[issue16493] Document the 'optimize' argument to compile()

2012-11-19 Thread Kushal Das
Kushal Das added the comment: I guess somebody already did the work http://docs.python.org/3.4/library/functions.html?highlight=compile#compile ? -- ___ Python tracker <http://bugs.python.org/issue16

[issue16493] Document the 'optimize' argument to compile()

2012-11-17 Thread Kushal Das
Kushal Das added the comment: I will submit a patch if no one is working on it. -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16493> ___ ___

[issue16459] sys.stdout.write printing length of string

2012-11-11 Thread Kushal Das
Kushal Das added the comment: sys.stdout.write returns the length of the string it printed. try these: x = sys.stdout.write("abc") print x or from console python -c 'import sys ; sys.stdout.write("abc")' -- nosy: +kushaldas

[issue16268] dir(closure) claims that a closure has no __dir__, only to work later after manually invoking __dir__ from its type

2012-10-17 Thread Kushal Das
Changes by Kushal Das : -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16268> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16245] Update html.entities.html5 dictionary and parseentities.py

2012-10-16 Thread Kushal Das
Changes by Kushal Das : -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16245> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16238] Automatically remove build directory when build options changed

2012-10-15 Thread Kushal Das
Changes by Kushal Das : -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16238> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16125] open accepts arbitrary mode strings as long as they contain U

2012-10-09 Thread Kushal Das
Kushal Das added the comment: So, should I submit a new patch which will just put a warning ? -- ___ Python tracker <http://bugs.python.org/issue16125> ___ ___

[issue16061] performance regression in string replace for 3.3

2012-10-09 Thread Kushal Das
Changes by Kushal Das : -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16061> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14039] Add "metavar" argument to add_subparsers() in argparse

2012-10-09 Thread Kushal Das
Changes by Kushal Das : -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue14039> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15880] os.path.split() and long UNC names

2012-10-08 Thread Kushal Das
Kushal Das added the comment: splitunc is deprecated since 3.1. It is also written in the code that "Paths containing drive letters never have an UNC part" -- nosy: +kushaldas ___ Python tracker <http://bugs.python.o

[issue16115] test that executable arg to Popen() takes precedence over args

2012-10-06 Thread Kushal Das
Kushal Das added the comment: On Saturday, October 6, 2012, Andrew Svetlov wrote: > > Andrew Svetlov added the comment: > > Committed. Thank you, Kushal Das. > BTW, please fill http://www.python.org/psf/contrib/ as contributor of > Python project. > We would to get that agr

[issue16137] Using time.asctime() with an array with negative tm_hour causes Python Crash.

2012-10-04 Thread Kushal Das
Kushal Das added the comment: Can not reproduce this on 2.7.3 on Fedora 17, x86_64. -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16

[issue16130] "Porting to Python 3.3" needs to be fixed in "What's new In Python 3.4"

2012-10-04 Thread Kushal Das
Kushal Das added the comment: Documentation patch to show correct Python version. -- keywords: +patch nosy: +kushaldas Added file: http://bugs.python.org/file27418/issue_16130.patch ___ Python tracker <http://bugs.python.org/issue16

[issue16125] open accepts arbitrary mode strings as long as they contain U

2012-10-04 Thread Kushal Das
Kushal Das added the comment: Patch to update mode parsing of open call. All tests seem to be running ok. File changed: Objects/fileobject.c -- keywords: +patch Added file: http://bugs.python.org/file27411/open_mode2.patch ___ Python tracker <h

[issue16125] open accepts arbitrary mode strings as long as they contain U

2012-10-04 Thread Kushal Das
Kushal Das added the comment: I am working on patch for this. -- nosy: +kushaldas ___ Python tracker <http://bugs.python.org/issue16125> ___ ___ Python-bugs-list m

[issue16057] Subclasses of JSONEncoder should not be insturcted to call JSONEncoder.decode

2012-10-03 Thread Kushal Das
Kushal Das added the comment: The previous patch should be back committed to all 3.x and 2.7 branch. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16057] Subclasses of JSONEncoder should not be insturcted to call JSONEncoder.decode

2012-10-03 Thread Kushal Das
Kushal Das added the comment: Patch to update docstring and documentation with explicit saying that calling JSONEncoder.default raises a TypeError -- keywords: +patch Added file: http://bugs.python.org/file27408/explicit_json_doc_update_for_encoder_default.patch

[issue16115] test that executable arg to Popen() takes precedence over args[0] arg

2012-10-03 Thread Kushal Das
Kushal Das added the comment: Attached patch which has a new test called test_executable_precedence to test precedence of executable argument over args[0]. -- keywords: +patch nosy: +kushaldas Added file: http://bugs.python.org/file27407/executable_precedence.patch

[issue16057] Subclasses of JSONEncoder should not be insturcted to call JSONEncoder.decode

2012-09-28 Thread Kushal Das
Kushal Das added the comment: Ok, I will submit a patch. -- ___ Python tracker <http://bugs.python.org/issue16057> ___ ___ Python-bugs-list mailing list Unsub

[issue16074] bad error message in os.rename

2012-09-28 Thread Kushal Das
Changes by Kushal Das : Removed file: http://bugs.python.org/file27342/os_rename.patch ___ Python tracker <http://bugs.python.org/issue16074> ___ ___ Python-bugs-list m

[issue16074] bad error message in os.rename

2012-09-28 Thread Kushal Das
Kushal Das added the comment: Just for record the same issue can be seen in a Linux box also. I tested in a Fedora 17 system. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16074] bad error message in os.rename

2012-09-28 Thread Kushal Das
Kushal Das added the comment: Now the printing the source name instead of the destination as the bug described. -- keywords: +patch nosy: +kushaldas Added file: http://bugs.python.org/file27342/os_rename.patch ___ Python tracker <h

[issue16053] "strict" parameter is not documented in csv module

2012-09-28 Thread Kushal Das
Kushal Das added the comment: Updated with new patch -- Added file: http://bugs.python.org/file27341/csv_doc.patch ___ Python tracker <http://bugs.python.org/issue16

[issue16071] fix link to email.message.Message in mailbox docs

2012-09-28 Thread Kushal Das
Kushal Das added the comment: But the whole 18.4.2 is mount mailbox.Message so, it seems to be correct documentation. email.Message.Message is properly mentioned in the 4th line properly. I don't think it is bug. -- nosy: +kushaldas ___ P

[issue16057] Subclasses of JSONEncoder should not be insturcted to call JSONEncoder.decode

2012-09-28 Thread Kushal Das
Kushal Das added the comment: The implementation clearly says that default method should return a serializable object or calls the base implementation to raise TypeError. So I don't think any of the examples is a bug. -- nosy: +kushaldas ___ P

[issue16053] "strict" parameter is not documented in csv module

2012-09-28 Thread Kushal Das
Kushal Das added the comment: csv.Dialect.strict is now documented. -- keywords: +patch nosy: +kushaldas Added file: http://bugs.python.org/file27340/csv_doc.patch ___ Python tracker <http://bugs.python.org/issue16

[issue15615] More tests for JSON decoder to test Exceptions

2012-08-11 Thread Kushal Das
Kushal Das added the comment: Contributor's agreement signed and sent to the given email address. Thanks for the input. -- ___ Python tracker <http://bugs.python.org/is

[issue15615] More tests for JSON decoder to test Exceptions

2012-08-10 Thread Kushal Das
New submission from Kushal Das: Added two more tests in json module to test exception cases. test_extra_data: this test checks the error condition when we have extra data in the stream. test_invalid_escape: this test checks for the invalid escape sequence in the stream

<    1   2