[issue13326] make clean failed on OpenBSD

2011-11-02 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hi, make clean failed on OpenBSD with this error: find: -exec: no terminating ; *** Error code 1 (ignored) It seems that -exec with + is a GNU extension. Are you OK with this diff which does the same and is multi-platform? Modifications can

[issue13326] make clean failed on OpenBSD

2011-11-02 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: FYI I tested with Python 3.3, but I didn't look for 2.7 and 3.2, I think modifications are also needed. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13326

[issue13326] make clean failed on OpenBSD

2011-11-03 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: According to the man page, find -print0 and xargs -r are also GNU extensions. Even though they work on OpenBSD (do they?), they could still break on some platforms. Yes, it works fine, but you're allright. As find -exec cmd {} ';' is already

[issue13326] make clean failed on OpenBSD

2011-11-03 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Please see this: http://bugs.python.org/issue8665 http://hg.python.org/cpython/rev/5468f3aee4ae/ -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13326

[issue13326] make clean failed on OpenBSD

2011-11-03 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: How about using the -depth option then? It's in POSIX but does OpenBSD have it? The man page of GNU find says it has a -d option (that does the same as -depth) for compatibility with BSD. Yes, we have this option: -depth This primary always

[issue13414] test_strftime failed on OpenBSD

2011-11-16 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hello, I was running test_datetime.py and it failed on OpenBSD. I have tested with Python 2.7, Python 3.2 and Python 3.3. Python 2.7: test_datetime.py: ok test_srtftime.py: failed (see attached file: test_strftime_python27.log) Have a lot

[issue13414] test_strftime failed on OpenBSD

2011-11-16 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: Added file: http://bugs.python.org/file23706/test_datetime_python33.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13414

[issue13414] test_strftime failed on OpenBSD

2011-11-16 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: Added file: http://bugs.python.org/file23707/test_strftime_python27.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13414

[issue13414] test_strftime failed on OpenBSD

2011-11-16 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: Added file: http://bugs.python.org/file23708/test_strftime_python32.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13414

[issue13414] test_strftime failed on OpenBSD

2011-11-16 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: Added file: http://bugs.python.org/file23709/test_strftime_python33.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13414

[issue13414] test_strftime failed on OpenBSD

2011-11-16 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Sure. -- Added file: http://bugs.python.org/file23710/strftime.c ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13414

[issue7424] segmentation fault in listextend during install

2011-08-04 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Thanks Antoine for your response. Python 3.2.1 and Python 2.4.6 have been successfully installed (but Python 2.5.4 and Python 2.7.1 failed). -- ___ Python tracker rep...@bugs.python.org http

[issue12181] SIGBUS error on OpenBSD (sparc64)

2011-08-16 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, this is the patch in OpenBSD. Source: http://www.openbsd.org/cgi-bin/cvsweb/ports/lang/python/2.7/patches/patch-Modules_selectmodule_c Could be usefull to work together and advance on this problem. Thanks a lot. Remi. -- Added file

[issue12555] PEP 3151 implementation

