[issue22947] Enable 'imageop' - "Multimedia Srvices Feature module" for 64-bit platform

2014-11-26 Thread pankaj.s01

New submission from pankaj.s01:

Hi,
'imageop' is default disable in Python-2.7.8 for 64-bit platform.
i have enable and test on x_86 64-bit architecture. it's working fine.and it's 
unit test is also ok.

The respective patch has been attached and test log as shown 
below . 

output: for test_imageop.py

$]./python2.7  ../lib/python2.7/test/test_imageop.py
test_input_validation (__main__.InputValidationTests) ... ok

--
Ran 1 test in 0.047s

OK

--
Thanks & Regards,

 Pankaj Sharma
(pankaj@samsung.com)

--
components: Library (Lib)
files: Python-2.7.8-imageop.patch
keywords: patch
messages: 231707
nosy: pankaj.s01
priority: normal
severity: normal
status: open
title: Enable 'imageop' - "Multimedia Srvices Feature module" for 64-bit 
platform
type: enhancement
versions: Python 2.7
Added file: http://bugs.python.org/file37287/Python-2.7.8-imageop.patch

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



[issue22954] Logically Dead Code

2014-11-26 Thread pankaj.s01

New submission from pankaj.s01:

Hi,
In Python-3.4.2 (latest version), there is logically dead code in function 
static tp_new_wrapper().

The respective patch has been attached for 
"Python-3.4.2/Objects/typeobject.c"

Thanks $ Regards,
 Pankaj Sharma
(pankaj@samsung.com)

--
files: Python-3.4.2-typeobject.patch
keywords: patch
messages: 231746
nosy: pankaj.s01
priority: normal
severity: normal
status: open
title: Logically Dead Code
type: enhancement
versions: Python 3.4
Added file: http://bugs.python.org/file37293/Python-3.4.2-typeobject.patch

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



[issue24300] Code Refactoring in function nis_mapname()

2015-05-27 Thread pankaj.s01

New submission from pankaj.s01:

Hi,
Here , A code refactoring patch have been submitted for 
Function: nis_mapname() and 
File: Python-3.4.3/Modules/nismodule.c

Please Review it,

Thanks,
Pankaj

--
components: Extension Modules
files: Python-3.4.3-nismodule.patch
keywords: patch
messages: 244183
nosy: pankaj.s01
priority: normal
severity: normal
status: open
title: Code Refactoring  in function nis_mapname()
type: enhancement
versions: Python 3.4
Added file: http://bugs.python.org/file39521/Python-3.4.3-nismodule.patch

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



[issue24302] Dead Code of Handler check in function faulthandler_fatal_error()

2015-05-27 Thread pankaj.s01

New submission from pankaj.s01:

Hi,
There is dead code reported in this issue and I think no need to check for NULL 
of 'handler' in function faulthandler_fatal_error() and file 
Python-3.4.3/Modules/faulthandler.c . where 'handler' is pointed to staic array 
faulthandler_handlers[] which never will be null inside loop with 
faulthandler_nsignals value and doesn't means to check for NULL outside of 
loop. but if there is possibility of 'handler' to be NULL then it should be 
check inside the loop until
handler->signum is not equal to signum and then break;

--
components: Extension Modules
files: Python-3.4.3-faulthandler.patch
keywords: patch
messages: 244195
nosy: pankaj.s01
priority: normal
severity: normal
status: open
title: Dead Code of Handler check in function faulthandler_fatal_error()
type: enhancement
versions: Python 3.4
Added file: http://bugs.python.org/file39522/Python-3.4.3-faulthandler.patch

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



[issue24702] Uninitialised Pointer buf.outobj

2015-07-23 Thread pankaj.s01

New submission from pankaj.s01:

Hi ,
Reporting an issue of uninitialized  pointer "buf.outobj" in python-2.7.x .
I have attached patch ,please check and review it.

Thanks!

--
components: Extension Modules, Library (Lib)
files: Python-2.7.10-multibytecodec.patch
keywords: patch
messages: 247243
nosy: pankaj.s01
priority: normal
severity: normal
status: open
title: Uninitialised Pointer buf.outobj
versions: Python 2.7
Added file: http://bugs.python.org/file40003/Python-2.7.10-multibytecodec.patch

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



[issue24300] Code Refactoring in function nis_mapname()

2015-07-23 Thread pankaj.s01

Changes by pankaj.s01 :


--
nosy: +benjamin.peterson -pankaj.s01

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



[issue24702] Uninitialised Pointer buf.outobj

2015-07-23 Thread pankaj.s01

Changes by pankaj.s01 :


--
nosy: +benjamin.peterson -pankaj.s01

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



[issue24703] Resource Leak

2015-07-23 Thread pankaj.s01

New submission from pankaj.s01:

Hi,
There is an issue of resource leak of file descriptor "outFile" in 
Python-2.7.10 ,file :Python-2.7.10/Modules/_bsddb.c:3456.
variable "outFile" is going out of scope which leaks the storage.So need to 
close file before return on error.
I have attached the patch ,please check and review it.

thanks!

--
components: Extension Modules, Library (Lib)
files: Python-2.7.10_bsddb.patch
keywords: patch
messages: 247249
nosy: benjamin.peterson, pankaj.s01
priority: normal
severity: normal
status: open
title: Resource Leak
versions: Python 2.7
Added file: http://bugs.python.org/file40004/Python-2.7.10_bsddb.patch

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