[issue14706] Inconsistent os.access os.X_OK on Solaris and AIX when running as root

2012-05-02 Thread Adi Roiban
Adi Roiban added the comment: Many thanks for your comment! Cheers, Adi -- ___ Python tracker <http://bugs.python.org/issue14706> ___ ___ Python-bugs-list mailin

[issue14706] Inconsistent os.access os.X_OK on Solaris and AIX when running as root

2012-05-02 Thread Adi Roiban
New submission from Adi Roiban : The return value of os.access(FILE, os.X_OK) is not consistent across operating system when executed as "root" I have tested with Python 2.5 on Linux and Solaris, but there is a bug in python-nose reporting the same behavior with Python 2.6 on Solar

[issue14568] HP-UX local libraries not included

2012-04-12 Thread Adi Roiban
Adi Roiban added the comment: Hi, There was an error in the patch. Instead of lib_dirs += hpux_path it should be: lib_dirs += [hpux_path] Cheers, -- ___ Python tracker <http://bugs.python.org/issue14

[issue5113] 2.5.4.3 / test_posix failing on HPUX systems

2012-04-12 Thread Adi Roiban
Adi Roiban added the comment: I am not sure how the search works, but for example I was not able to reach http://bugs.python.org/issue5895 while searching for hpux or hp-ux using the internal search. Also I was not able to find any aix or solaris bug. In case you bump over an hpux, aix

[issue9123] insecure os.urandom on VMS

2012-04-12 Thread Adi Roiban
Changes by Adi Roiban : -- nosy: +adiroiban ___ Python tracker <http://bugs.python.org/issue9123> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1572968] release GIL while doing I/O operations in the mmap module

2012-04-12 Thread Adi Roiban
Changes by Adi Roiban : -- nosy: +adiroiban ___ Python tracker <http://bugs.python.org/issue1572968> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12991] Python 64-bit build on HP Itanium - Executable built successfully but modules failed with HP Compiler

2012-04-12 Thread Adi Roiban
Changes by Adi Roiban : -- nosy: +adiroiban ___ Python tracker <http://bugs.python.org/issue12991> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14568] HP-UX local libraries not included

2012-04-12 Thread Adi Roiban
New submission from Adi Roiban : Hi, Sorry for bothering you. In my initial report, I did not added /usr/local/lib paths , since I was thinking that Python should only work with the default library location. Now I see that /usr/local is added just at the beginning of module building. The

[issue5113] 2.5.4.3 / test_posix failing on HPUX systems

2012-04-12 Thread Adi Roiban
Adi Roiban added the comment: Hi, Not sure what codebase was used for the patch. I have manually patched the test on 2.5.6 and the test_posix tests passed. Thanks! Adi -- ___ Python tracker <http://bugs.python.org/issue5

[issue14557] HP-UX libraries not included

2012-04-12 Thread Adi Roiban
Adi Roiban added the comment: Hi, startswith('hp-ux') should also work as in real world it should be synonym with hp-ux11 ... see my reasoning below I used 'hp-ux11' since this was the system I have access to and can test and I was not brave enought to assume that th

[issue5895] socketmodule.c on HPUX ia64 without _XOPEN_SOURCE_EXTENDED compiles incorrectly

2012-04-11 Thread Adi Roiban
Changes by Adi Roiban : -- nosy: +adiroiban ___ Python tracker <http://bugs.python.org/issue5895> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5113] 2.5.4.3 / test_posix failing on HPUX systems

2012-04-11 Thread Adi Roiban
Changes by Adi Roiban : -- nosy: +adiroiban ___ Python tracker <http://bugs.python.org/issue5113> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14557] HP-UX libraries not included

2012-04-11 Thread Adi Roiban
New submission from Adi Roiban : Hi, I am trying to build Python on HP-UXiv3. HP-UX also keeps libs in /usr/lib/hpux64 and /usr/lib/hpux32. I have attached a patch for searching these folders. The patch is against the latest version of cpython. I have tests the change on Python 2.5.6

[issue9175] ctypes doesn't build on hp-ux

2012-04-11 Thread Adi Roiban
Changes by Adi Roiban : -- nosy: +adiroiban ___ Python tracker <http://bugs.python.org/issue9175> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11181] TLS end connection not detected properly in retrbinary

2011-02-12 Thread Adi Roiban
Adi Roiban added the comment: Hi, I apologies for raising this issues. It looks like FTP_TLS is not available in Python 3.1 ... and retrbinary is working in Python 2.7. What I actually done, was backporting ftplib.py from 2.7 to 2.5 and using pyOpenSSL instead of the standard ssl module

[issue11181] TLS end connection not detected properly in retrbinary

2011-02-10 Thread Adi Roiban
New submission from Adi Roiban : FTP_TLS.retrybinary should detect the end of a TLS read in the same way as FTP.TLS_retryline does. it should be something like this... catching ssl.ZeroReturnError as a valid expection for signaling EOF. try: data