2011-08-16 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, I have tested on OpenBSD -current, and it seems to work fine: $ ./python -E -bb Lib/test/test_mmap.py test_access_parameter (__main__.MmapTests) ... ok test_anonymous (__main__.MmapTests) ... ok test_bad_file_desc (__main__.MmapTests

[issue12589] test_long.test_nan_inf() failed on OpenBSD (powerpc)

2011-08-22 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, what information do you need to advance on this bug? Cheers, Remi. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12589

[issue12821] test_fcntl failed on OpenBSD 5.x

2011-08-23 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hello, test_fcntl failed on OpenBSD 5.0. It's ok when we add openbsd5 in the tuple of sys.platform (patch attached). Thanks a lot, Remi. -- files: patch-Lib_test_test_fcntl_py messages: 142784 nosy: rpointel priority: normal severity

[issue12821] test_fcntl failed on OpenBSD 5.x

2011-08-23 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Thanks a lot, I prefer to use sys.platform.startswith too. Remi. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12821

[issue12826] module _socket failed to build on OpenBSD

2011-08-23 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hello, I try to build Python 3.3 on OpenBSD, and it failed to build these modules: _socket (so _ssl too). Errors are: /home/remi/dev/cpython_test/Modules/socketmodule.c: In function 'sock_recvmsg': /home/remi/dev/cpython_test/Modules

[issue12826] module _socket failed to build on OpenBSD

2011-08-23 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: Added file: http://bugs.python.org/file23016/socketmodule_build_error_openbsd.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12826

[issue12827] OS-specific location in Lib/tempfile.py for OpenBSD

2011-08-23 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hello, /usr/tmp is not (used) on OpenBSD. We have specific patch to do this, but I prefer to have this modification upstream. 2.5: http://www.openbsd.org/cgi-bin/cvsweb/ports/lang/python/2.5/patches/patch-Lib_tempfile_py 2.7: http

[issue12827] OS-specific location in Lib/tempfile.py for OpenBSD

2011-08-23 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: I was reporting this because I thought it was better to include this upstream. However, I understand if you don't want to include this specific case. We can keep this patch in our tree, I understand your position

[issue12827] OS-specific location in Lib/tempfile.py for OpenBSD

2011-08-23 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: I could be missing something, but why do you have this patch in the first place? I'm recently working on porting Python for OpenBSD, and this patch exists since python2.5 (since 4 years in our tree). So I don't have all responses, but I think

[issue6419] Broken test_kqueue.py on OpenBSD

2011-08-25 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, I think this issue is relied to issue 12181. I have made tests. 1)with no patch: testPair (__main__.TestKQueue) ... ok test_create_event (__main__.TestKQueue) ... FAIL test_create_queue (__main__.TestKQueue

[issue12852] test_posix.test_fdlistdir() segfault on OpenBSD

2011-08-29 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hi, During the regress tests on OpenBSD, test_posix.test_fdlistdir() segfault. Details: $ ./python ./Tools/scripts/run_tests.py test_posix /home/remi/dev/cpython_test/python -W default -bb -E -m test -r -w -j 0 -u all,-largefile,-network

[issue12852] test_posix.test_fdlistdir() segfault on OpenBSD

2011-08-29 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, thanks for your response. Yes it always segfault: $ ./python -c 'import os; print(os.fdlistdir(os.open(/tmp, os.O_RDONLY)))' zsh: segmentation fault (core dumped) ./python -c 'import os; print(os.fdlistdir(os.open(/tmp, os.O_RDONLY

[issue12852] test_posix.test_fdlistdir() segfault on OpenBSD

2011-08-29 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, I tested with this program in C: #include stdio.h #include dirent.h #include fcntl.h #include stdlib.h int main(void) { DIR *d; struct dirent *dp; int dfd; if ((d = fdopendir((dfd = open(/tmp, O_RDONLY == NULL

[issue12852] test_posix.test_fdlistdir() segfault on OpenBSD

2011-08-30 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, this is the result of gcc -E on Modules/posixmodule.o, asked by haypo. Thanks for your help, Cheers, Remi. -- Added file: http://bugs.python.org/file23072/gcc-E-Modules_posixmodule_output

[issue12868] test_faulthandler.test_stack_overflow() failed on OpenBSD

2011-08-31 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hello, the test_stack_overflow failed on OpenBSD. Don't hesitate if you need more information. Details: $ ./python Lib/test/test_faulthandler.py test_disable (__main__.FaultHandlerTests) ... ok test_dump_traceback (__main__.FaultHandlerTests

[issue12868] test_faulthandler.test_stack_overflow() failed on OpenBSD

2011-08-31 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Info: I read issue 12469 but I prefered to create new issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12868

[issue12868] test_faulthandler.test_stack_overflow() failed on OpenBSD

2011-08-31 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, results: Out of curiosity, could you try this: $ ./python -c import faulthandler; faulthandler.enable(); faulthandler._stack_overflow(); echo $? $ ./python -c import faulthandler; faulthandler.enable(); faulthandler._stack_overflow(); echo

[issue12868] test_faulthandler.test_stack_overflow() failed on OpenBSD

2011-08-31 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Yeah, it's a recent regression: I opened the issue #12871. I don't think that it's specific to OpenBSD. Thanks. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12868

[issue12868] test_faulthandler.test_stack_overflow() failed on OpenBSD

2011-08-31 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, without-threads, it segfault: $ ./python -c import faulthandler; faulthandler.enable(); faulthandler._stack_overflow(); echo $? Fatal Python error: Segmentation fault Current thread 0x: File string, line 1 in module zsh

[issue12868] test_faulthandler.test_stack_overflow() failed on OpenBSD

2011-08-31 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: However, if I run test_faulthandler.py, it seems to be ok: $ ./python Lib/test/test_faulthandler.py test_disable (__main__.FaultHandlerTests) ... ok test_dump_traceback (__main__.FaultHandlerTests) ... ok test_dump_traceback_file (__main__

[issue12852] POSIX level issues in posixmodule.c on OpenBSD 5.0

2011-09-01 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: RĂ©mi : what happens if you manually add extern DIR *fdopendir(int fd); at the beginning of posixmodule.c? Hello, it seems to correctly work: ./python Lib/test/test_posix.py testNoArgFunctions (__main__.PosixTester) ... ok test_access

[issue12852] POSIX level issues in posixmodule.c on OpenBSD 5.0

2011-09-02 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: It would be nice if you could find out in which header file fdopendir() is defined. Hi, fdopendir() is in /usr/include/dirent.h: #if __POSIX_VISIBLE = 200809 DIR *fdopendir(int); #endif You could find the file dirent.h here: http

[issue12871] Disable sched_get_priority_min/max if Python is compiled without threads

2011-09-04 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: Hi, it seems to solve the problem (tested on OpenBSD 4.9 and OpenBSD-current). * test_posix.py on OpenBSD 4.9: [...] Ran 79 tests in 0.508s OK (skipped=35) * test_posix.py on OpenBSD-current: it continues to segfault, but I have opened an other

[issue12903] test_io.test_interrupte[r]d* blocks on OpenBSD

2011-09-05 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hi, these tests block on OpenBSD: -test_interrupted_write_unbuffered() -test_interrupted_write_buffered() -test_interrupted_write_text() -test_interrupterd_read_retry_buffered() -test_interrupterd_read_retry_text

[issue12905] multiple errors in test_socket on OpenBSD

2011-09-05 Thread Remi Pointel
New submission from Remi Pointel pyt...@xiri.fr: Hi, I have few problems in test_socket.py. 1) test_sendall_interrupted blocks on OpenBSD, I must Ctrl+c to interrupt the test. I added a skip to have full regress tests, but I think it's not the proper way. I have run it into gdb, and ctrl+c

[issue12905] multiple errors in test_socket on OpenBSD

2011-09-05 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: I add bt output with gdb 7, to have more informations. -- Added file: http://bugs.python.org/file23105/OpenBSD_test_socket_gdb.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue12905] multiple errors in test_socket on OpenBSD

2011-09-06 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: What happens if you run a code equivalent to test_sendall_interrupted on its own? I mean, if you try something like this: Hi, it blocks too: $ gdb -args ./python [...] (gdb) run Starting program: /usr/ports/pobj/Python-3.2.2/Python-3.2.2/python

[issue12852] POSIX level issues in posixmodule.c on OpenBSD 5.0

2011-09-07 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: @rpointel: Does the fix work for you? If yes, I will close the issue. Hi, yes it sounds good for me: $ hg pull -u $ ./configure make $ ./python Lib/test/test_posix.py [...] test_fdlistdir (__main__.PosixTester) ... ok [...] Ran 79 tests

[issue12905] multiple errors in test_socket on OpenBSD

2012-02-27 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: I think we could close this bug because it's du to the pthread library on OpenBSD and not Python. We are switching to rthreads and I can't reproduce this bug. Thanks for your help and sorry for the delay

[issue12903] test_io.test_interrupte[r]d* blocks on OpenBSD

2012-02-27 Thread Remi Pointel
Remi Pointel pyt...@xiri.fr added the comment: I think we could close this bug because it's du to the pthread library on OpenBSD and not Python. We are switching to rthreads and I can't reproduce this bug. Thanks for your help and sorry for the delay

[issue19134] test_inspect.py failed if module _multiprocessing not available

2013-09-30 Thread Remi Pointel
New submission from Remi Pointel: When I run the regress tests on OpenBSD 5.4-current, the test test_inspect.py failed because the module _multiprocessing is not available, instead of skipping the test: FAILED (errors=1) Traceback (most recent call last): File ./Lib/test/test_inspect.py

[issue19134] test_inspect.py failed if module _multiprocessing not available

2013-09-30 Thread Remi Pointel
Remi Pointel added the comment: Yes, but it needs an import to use test.support.multiprocessing. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19134

[issue19134] test_inspect.py failed if module _multiprocessing not available

2013-09-30 Thread Remi Pointel
Remi Pointel added the comment: Thanks :) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19134 ___ ___ Python-bugs-list mailing list Unsubscribe

