[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: Interpreter Core
files: python_error.txt
messages: 356410
nosy: rohitlal.125...@gmail.com
priority: normal
severity: normal
status: open
title: Fatal Python error: Aborted
type: crash
versions: Python 3.6
Added file: https://bugs.python.org/file48708/python_error.txt

___
Python tracker 
<https://bugs.python.org/issue38773>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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`, `PySequence_Fast_GET_ITEM` etc.

If this is indeed a documentation bug I'm happy to open a PR to fix this once 
consensus is reached.






.. _`current documentation` : 
https://docs.python.org/3/c-api/stable.html#contents-of-limited-api

--
messages: 416989
nosy: rgoswami
priority: normal
severity: normal
status: open
title: RFC: Clarify Limited API macros for PySequence_Fast

___
Python tracker 
<https://bugs.python.org/issue47261>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue47261>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 clarified.

The only situation where no changes would result is if:
- `PySequence_Fast` is part of the Limited API, but must be treated the same as 
a regular `PySequence` object
  + Since only `PySequence_Size` and other variants can be used in the context 
of the Limited API

This is actually also still confusing and should be mentioned clearly.

--

___
Python tracker 
<https://bugs.python.org/issue47261>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue47261>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.python.org/issue39545>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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"
port = 3306
user = "user"
pwd = "user"
print(database, host, port, user, pwd)
db  = mysql.connector.connect(host=host, port=int(port), user=user, 
password=pwd, database=database, autocommit=False)
cur = db.cursor()
print("Connected")

--
components: Library (Lib)
messages: 366083
nosy: Rohit Gupta
priority: normal
severity: normal
status: open
title: zmq mysql core dump
type: crash
versions: Python 3.6

___
Python tracker 
<https://bugs.python.org/issue40242>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue40242>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 make a PR ASAP.

Thanks.

--
components: Library (Lib)
messages: 377991
nosy: rohitkg98
priority: normal
severity: normal
status: open
title: concurrent.futures.wait calls len() on an possible iterable
type: behavior
versions: Python 3.10

___
Python tracker 
<https://bugs.python.org/issue41938>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue41938>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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)
messages: 378412
nosy: rohitkg98
priority: normal
severity: normal
status: open
title: Deprecate `typing.io` Wrapper Namespace
type: behavior
versions: Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9

___
Python tracker 
<https://bugs.python.org/issue42001>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue31507>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
status: open
title: os.stat().st_ctime and time.time() mismatch
type: behavior
versions: Python 2.7, Python 3.7, Python 3.8

___
Python tracker 
<https://bugs.python.org/issue35522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 not a bug.

--
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue35522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.'

--
assignee: docs@python
components: Documentation
messages: 293246
nosy: docs@python, rohit singh
priority: normal
severity: normal
status: open
title: https://docs.python.org/3/tutorial/introduction.html#strings Section 
3.1.2 doc issue
versions: Python 3.6

___
Python tracker 
<http://bugs.python.org/issue30307>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 thought it was a firewall issue but even after 
upgrading it we are still seeing the issues. I can get more details from Devs 
if needed.

regards,
Rohit

--
components: Build
files: pypi.pcap
messages: 281932
nosy: Rohit Khairnar
priority: normal
severity: normal
status: open
title: Connection reset by peer error when installing python packages
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file45680/pypi.pcap

___
Python tracker 
<http://bugs.python.org/issue28828>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue26876>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue26876>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 "help", "copyright", "credits" or "license" for more information.
>>> 


[/loc/rom/pyd/cpython] $ ./python ../coveragepy/ run --pylib 
Lib/test/regrtest.py  test_exceptions 
Run tests sequentially
0:00:00 [1/1] test_exceptions
Fatal Python error: Segmentation fault

Current thread 0x7fc7324d1700 (most recent call first):
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/

[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 using libthread_db enabled]
Run tests sequentially
0:00:00 [1/1] test_exceptions

Program received signal SIGSEGV, Segmentation fault.
0x005bf1e8 in PyEval_EvalFrameEx (f=Cannot access memory at address 
0x7f7fd438
) at Python/ceval.c:798
798 {
Missing separate debuginfos, use: debuginfo-install 
glibc-2.12-1.80.el6_3.6.x86_64 keyutils-libs-1.4-4.el6.x86_64 
krb5-libs-1.9-33.el6_3.3.x86_64 libcom_err-1.41.12-12.el6.x86_64 
libselinux-2.0.94-5.3.el6.x86_64 openssl-1.0.1e-16.el6_5.1.x86_64 
zlib-1.2.3-29.el6.x86_64

--

___
Python tracker 
<http://bugs.python.org/issue27277>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 running into issues)

[/loc/rom/pyd/cpython] $ free -m
 total   used   free sharedbuffers cached
Mem: 96870   9849  87021  0716   7512
-/+ buffers/cache:   1620  95250
Swap:0  0  0

--

___
Python tracker 
<http://bugs.python.org/issue27277>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py", line 490 in 
f
  File "/local/romedira/pydev/cpython/Lib/test/test_exceptions.py

[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

--
components: Tests
files: mywork.patch
keywords: patch
messages: 253836
nosy: Rohit Mediratta
priority: normal
severity: normal
status: open
title: Attempt to further increase test coverage of calendar module
type: enhancement
versions: Python 3.6
Added file: http://bugs.python.org/file40916/mywork.patch

___
Python tracker 
<http://bugs.python.org/issue25528>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<http://bugs.python.org/issue25528>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 to the environment. Inclusion of this change 
would ensure MSVCCompiler's behavior to be same as that of UnixCompiler and 
would also allow using a different set of compiler / linker / archiver, on 
Windows, without having the necessity for implementing separate compiler 
classes - using environment variables it should be possible to use a separate 
set of build executables - for example icl, clang, etc.

--
components: Distutils
files: msvc_respect_env_flags.patch
keywords: patch
messages: 264439
nosy: dstufft, eric.araujo, r.david.murray, rohitjamuar, zach.ware
priority: normal
severity: normal
status: open
title: Extend MSVCCompiler class to respect environment variables
type: enhancement
versions: Python 2.7, Python 3.5
Added file: http://bugs.python.org/file42642/msvc_respect_env_flags.patch

___
Python tracker 
<http://bugs.python.org/issue26876>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 DISTUTILS_USE_SDK is set to the environment, the values 
set to CC / AR / LD, etc. are used verbatim? Or did you mean to say, that just 
as CC, LD and AR are being read from the environment, the same way rc.exe, 
mc.exe and mt.exe should be read as well, in case DISTUTILS_USE_SDK is set to 
the environment?

--

___
Python tracker 
<http://bugs.python.org/issue26876>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue26876>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue26876>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue35862>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue35862>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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, 
r.david.murray, ronaldoussoren, roufique7
priority: normal
severity: normal
status: open
title: rtat.net
type: resource usage
versions: Python 3.6, Python 3.7, Python 3.8

___
Python tracker 
<https://bugs.python.org/issue35929>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com