[issue47261] RFC: Clarify usage of macros for PySequence_Fast within the Limited C API

2022-04-08 Thread Rohit Goswami
Change by Rohit Goswami : -- title: RFC: Clarify Limited API macros for PySequence_Fast -> RFC: Clarify usage of macros for PySequence_Fast within the Limited C API ___ Python tracker <https://bugs.python.org/issu

[issue47261] RFC: Clarify Limited API macros for PySequence_Fast

2022-04-08 Thread Rohit Goswami
Rohit Goswami added the comment: Perhaps to be clear, there are two possibilities: 1. `PySequence_Fast` should be removed from the Limited API 2. All macros used with `PySequence_Fast` are valid for use in the context of the Limited API In either case the documentation should need to be

[issue47261] RFC: Clarify Limited API macros for PySequence_Fast

2022-04-08 Thread Rohit Goswami
Change by Rohit Goswami : -- assignee: -> docs@python components: +C API, Documentation nosy: +docs@python ___ Python tracker <https://bugs.python.org/issu

[issue47261] RFC: Clarify Limited API macros for PySequence_Fast

2022-04-08 Thread Rohit Goswami
New submission from Rohit Goswami : The `current documentation`_ of the Python-C API mentions that ``PySequence_Fast`` is part of the limited API. However, this may be a typo as all the functions interacting with a ``PySequence_Fast`` object are macros, e.g. `PySequence_Fast_GET_SIZE

[issue42001] Deprecate `typing.io` Wrapper Namespace

2020-10-10 Thread Kaushal Rohit
New submission from Kaushal Rohit : The `typing` module has a wrapper namespace in it called `typing.io` which contain I/O stream types. These types are now a part of the `typing` module itself. While we are at it, should we also deprecate `typing.re`? -- components: Library (Lib

[issue41938] concurrent.futures.wait calls len() on an possible iterable

2020-10-04 Thread Kaushal Rohit
Change by Kaushal Rohit : -- keywords: +patch pull_requests: +21553 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22555 ___ Python tracker <https://bugs.python.org/issu

[issue41938] concurrent.futures.wait calls len() on an possible iterable

2020-10-04 Thread Kaushal Rohit
New submission from Kaushal Rohit : `fs` argument could be an iterable, and calling len on it would raise an Exception. We are converting `fs` into a set anyways for set difference, and that too twice. we can just put an `fs = set(fs)`. Let me know if we choose to go with that and I will

[issue40242] zmq mysql core dump

2020-04-09 Thread Rohit Gupta
Rohit Gupta added the comment: For the time being, changing the order of import is solving the problem. -- ___ Python tracker <https://bugs.python.org/issue40

[issue40242] zmq mysql core dump

2020-04-09 Thread Rohit Gupta
New submission from Rohit Gupta : # pyzmq==19.0.0 # zmq==0.0.0 # mysql-connector-python==8.0.19 # Following code is resulting in # Segmentation fault (core dumped) ## import zmq import mysql.connector database = "dev" host = "192.168.56.1&qu

[issue39545] await is not supported in f-string in 3.6

2020-02-04 Thread Rohit Sanjay
Rohit Sanjay added the comment: Hey, I'd like to work on this issue. Seems like an easy fix. Can you please help me out with where I will need to add the documentation for this? -- nosy: +rohitsanjay ___ Python tracker <https://bugs.py

[issue38773] Fatal Python error: Aborted

2019-11-11 Thread Rohit
New submission from Rohit : Python is crashing frequently. The frequency lies anywhere in between 10 hours to 24 hours of running the program. Packages used in my program: numba.cuda, numpy, sklearn.cluster, cv2, falcon, multiprocessing, faulthandler Priority: High -- components

[issue36425] Add Simplified Chinese to the language switcher

2019-03-25 Thread Rohit travels and tours
Change by Rohit travels and tours : -- type: -> resource usage ___ Python tracker <https://bugs.python.org/issue36425> ___ ___ Python-bugs-list mai

[issue36102] TestSharedMemory fails on AMD64 FreeBSD CURRENT Shared 3.x

2019-02-25 Thread Rohit travels and tours
Change by Rohit travels and tours : -- type: -> resource usage ___ Python tracker <https://bugs.python.org/issue36102> ___ ___ Python-bugs-list mai

[issue36013] test_signal fails in AMD64 Debian PGO 3.x

2019-02-16 Thread Rohit travels and tours
Change by Rohit travels and tours : Added file: https://bugs.python.org/file48145/19592 ___ Python tracker <https://bugs.python.org/issue36013> ___ ___ Python-bugs-list m

[issue35929] rtat.net

2019-02-07 Thread Rohit travels and tours
Change by Rohit travels and tours : -- assignee: docs@python components: 2to3 (2.x to 3.x conversion tool), Build, Demos and Tools, Distutils, Documentation, Extension Modules, FreeBSD, Library (Lib), SSL, email, macOS nosy: barry, docs@python, dstufft, eric.araujo, koobs, ned.deily

[issue35862] Change the environment for a new process

2019-01-30 Thread Rohit travels and tours
Change by Rohit travels and tours : -- hgrepos: +379 Added file: https://bugs.python.org/file48089/bq-nix.manifest ___ Python tracker <https://bugs.python.org/issue35

[issue35862] Change the environment for a new process

2019-01-30 Thread Rohit travels and tours
Rohit travels and tours added the comment: rtat.net -- nosy: +roufique7 Added file: https://bugs.python.org/file48088/bq-nix.snapshot.json ___ Python tracker <https://bugs.python.org/issue35

[issue35862] Change the environment for a new process

2019-01-30 Thread Rohit travels and tours
Change by Rohit travels and tours : Added file: https://bugs.python.org/file48087/core-nix.snapshot.json ___ Python tracker <https://bugs.python.org/issue35862> ___ ___

[issue35522] os.stat().st_ctime and time.time() mismatch

2018-12-18 Thread Rohit Biswas
Rohit Biswas added the comment: Thanks for your reply. It makes sense to me and was very informative. I understand and would explain the problem in the bug tracker itself in the future. I reported this as a potential bug but it seems like it isn't really. So, I'm resolving it as

[issue35522] os.stat().st_ctime and time.time() mismatch

2018-12-17 Thread Rohit Biswas
New submission from Rohit Biswas : Related Stack Overflow Question: https://stackoverflow.com/questions/53810984/mismatch-between-file-creation-time-and-current-time-in-python -- components: Library (Lib) messages: 332040 nosy: belopolsky, rbiswas143 priority: normal severity: normal

[issue31507] email.utils.parseaddr has no docstring

2017-09-24 Thread Rohit Balasubramanian
Changes by Rohit Balasubramanian <98bro...@gmail.com>: -- pull_requests: +3721 ___ Python tracker <https://bugs.python.org/issue31507> ___ ___ Python-bugs-

[issue31507] email.utils.parseaddr has no docstring

2017-09-24 Thread Rohit Balasubramanian
Changes by Rohit Balasubramanian <98bro...@gmail.com>: -- pull_requests: +3719 ___ Python tracker <https://bugs.python.org/issue31507> ___ ___ Python-bugs-

[issue31507] email.utils.parseaddr has no docstring

2017-09-18 Thread Rohit Balasubramanian
Rohit Balasubramanian added the comment: I have submitted a pull request for the changes to email.utils.parseaddr. -- keywords: +patch nosy: +rohitb pull_requests: +3640 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue30307] https://docs.python.org/3/tutorial/introduction.html#strings Section 3.1.2 doc issue

2017-05-08 Thread rohit singh
New submission from rohit singh: The documentation says: >>> '"Isn\'t," she said.' '"Isn\'t," she said.' It should be: >>> '"Isn\'t," she said.' '"Isn't," she said.' -

[issue26876] Extend MSVCCompiler class to respect environment variables

2017-02-03 Thread Rohit Jamuar
Rohit Jamuar added the comment: Steve, I've limited the changes to _msvccompiler for the master-branch's patch. Is it alright? -- ___ Python tracker <http://bugs.python.o

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-12-13 Thread Rohit Jamuar
Changes by Rohit Jamuar : Added file: http://bugs.python.org/file45881/distutils_patch_master.patch ___ Python tracker <http://bugs.python.org/issue26876> ___ ___ Pytho

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-12-13 Thread Rohit Jamuar
Changes by Rohit Jamuar : Removed file: http://bugs.python.org/file45880/distutils_patch_master.patch ___ Python tracker <http://bugs.python.org/issue26876> ___ ___ Pytho

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-12-13 Thread Rohit Jamuar
Changes by Rohit Jamuar : Added file: http://bugs.python.org/file45880/distutils_patch_master.patch ___ Python tracker <http://bugs.python.org/issue26876> ___ ___ Pytho

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-12-13 Thread Rohit Jamuar
Changes by Rohit Jamuar : Removed file: http://bugs.python.org/file42725/distutils_patch_master.patch ___ Python tracker <http://bugs.python.org/issue26876> ___ ___ Pytho

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-12-02 Thread Rohit Jamuar
Rohit Jamuar added the comment: Bump! The changes, that Steve was asking for, have been incorporated. If something was missed, please inform. Otherwise, could this be merged? -- ___ Python tracker <http://bugs.python.org/issue26

[issue28828] Connection reset by peer error when installing python packages

2016-11-28 Thread Rohit Khairnar
New submission from Rohit Khairnar: We are seeing intermittent "connection reset by peer" connecting to pypi.python.org. Pip install "connection reset by peer" I am a Network Engineer at Hulu and our Devs are seeing error 104 connection resets by peer errors. We thoug

[issue27277] Fatal Python error: Segmentation fault in test_exceptions

2016-06-11 Thread Rohit Mediratta
Rohit Mediratta added the comment: Leads to the same Segfault [/loc/rom/pyd/cpython] $ ./python -m test test_exceptions Run tests sequentially 0:00:00 [1/1] test_exceptions Fatal Python error: Segmentation fault Current thread 0x7fb466572700 (most recent call first): File "/

[issue27277] Fatal Python error: Segmentation fault in test_exceptions

2016-06-11 Thread Rohit Mediratta
Rohit Mediratta added the comment: It's set to 1000, I didnt change during install, so it's likely set to the default value. >>> import sys >>> sys.getrecursionlimit() 1000 I also have a lot of memory free (87G) to run scripts (should be able to handle without

[issue27277] Fatal Python error: Segmentation fault in test_exceptions

2016-06-09 Thread Rohit Mediratta
Rohit Mediratta added the comment: Debugged with gdb and found the following (gdb) run ../coveragepy/ run --pylib Lib/test/regrtest.py test_exceptions Starting program: /local/romedira/pydev/cpython/python ../coveragepy/ run --pylib Lib/test/regrtest.py test_exceptions [Thread debugging

[issue27277] Fatal Python error: Segmentation fault in test_exceptions

2016-06-09 Thread Rohit Mediratta
New submission from Rohit Mediratta: Fresh clone and running test_exceptions testcase caught a Seg fault. This was being run on a Centos VM. [/loc/rom/pyd/cpython] $ ./python Python 3.6.0a1+ (default:12d939477b4f, Jun 7 2016, 17:32:31) [GCC 4.4.6 20120305 (Red Hat 4.4.6-4)] on linux Type

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Rohit Jamuar
Changes by Rohit Jamuar : -- versions: +Python 2.7 -Python 3.5, Python 3.6 Added file: http://bugs.python.org/file42726/distutils_patch_27.patch ___ Python tracker <http://bugs.python.org/issue26

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Rohit Jamuar
Changes by Rohit Jamuar : -- versions: +Python 3.6 -Python 2.7 Added file: http://bugs.python.org/file42725/distutils_patch_master.patch ___ Python tracker <http://bugs.python.org/issue26

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Rohit Jamuar
Changes by Rohit Jamuar : Removed file: http://bugs.python.org/file42642/msvc_respect_env_flags.patch ___ Python tracker <http://bugs.python.org/issue26876> ___ ___ Pytho

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-02 Thread Rohit Jamuar
Rohit Jamuar added the comment: Just so that I understand it clearly - Inside MSVCCompiler class (in _msvccompiler.py / msvccompiler.py / msvc9compiler.py ), current implementation of find_exe() finds compiler / linker / ... after parsing PATH. Should the changes be so, that if

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-04-28 Thread Rohit Jamuar
New submission from Rohit Jamuar: The UnixCompiler class respects flags (CC, LD, AR, CFLAGS and LDFLAGS) set to the environment, whereas MSVCCompiler class does not. This change allows building CPython and any module that invokes distutils to utilize flags and executables that have been set

[issue25528] Attempt to further increase test coverage of calendar module

2015-11-21 Thread Rohit Mediratta
Rohit Mediratta added the comment: Thanks for the comments. I did indeed have the patch reversed. I've resolved it here. Martin: I had the locale=None case in the patch. -- Added file: http://bugs.python.org/file41109/mywork_update.patch ___ P

[issue25528] Attempt to further increase test coverage of calendar module

2015-11-01 Thread Rohit Mediratta
New submission from Rohit Mediratta: Opened to submit a patch. - make patchcheck succeeded - full testsuite succeeded - Old coverage Lib/calendar.py 375 5486% 511, 519, 541, 608-699, 703 - New coverage Lib/calendar.py 375 5186% 608-699, 703