[issue19134] test_inspect.py failed if module _multiprocessing not available

2013-10-02 Thread Remi Pointel
Remi Pointel added the comment: Hi, sorry to reopen this bug but it seams that your commit was not ok: test_qualname_source (__main__.TestMain) ... ERROR == ERROR: test_qualname_source (__main__.TestMain

[issue19134] test_inspect.py failed if module _multiprocessing not available

2013-10-02 Thread Remi Pointel
Remi Pointel added the comment: It's ok now, thanks: test_qualname_source (__main__.TestMain) ... skipped 'multiprocessing required to test __qualname__ for source files' -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue13414] test_strftime failed on OpenBSD

2014-02-08 Thread Remi Pointel
Remi Pointel added the comment: I close this bug because it's corrected by the commit (revision 1.2): http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libc/time/wcsftime.c It was a bug in our wcsftime. Thanks. -- resolution: - invalid status: open - closed

[issue20564] test_threadsignals.py failed on OpenBSD because too slow ( 3sec)

2014-02-08 Thread Remi Pointel
New submission from Remi Pointel: Hi, I have 2 tests which failed on OpenBSD (tested on i386, amd64 and sparc64) in: - test_threadsignals.py/test_lock_acquire_interruption - test_threadsignals.py/test_rlock_acquire_interruption

[issue20564] test_threadsignals.py failed on OpenBSD because too slow ( 3sec)

2014-02-08 Thread Remi Pointel
Remi Pointel added the comment: arf, sorry for the noise... I didn't seen this. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20564

[issue20564] test_threadsignals.py failed on OpenBSD because too slow ( 3sec)

2014-02-11 Thread Remi Pointel
Remi Pointel added the comment: Thanks for your response. When running the test, is faulthandler enabled (--timeout option)? It seems yes: # $ PYTHONPATH=. ./python Tools/scripts/run_tests.py -j 1 -W

[issue20564] test_threadsignals.py failed on OpenBSD because too slow ( 3sec)

2014-02-11 Thread Remi Pointel
Remi Pointel added the comment: Can you please test interrupt_lock_acquire.py? It should be the same than the unit test, but in a fresh Python process. Thanks for your response, this is what I have: $ PYTHONPATH=. ./python ./interrupt_lock_acquire.py Traceback (most recent call last

[issue20656] OpenBSD: timeval.tv_sec type is long, not time_t

2014-02-17 Thread Remi Pointel
Remi Pointel added the comment: Hi, I think you forgot to attach the diff. Python 3.3 is in OpenBSD since 5.4. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20656

[issue20564] locks cannot be interrupted on OpenBSD

2014-02-18 Thread Remi Pointel
Remi Pointel added the comment: You may report the feature request to OpenBSD kernel if you want. Until OpenBSD implements it, the test is now skipped in Python. Yes, it's done yet. However, it's good to skip it until it's implemented

[issue21082] os.makedirs(exist_ok=True) is not thread-safe: umask is set temporary to 0, serious security problem

2014-03-28 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: -- nosy: +rpointel ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21082 ___ ___ Python-bugs-list mailing

[issue21356] LibreSSL/RAND_egd fix needed.

2014-04-26 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: -- nosy: +rpointel ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21356 ___ ___ Python-bugs-list mailing

[issue21456] skip 2 tests in test_urllib2net.py if _ssl module not present

2014-05-09 Thread Remi Pointel
New submission from Remi Pointel: Hi, I tested the regress tests on a machine which does not have the ssl module, and I have 2 errors in Lib/test/test_urllib2net.py. I think it should skip the test instead. Attached is a diff I wrote, it's based on Lib/test/test_poplib.py. Don't hesitate

[issue21456] skip 2 tests in test_urllib2net.py if _ssl module not present

2014-06-07 Thread Remi Pointel
Remi Pointel added the comment: Are you ok with this diff reworked? -- Added file: http://bugs.python.org/file35505/Lib_test_test_urllib2net_py.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21456

[issue12673] SEGFAULT error on OpenBSD (sparc)

2014-06-07 Thread Remi Pointel
Remi Pointel added the comment: For your information, this bug has been fixed in OpenBSD and the developper has contacted the NetBSD developper: http://marc.info/?l=openbsd-techm=140209064821540w=2 So I think we could close this issue because it's a system issue, not Python

[issue19884] Importing readline produces erroneous output

2014-08-07 Thread Remi Pointel
Changes by Remi Pointel pyt...@xiri.fr: -- nosy: +rpointel ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19884 ___ ___ Python-bugs-list mailing

[issue25342] test_json segfault on OpenBSD

2015-10-08 Thread Remi Pointel
Remi Pointel added the comment: It's good when I entered "ulimit -s 8192". Sorry for the noise... -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.py

[issue25342] json

2015-10-08 Thread Remi Pointel
Changes by Remi Pointel <pyt...@xiri.fr>: -- nosy: rpointel priority: normal severity: normal status: open title: json ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25342] json

2015-10-08 Thread Remi Pointel
Remi Pointel added the comment: Sorry I clicked on "create" before adding info in comment. When I run the test_json suite on OpenBSD, I have a segfault: $ egdb ./python GNU gdb (GDB) 7.10 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version

[issue25342] test_json segfault on OpenBSD

2015-10-08 Thread Remi Pointel
Changes by Remi Pointel <pyt...@xiri.fr>: -- title: json -> test_json segfault on OpenBSD ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue25342] test_json segfault on OpenBSD

