[issue38948] os.path.ismount() returns true in python 3.7.4 and false in 2.7.14

2019-12-01 Thread Ankur
Change by Ankur : -- title: os.module.ismount() returns true in python 3.7.4 and false in 2.7.14 -> os.path.ismount() returns true in python 3.7.4 and false in 2.7.14 ___ Python tracker <https://bugs.python.org/issu

[issue38948] os.module.ismount() returns true in python 3.7.4 and false in 2.7.14

2019-12-01 Thread Ankur
New submission from Ankur : Tested with following lines of code on windows 10: import os.path print(os.path.ismount("F:")) The above statement returns true in python 3.7.4 and false in 2.7.14 Note that F: drive does not have any mount points. Somehow, python 3.7.4 returns true for

[issue27739] add math.sign/signum

2016-08-11 Thread Ankur Dedania
Ankur Dedania added the comment: sign/signum isn't the same as copysign, and doesn't support complex numbers -- ___ Python tracker <http://bugs.python.o

[issue27739] add math.sign/signum

2016-08-11 Thread Ankur Dedania
New submission from Ankur Dedania: Add a new function to the math module sign/signum https://en.wikipedia.org/wiki/Sign_function -- messages: 272459 nosy: AnkurDedania priority: normal severity: normal status: open title: add math.sign/signum type: enhancement versions: Python 3.6

[issue27722] Path.touch's keyword argument mode documented incorrectly

2016-08-09 Thread Ankur Dedania
Ankur Dedania added the comment: Path.touch is also incorrect in python 3.4 documents -- status: closed -> open versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue27722] Path.touch's keyword argument mode documented incorrectly

2016-08-09 Thread Ankur Dedania
New submission from Ankur Dedania: Path.touch's keyword argument mode documented incorrectly. In the documents, it shows keyword argument mode defaulted to 0o777, however within the code it is set to 0o666. -- assignee: docs@python components: Documentation messages: 272269

[issue19217] Calling assertEquals for moderately long list takes too long

2014-05-19 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue19217> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19217] Calling assertEquals for moderately long list takes too long

2014-05-19 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +ankurankan ___ Python tracker <http://bugs.python.org/issue19217> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16293] curses.ungetch raises OverflowError when given -1

2013-07-17 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue16293> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3354] Improve error reporting for the argument parsing C API

2013-06-19 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue3354> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue935117] pkgutil doesn't understand case-senseless filesystems

2013-06-19 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue935117> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8083] urllib proxy interface is too limited

2013-05-28 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue8083> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17733] Unit tests for RFC 2231 parsing code

2013-04-14 Thread Ankur Ankan
Changes by Ankur Ankan : -- components: Tests nosy: Ankur.Ankan, r.david.murray priority: normal severity: normal status: open title: Unit tests for RFC 2231 parsing code type: enhancement ___ Python tracker <http://bugs.python.org/issue17

[issue17369] Message.get_filename produces exception if the RFC2231 encoding is ill-formed

2013-04-12 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue17369> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15518] Provide test coverage for filecmp.dircmp.report methods.

2013-03-09 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue15518> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10595] Adding a syslog.conf reader in syslog

2013-03-09 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue10595> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13477] tarfile module should have a command line

2013-03-08 Thread Ankur Ankan
Ankur Ankan added the comment: I am still unclear about the outcomes of the discussion. I am confused which features need to be kept and which are to be removed. > Ankur, could you submit a contributor agreement? I will submit it to

[issue1186900] nntplib shouldn't raise generic EOFError

2013-03-07 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue1186900> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13477] tarfile module should have a command line

2013-03-07 Thread Ankur Ankan
Ankur Ankan added the comment: > +parser.add_argument('--gz', '--gunzip', '--gzip', '--tgz', '-z', > +'--ungzip', action = 'store_true', > +help = 'gz comp

[issue13477] tarfile module should have a command line

2013-03-07 Thread Ankur Ankan
Ankur Ankan added the comment: Thanks for your comments Serhiy. I have improved the patch according to your comments. Please have a look. And I am writing tests. -- Added file: http://bugs.python.org/file29337/issue_13477_v2 ___ Python tracker

[issue15542] Documentation incorrectly suggests __init__ called after direct __new__ call

2013-03-02 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue15542> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13477] tarfile module should have a command line

2013-03-02 Thread Ankur Ankan
Ankur Ankan added the comment: I was also working on this issue so thought I should also submit my patch. Has a few extra features from berker.peksag's patch: 1) the name of the files to be extracted can be specified 2) output directory can be specified for extracting files. --

[issue13477] tarfile module should have a command line

2013-02-27 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue13477> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2209] mailbox module doesn't support compressed mbox

2013-02-27 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue2209> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16669] Docstrings for namedtuple

2013-02-27 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue16669> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17099] Raise ValueError when __loader__ not defined for importlib.find_loader()

2013-02-19 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue17099> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9856] Change object.__format__(s) where s is non-empty to a TypeError

2013-02-15 Thread Ankur Ankan
Changes by Ankur Ankan : -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue9856> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17178] Clarify empty iterable result in any/all.__doc__, as in manual

2013-02-15 Thread Ankur Ankan
Changes by Ankur Ankan : Added file: http://bugs.python.org/file29081/patch.diff ___ Python tracker <http://bugs.python.org/issue17178> ___ ___ Python-bugs-list mailin

[issue17178] Clarify empty iterable result in any/all.__doc__, as in manual

2013-02-15 Thread Ankur Ankan
Changes by Ankur Ankan : Removed file: http://bugs.python.org/file29080/patch.diff ___ Python tracker <http://bugs.python.org/issue17178> ___ ___ Python-bugs-list mailin

[issue17178] Clarify empty iterable result in any/all.__doc__, as in manual

2013-02-15 Thread Ankur Ankan
Changes by Ankur Ankan : -- keywords: +patch Added file: http://bugs.python.org/file29080/patch.diff ___ Python tracker <http://bugs.python.org/issue17

[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-15 Thread Ankur Ankan
Ankur Ankan added the comment: I guess I have found it. It's bltinmodule.c . -- ___ Python tracker <http://bugs.python.org/issue17178> ___ ___ Python-bugs-l

[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-15 Thread Ankur Ankan
Ankur Ankan added the comment: I am a beginner and want to write the patch for this issue, so please help me find the right C file. Thanks. -- nosy: +Ankur.Ankan ___ Python tracker <http://bugs.python.org/issue17