[issue6094] Python fails to build with Subversion 1.7

2014-06-24 Thread Suman

Suman added the comment:

I am trying to install Python 2.7.7 or 2.7.3 in one of my linux machine which 
has RHEL 6.4.

  I am getting the same error, that is mentioned in this bug. I am pasting it 
below. Please let me know, what should i do here. 

ser Python-2.7.7]# make
gcc -pthread -c -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall 
-Wstrict-prototypes  -I. -IInclude -I./Include   -DPy_BUILD_CORE \
  -DSVNVERSION="\"`LC_ALL=C echo Unversioned directory`\"" \
  -DHGVERSION="\"`LC_ALL=C `\"" \
  -DHGTAG="\"`LC_ALL=C `\"" \
  -DHGBRANCH="\"`LC_ALL=C `\"" \
  -o Modules/getbuildinfo.o ./Modules/getbuildinfo.c
gcc.orig: directory": No such file or directory
: warning: missing terminating " character
./Modules/getbuildinfo.c: In function ?_Py_svnversion?:
./Modules/getbuildinfo.c:63: error: missing terminating " character
./Modules/getbuildinfo.c:63: error: expected expression before ?;? token
make: *** [Modules/getbuildinfo.o] Error 1

--
nosy: +suman_pas

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



[issue13013] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PyTuple_Pack is not freed on one error path.

--
files: python_patch1
messages: 144330
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23198/python_patch1

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



[issue13014] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PyList_New is not freed on one error path.

--
files: python_patch2
messages: 144331
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23199/python_patch2

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



[issue13015] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PyDict_Type.tp_repr is not freed on one error 
path.

--
files: python_patch3
messages: 144332
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23200/python_patch3

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



[issue13016] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PySequence_Fast is not freed on one error 
path.

--
files: python_patch4
messages: 144333
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23201/python_patch4

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



[issue13017] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using conv_content_model is not freed on one error 
path.

--
files: python_patch5
messages: 144334
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23202/python_patch5

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



[issue13018] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PyObject_CallObjec is not freed on one
or more error paths.

--
files: python_patch6
messages: 144335
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23203/python_patch6

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



[issue13019] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

1. Something that is allocated using PyObject_GetIter is not freed on one error 
path.
2. Something that is allocated using PyByteArray_FromStringAndSize is not freed 
on one error path

--
files: python_patch7
messages: 144336
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23204/python_patch7

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



[issue13020] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PySequence_Fast is not freed on one error 
path.

--
files: python_patch8
messages: 144337
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23205/python_patch8

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



[issue13021] Resource is not released before returning from the functiion

2011-09-20 Thread Suman Saha

New submission from Suman Saha :

Something that is allocated using PyUnicode_DecodeFSDefault is not freed on one 
error path.

--
files: python_patch9
messages: 144338
nosy: Suman.Saha
priority: normal
severity: normal
status: open
title: Resource is not released before returning from the functiion
type: resource usage
Added file: http://bugs.python.org/file23206/python_patch9

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



[issue19873] There is a duplicate function in Lib/test/test_pathlib.py

2014-02-25 Thread NAVNEET SUMAN

NAVNEET SUMAN added the comment:

made patch according to Ezio Melotti

--
keywords: +patch
nosy: +NAVNEET.SUMAN
Added file: http://bugs.python.org/file34224/remover_duplicate_function.patch

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



[issue19873] There is a duplicate function in Lib/test/test_pathlib.py

2015-12-29 Thread NAVNEET SUMAN

NAVNEET SUMAN added the comment:

Thanks.. Finally after two years the patch got submitted. :D

--

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