2015-10-08 Thread Remi Pointel
Remi Pointel added the comment: It fails on test_endless_recursion: $ LD_LIBRARY_PATH=. PYTHONPATH=./Lib/ ./python ./Lib/test/test_json -v test_endless_recursion (test.test_json.test_recursion.TestPyRecursion) ... zsh: segmentation fault (core dumped

[issue25171] does not build on OpenBSD with no value defined for PY_GETENTROPY

2015-09-30 Thread Remi Pointel
Remi Pointel added the comment: Attached is the diff to use defined(PY_GETENTROPY) instead of #define PY_GETENTROPY 1. -- Added file: http://bugs.python.org/file40631/Python_random_c ___ Python tracker <rep...@bugs.python.org>

[issue23329] _ssl cannot be compiled with LibreSSL anymore (on OpenBSD 5.5) because of ALPN

2015-09-26 Thread Remi Pointel
Remi Pointel added the comment: Good, I think we should test on a machine with a version of openssl that does not support ALPN to be sure. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue25191] test_getsetlocale_issue1813 failed on OpenBSD

2015-09-20 Thread Remi Pointel
New submission from Remi Pointel: Hi, the test test_getsetlocale_issue1813 in ./Lib/test/test_locale.py failed on OpenBSD: == ...sss..testing with ('tr_TR', 'ISO8859-9') Ess ERROR

