[issue11192] test_socket error on AIX

2013-06-14 Thread Delhallt

Delhallt added the comment:

not a python problem, see closed aix issue 
http://www-01.ibm.com/support/docview.wss?uid=isg1IZ57712

--
nosy: +delhallt

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



[issue17454] ld_so_aix not used when linking c++ (scipy)

2013-05-23 Thread Delhallt

Delhallt added the comment:

proposed patch

--
keywords: +patch
nosy: +delhallt
Added file: http://bugs.python.org/file30348/Python-2.7.5-linkso.patch

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



[issue17923] test glob with trailing slash fail

2013-05-07 Thread Delhallt

New submission from Delhallt:

test_glob's trailing_slash tests fails on AIX 6.1/Python 2.7.4:

The code section for no_magic/slash case seems to be the issue.

Attached patch resolves issue.

FAIL: test_glob_directory_with_trailing_slash (test.test_glob.GlobTests)
--
Traceback (most recent call last):
  File "/opt/freeware/lib/python2.7/test/test_glob.py", line 120, in 
test_glob_directory_with_trailing_slash
self.assertEqual(res, [])
AssertionError: Lists differ: ['@test_7602318_tmp_dir/ZZZ/'] != []

First list contains 1 additional elements.
First extra element 0:
@test_7602318_tmp_dir/ZZZ/

- ['@test_7602318_tmp_dir/ZZZ/']
+ []

==
FAIL: test_glob_unicode_directory_with_trailing_slash (test.test_glob.GlobTests)
--
Traceback (most recent call last):
  File "/opt/freeware/lib/python2.7/test/test_glob.py", line 137, in 
test_glob_unicode_directory_with_trailing_slash
self.assertEqual(res, [])
AssertionError: Lists differ: [u'@test_7602318_tmp_dir/ZZZ/'... != []

First list contains 1 additional elements.
First extra element 0:
@test_7602318_tmp_dir/ZZZ/

- [u'@test_7602318_tmp_dir/ZZZ/']
+ []

--
components: Tests
files: Python-2.7.4-glob.patch
keywords: patch
messages: 188635
nosy: delhallt
priority: normal
severity: normal
status: open
title: test glob with trailing slash fail
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file30162/Python-2.7.4-glob.patch

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



[issue17919] AIX POLLNVAL definition causes problems

2013-05-06 Thread Delhallt

New submission from Delhallt:

I encounted exactly the same issue http://bugs.python.org/issue923315 with 
test_asyncore, test_asynchat and test_poll.

On AIX6.1, POLLNVAL=0x8000=SHRT_MIN=SHRT_MAX+1 (on 2 bytes) and parsing events 
with PyArg_ParseTuple as a signed short 'h' do not work, i.e
"OverflowError: signed short integer is greater than maximum" occurs.

I changed 'h' to 'H' in the attached patch, and delete associated Overflow test.

Perhaps, they're a better way to handle that ?

--
components: Extension Modules
files: Python-2.7.4-pollnval.patch
keywords: patch
messages: 188558
nosy: delhallt
priority: normal
severity: normal
status: open
title: AIX POLLNVAL definition causes problems
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file30151/Python-2.7.4-pollnval.patch

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



[issue8918] distutils test_config_cmd failure on Solaris

2013-05-06 Thread Delhallt

Delhallt added the comment:

For your information, with AIX 6.1, with both print line and preserve comment 
the output is not empty.

Option -o, with i suffix always give error message /usr/vac/bin/xlc_r: 1501-218 
(S) file _configline.i contains an incorrect file suffix

#/usr/vac/bin/xlc_r -P _configtest.c -qppline -C
#cat _configtest.i  
#line 1 "_configtest.c"
/* xxx */

--
nosy: +delhallt
versions:  -Python 3.2, Python 3.3

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