[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

[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-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-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/

[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



[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