[issue23177] test_ssl: failures on OpenBSD with LibreSSL

2015-09-20 Thread Remi Pointel
Remi Pointel added the comment: Hi, maybe we should add the LIBRESSL_ information available in opensslv.h (as it has be done for OpenSSL): $ grep LIBRESSL /usr/include/ssl/opensslv.h #define LIBRESSL_VERSION_NUMBER 0x2003L #define LIBRESSL_VERSION_TEXT "LibreSSL 2.3.0&quo

[issue23329] _ssl cannot be compiled with LibreSSL anymore (on OpenBSD 5.5) because of ALPN

2015-09-23 Thread Remi Pointel
Remi Pointel added the comment: With this patch it works fine on OpenBSD with LibreSSL. Could you test on a Linux machine with OpenSSL supporting ALPN please? Thanks spil@ for the idea. -- keywords: +patch Added file: http://bugs.python.org/file40556/python_have_alpn.diff

[issue23329] _ssl cannot be compiled with LibreSSL anymore (on OpenBSD 5.5) because of ALPN

2015-09-22 Thread Remi Pointel
Remi Pointel added the comment: Maybe we could check if the functionality is available instead of checking a version? What do you think about that? -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue25154] Drop the pyvenv script

2015-09-24 Thread Remi Pointel
Remi Pointel added the comment: I would prefer to keep this script with the version referring to the version of python used (pyvenv-3.4, pyvenv-3.5, ...). -- nosy: +rpointel ___ Python tracker <rep...@bugs.python.org> <http://bugs.p

[issue25171] does not build on OpenBSD with no value defined for PY_GETENTROPY

2015-09-18 Thread Remi Pointel
New submission from Remi Pointel: Hi, I'm trying to build Python on OpenBSD-current, but it does not build because it seems that PY_GETENTROPY does not have a value. $ make ... gcc -pthread -c -fno-strict-aliasing -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict

[issue28932] Fail compile Python 3.6.0rc1 on OpenBSD 6.0

2016-12-18 Thread Remi Pointel
Remi Pointel added the comment: Hello, I have exactly the same problem with Python 2.7.13 on OpenBSD. Works fine with the same patch. Remi. -- nosy: +rpointel versions: +Python 2.7 ___ Python tracker <rep...@bugs.python.org>