[issue32647] Undefined references when compiling ctypes on binutils 2.29.1 with gcc -Wl, -z, undefs (Fedora 28)

2018-02-26 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Tested the fix and ctypes is linked successfully with libdl when utilizing the strict symbol check. -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.p

[issue29804] test_ctypes test_pass_by_value fails on arm64 (aarch64) architecture

2018-02-26 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The bug is still present on the 3.6 branch. -- ___ Python tracker <https://bugs.python.org/issue29804> ___ ___ Python-bug

[issue33012] Invalid function cast warnings with gcc 8 for METH_NOARGS

2018-03-06 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: We are getting hit by that quite often on Fedora, with the transition to gcc 8 and it creates unnecessary noise at our build logs. Thanks for working on that. When you sent your PR I can test it within our build system and verify if it works

[issue29673] Some gdb macros are broken in 3.6

2018-04-04 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue29673> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29673] Some gdb macros are broken in 3.6

2018-04-04 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: A PR has been filed, could someone take a look? -- ___ Python tracker <https://bugs.python.org/issue29673> ___ ___ Pytho

[issue11122] bdist_rpm should use rpmbuild, not rpm

2018-04-11 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: I could make a PR out of the patch but I wonder if anyone is actually using this functionality. Wearing my Fedora's python maintainer hat, we have a lot of tooling around rpm that handles those things, so I don't think there is a valid u

[issue11122] bdist_rpm should use rpmbuild, not rpm

2018-04-11 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The bug exists indeed but I would like to know what is the actual use case here. -- ___ Python tracker <https://bugs.python.org/issue11

[issue27277] Fatal Python error: Segmentation fault in test_exceptions

2018-04-27 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: This is an issue with the stack size. It was encountered recently while building Python 3.6 under CentOS 6 [0] and the way to fix it was to increase the maximum stack size using ulimit e.g. [1] [0] https://bugzilla.redhat.com/show_bug.cgi?id=1572150

[issue32962] test_gdb fails in debug build with `-mcet -fcf-protection -O0`

2018-05-03 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +Dormouse759 ___ Python tracker <https://bugs.python.org/issue32962> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33012] Invalid function cast warnings with gcc 8 for METH_NOARGS

2018-05-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Is it possible/feasible to fix that for the 3.7 and 3.6 branches as well? -- ___ Python tracker <https://bugs.python.org/issue33

[issue31692] Test `test_huntrleaks` fails in debug build with COUNT_ALLOCS

2017-10-05 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue31692> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-10-05 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : The issue is reproducible on a CentOS 7.4 on ppc64le architecture. It passes successfully on other arch's (however the other power pc arch's might also be affected). How to reproduce: Compile python 3.6 from source. Run ./python3 -m test

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-10-05 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +christian.heimes ___ Python tracker <https://bugs.python.org/issue31705> ___ ___ Python-bugs-list mailing list Unsub

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-10-09 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Forgot the mention the kernel version which is 3.10.0-693.2.1.el7.ppc64le -- ___ Python tracker <https://bugs.python.org/issue31

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-10-09 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Attaching the strace output. -- Added file: https://bugs.python.org/file47202/trace ___ Python tracker <https://bugs.python.org/issue31

[issue31744] Python 2.7.14 Fails to compile on CentOS/RHEL7

2017-10-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Which CentOS/RHEL version do you have? Could you provide the output of 'cat /etc/redhat-release' ? -- nosy: +cstratak ___ Python tracker <https://bugs.python.o

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-10-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Indeed the version of strace is 'strace-4.12-4.el7'. I will try to provide output from the latest one. -- ___ Python tracker <https://bugs.python.o

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-10-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Attaching the output of: strace -s 128 -e trace=%network -o trace ./python3 -m test -v test_socket -m test_sha256 using the latest version of strace (4.19). -- Added file: https://bugs.python.org/file47204/trace2

[issue31733] [2.7] Add PYTHONSHOWREFCOUNT environment variable to Python 2.7

2017-10-10 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue31733> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31774] tarfile.open ignores custom bufsize value when creating a new archive

2017-10-12 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : Trying to create an archive with the tarfile module, by specifying a different blocking factor, doesn't seem to work as only the default value is being used. The issue is reproducible on all the active python branches. Attaching a scri

[issue23699] Add a macro to ease writing rich comparisons

2017-10-23 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: PR has been rebased on top of master and also blurbified. -- ___ Python tracker <https://bugs.python.org/issue23

[issue31900] UnicodeDecodeError in localeconv() makes test_float fail with glibc 2.26.90

2017-10-30 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : Original bug report: https://bugzilla.redhat.com/show_bug.cgi?id=1484497 It seems that on the development branch of Fedora, when we updated glibc from 2.26 to 2.26.90, test_float_with_comma started failing. Details from the original bug report

[issue31900] localeconv() should decide numeric fields from LC_NUMERIC encoding, not from LC_CTYPE encoding

2017-10-30 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Tested the PR on a system with glibc 2.26.90 where the test was failing, and it successfully passed. -- ___ Python tracker <https://bugs.python.org/issue31

[issue31900] localeconv() should decode numeric fields from LC_NUMERIC encoding, not from LC_CTYPE encoding

2017-11-29 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Pinging here. Is there some way I can help to move the issue forward? -- ___ Python tracker <https://bugs.python.org/issue31

[issue1294959] Problems with /usr/lib64 builds.

2017-11-29 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Pinging here. Is there some way to push the issue forward? -- ___ Python tracker <https://bugs.python.org/issue1294

[issue31705] test_sha256 from test_socket fails on ppc64le arch

2017-11-30 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Thanks for the fix Victor! -- ___ Python tracker <https://bugs.python.org/issue31705> ___ ___ Python-bugs-list mailin

[issue32367] [Security] CVE-2017-17522: webbrowser.py in Python does not validate strings

2017-12-18 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue32367> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32521] NIS module fails to build due to the remove of interfaces related to Sun RPC from glibc.

2018-01-08 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : Currently on the development branch of Fedora (28), an upstream change of glibc is being pushed where the Sun RPC support is removed from our downstream glibc package in favor of the libtirpc library. More details [0]. As a result, when python is

[issue32521] NIS module fails to build due to the removal of interfaces related to Sun RPC from glibc.

2018-01-08 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- title: NIS module fails to build due to the remove of interfaces related to Sun RPC from glibc. -> NIS module fails to build due to the removal of interfaces related to Sun RPC from glibc. ___ Python trac

[issue32521] NIS module fails to build due to the removal of interfaces related to Sun RPC from glibc.

2018-01-08 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Already tried. Unfortunately it doesn't. -- ___ Python tracker <https://bugs.python.org/issue32521> ___ ___ Pytho

[issue32521] NIS module fails to build due to the removal of interfaces related to Sun RPC from glibc.

2018-01-08 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The header is located at /usr/include/tirpc/rpc/rpc.h -- ___ Python tracker <https://bugs.python.org/issue32521> ___ ___

[issue32007] nis module fails to build against glibc-2.26

2018-01-10 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue32007> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32962] test_gdb fails in debug build with `-mcet -fcf-protection -O0`

2018-05-28 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Ping. Could someone take a look? There is a PR ready. -- ___ Python tracker <https://bugs.python.org/issue32962> ___ ___

[issue33630] test_posix: TestPosixSpawn fails on PPC64 Fedora 3.x

2018-06-13 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The latest stable Fedora's have glibc >= 2.26 Maybe the buildbot needs to be updated? -- nosy: +cstratak ___ Python tracker <https://bugs.python.org

[issue32962] test_gdb fails in debug build with `-mcet -fcf-protection -O0`

2018-06-18 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: I'd say there are use cases where gdb will be used with optimizations especially in downstream distribution. -- ___ Python tracker <https://bugs.python.org/is

[issue32521] NIS module fails to build due to the removal of interfaces related to Sun RPC from glibc.

2018-07-05 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Matej is this about Python 2? Because the solution didn't actually work for Python 2 and on Fedora we had to implement a workaround [0]. Unfortunately there weren't enough free cycles so far to investigate further. [0] https://src.fedorap

[issue32521] NIS module fails to build due to the removal of interfaces related to Sun RPC from glibc.

2018-07-06 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: On Fedora after the fix we had also to BuildRequire libnsl2-devel and libtirpc-devel after the glibc change was implemented for the correct headers to be included within the buildroot. I am not familiar with suse's build system webui to find the

[issue32947] Support OpenSSL 1.1.1

2018-07-31 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Yes test_poplib and test_ftplib on fedora rawhide when run against openssl 1.1.1 pre8. Haven't tried the pr7, but assuming that the tests were fine before here is the list of changes between pre7 and pre8: https://github.com/openssl/openssl/co

[issue31652] make install fails: no module _ctypes

2018-09-19 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: As mentioned before, this is due to missing libffi-devel on a Centos 7 system. Verified it as well on one of my systems. Could you try again, but before just do a 'yum install libffi-devel'? Maybe a warning could be added to the install o

[issue34765] Update install-sh

2018-09-21 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : The install-sh file that python uses for autotools is horribly outdated. Last update was 16 years ago and it's being copied from automake's source code. Updating it to modern standards could potentially fix issues for systems that use

[issue34811] test_gdb fails with latest gdb

2018-09-26 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : In Fedora we got a new build of gdb which makes python's test_gdb fail on x86_64, i686 and aarch64(arm 64 bits) architectures. gdb's commits between the passing and failing tests: https://github.com/bminor/binutils-g

[issue34811] test_gdb fails with latest gdb

2018-09-26 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue34811> ___ ___ Python-bugs-list mailin

[issue34811] test_gdb fails with latest gdb

2018-09-26 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: FAIL: test_NULL_ob_type (test.test_gdb.PrettyPrintTests) Ensure that a PyObject* with NULL ob_type is handled gracefully -- Traceback (most recent call last): File "/builddir/

[issue34765] Update install-sh

2018-09-26 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- keywords: +patch pull_requests: +8990 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34811] test_gdb fails with latest gdb

2018-10-01 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Tested so far only on a 3.7.0 build. -- versions: -Python 3.8 ___ Python tracker <https://bugs.python.org/issue34

[issue34814] makesetup: must link C extensions to libpython when compiled in shared mode

2018-10-01 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue34814> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34818] test.test_ssl.ThreadedTests.test_tls1_3 fails in 2.7 with AttributeError: __exit__

2018-10-01 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue34818> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34834] test_ssl.test_options does not correctly account for built-in ctx defaults with openssl 1.1.1

2018-10-01 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue34834> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34836] test_ssl.test_default_ecdh_curve needs no tls1.3 flag in 2.7, for now

2018-10-01 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <https://bugs.python.org/issue34836> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34623] _elementtree.c doesn't call XML_SetHashSalt()

2018-10-15 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Will this change be backported to 3.5 and 3.4? It applied cleanly on both however on 3.4 there is a test failure: == ERROR: test_del_attribute (test.test_xml_etree_c.MiscTests

[issue34623] _elementtree.c doesn't call XML_SetHashSalt()

2018-10-17 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +9284 ___ Python tracker <https://bugs.python.org/issue34623> ___ ___ Python-bugs-list mailing list Unsub

[issue34623] _elementtree.c doesn't call XML_SetHashSalt()

2018-10-18 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +9301 ___ Python tracker <https://bugs.python.org/issue34623> ___ ___ Python-bugs-list mailing list Unsub

[issue35045] test_min_max_version (test.test_ssl.ContextTests) fails on Fedora 29+ and openssl 1.1.1

2018-10-22 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : There is an Python test that checks the minimum TLS version - test_min_max_version (test.test_ssl.ContextTests). Fedora 29+ sets TLSv1 as explicit minimum version. Python's test suite assumes that the minimum protocol version is set to a

[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-23 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : Analyzing some coverity scan results I stumbled upon this issue: Python-3.6.5/Lib/xml/dom/minidom.py:1914: original: "n._call_user_data_handler(operation, n, notation)" looks like the original copy. Python-3.6.5/Lib/xml/dom/minid

[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Hello Shivank. I had a PR ready locally which I was about to push, so you posted just at the right time :) Feel free to work on this issue. -- ___ Python tracker <https://bugs.python.org/issue35

[issue34765] Update install-sh

2018-10-25 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Adding to this, the reason I initially caught up with that, was due to a coverity scan. More explicitly: Error: SHELLCHECK_WARNING: [#def1] /usr/lib64/python3.6/config-3.6dm-x86_64-linux-gnu/install-sh:63:1: warning: transform_arg appears unused

[issue34765] Update install-sh

2018-10-25 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Generic reference on the issue: https://github.com/koalaman/shellcheck/wiki/SC2034 -- ___ Python tracker <https://bugs.python.org/issue34

[issue34765] Update install-sh

2018-10-25 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Alright the static scanner warns in the case of a typo being made where the variable is actually used, but since the variable is indeed not used, that doesn't not make it a bug. -- ___ Python tr

[issue31354] Fixing a bug related to LTO only build

2018-10-31 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +9572 ___ Python tracker <https://bugs.python.org/issue31354> ___ ___ Python-bugs-list mailing list Unsub

[issue31625] stop using ranlib

2018-10-31 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Would it make sense to backport that to 3.6 as well? Currently this blocks https://bugs.python.org/issue28015 from being backported to 3.6 -- nosy: +cstratak ___ Python tracker <https://bugs.python.

[issue28015] configure --with-lto builds fail when CC=clang on Linux, requires gold linker

2018-10-31 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The issue with the 3.6 branch is https://bugs.python.org/issue31625 which hasn't been backported to 3.6. Would it make sense to backport it? I have the backports ready locally but not sure if pushing https://bugs.python.org/issue31625 to 3

[issue28015] configure --with-lto builds fail when CC=clang on Linux, requires gold linker

2018-11-07 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The workaround indeed works. -- ___ Python tracker <https://bugs.python.org/issue28015> ___ ___ Python-bugs-list mailin

[issue31625] stop using ranlib

2018-11-08 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +9697 ___ Python tracker <https://bugs.python.org/issue31625> ___ ___ Python-bugs-list mailing list Unsub

[issue31354] Fixing a bug related to LTO only build

2018-11-13 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: This change exports -flto in cflags. You can check it with python3-config --cflags after this commit. Which means that every c extension which will use those cflags will also utilize -flto which wasn't happening before, thus I'd say it'

[issue31354] Fixing a bug related to LTO only build

2018-11-14 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: I'd say yes. In general python may have been compiled with -flto, but it's still a bit buggy from the compilers' side. It doesn't work well always or at all depending on the toolchain, and even if python was compiled with -flto

[issue35257] Add LDFLAGS_NODIST for the LDFLAGS not intended for propagation to C extensions.

2018-11-15 Thread Charalampos Stratakis
New submission from Charalampos Stratakis : Through acb8c5234302f8057b331abaafb2cc8697daf58f the CFLAGS_NODIST variable was created, in order to place there compiler flags used by the interpreter, but not intended to be propagated to C extensions. I saw a similar issue when working on

[issue35257] Add LDFLAGS_NODIST for the LDFLAGS not intended for propagation to C extensions.

2018-11-15 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Correction: The second commit is referring to https://github.com/python/cpython/pull/9908/ -- ___ Python tracker <https://bugs.python.org/issue35

[issue28787] Out of tree --with--dtrace builds fail with a traceback

2016-11-24 Thread Charalampos Stratakis
New submission from Charalampos Stratakis: By invoking an out of tree build of python with the --with-dtrace flag enabled, make fails with an error. Create a new folder at the source directory: $ mkdir _build && cd _build $ ../configure --with-dtrace $ make /usr/bin/dtrace -o

[issue28689] OpenSSL 1.1.0c test failures

2016-11-25 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Tested this in Fedora Rawhide virtual machine, where the fix for the problematic openssl commit was backported, and now the tests hang at test_poplib. Exception in thread Thread-982: Traceback (most recent call last): File "/home/harris/dev/cp

[issue28898] Can't compile gdb with Python 3.6

2016-12-07 Thread Charalampos Stratakis
New submission from Charalampos Stratakis: Trying to compile gdb, with python support and by having it depend on Python 3.6 produces an error that the HAVE_LONG_LONG has been redefined [0]. This seems to have been introduced by this commit [1]. I'm in no way expert on gdb, but from w

[issue1294959] Problems with /usr/lib64 builds.

2017-01-11 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The downstream patch we currently use in Fedora [0]. [0] http://pkgs.fedoraproject.org/cgit/rpms/python3.git/plain/00102-lib64.patch -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue1294

[issue29324] test_aead_aes_gcm fails on Kernel 4.9

2017-01-19 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue29324> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-10 Thread Charalampos Stratakis
New submission from Charalampos Stratakis: The latest versions of setuptools stopped bundling its dependencies and instead starting requiring them [0]. This seems to break virtualenvs as those dependencies are not bundled with python. In order to reproduce it, replace the setuptools-28.8.0

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: @jason.coombs Already tried to just bump the setuptools version and bundle the other wheels but the result is still the same -- ___ Python tracker <http://bugs.python.org/issue29

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Will send a pull request which includes the extra wheels. -- ___ Python tracker <http://bugs.python.org/issue29

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-10 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Second version of the patch: Adjusted the test_ensurepip test cases to account for the new modules -- Added file: http://bugs.python.org/file46627/bundle-setuptools-dependencies2.patch ___ Python tracker

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-13 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Pull Request has been sent: https://github.com/python/cpython/pull/67 -- ___ Python tracker <http://bugs.python.org/issue29

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-16 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- pull_requests: +95 ___ Python tracker <http://bugs.python.org/issue29523> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28787] Out of tree --with--dtrace builds fail with a traceback

2017-02-16 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- pull_requests: +97 ___ Python tracker <http://bugs.python.org/issue28787> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29640] _PyThreadState_Init and fork race leads to inconsistent key list

2017-02-24 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue29640> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23428] Use the monotonic clock for thread conditions on POSIX platforms

2016-08-24 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Hello, Is there any progress on the issue? Should someone take over? -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue23

[issue17167] python man page contains $Date$ in page footer

2016-03-19 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue17167> ___ ___ Python-bugs-list mailing list Unsub

[issue17167] python man page contains $Date$ in page footer

2016-03-21 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue17167> ___ ___ Python-bugs-list mailing list Unsub

[issue17167] python man page contains $Date$ in page footer

2016-03-21 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: What do you think about just removing the keyword? -- keywords: +patch nosy: +cstratak Added file: http://bugs.python.org/file42231/issue17167.patch ___ Python tracker <http://bugs.python.org/issue17

[issue23420] python -m cProfile -s fails with non informative message

2016-05-17 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Any info regarding that? Patch seems good and it actually works. -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue23

[issue26307] no PGO for built-in modules with `make profile-opt`

2016-08-31 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Pinging here. Christos could you test the patch? -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue26

[issue28409] test.regrtest does not support multiple -x flags

2016-10-10 Thread Charalampos Stratakis
New submission from Charalampos Stratakis: Until python3.6.0a04 it was possible to pass multiple times the -x option at regrtest. However since the 3.6.0b1 when trying the same thing I get an error. Test names are random. python3 -m test.regrtest -x test_venv -x test_gdb usage: python -m

[issue28468] Add platform.linux_os_release()

2016-10-18 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Also there is an external project now aiming to provide this functionality: https://github.com/nir0s/distro -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue28

[issue21590] Systemtap and DTrace support

2016-11-02 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Fedora so far has been using the systemtap patch downstream from dmalcolm [0]. So for 3.6 by removing the systemtap patch (it cannot be applied anymore cleanly) and by enabling the --with-dtrace configure flag I get this error [1]: make: *** [Makefile

[issue28604] Exception raised by python3.5 when using en_GB locale

2016-11-04 Thread Charalampos Stratakis
Changes by Charalampos Stratakis : -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue28604> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21590] Systemtap and DTrace support

2016-11-08 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: @Łukasz Dug a bit more to it. Yes it is RPM specific for that case, in the sense that we create different subfolders for the debug and the normal(optimized) builds under the build/ dir, where the Include directory does not exist. the dtrace wrapper

[issue21590] Systemtap and DTrace support

2016-11-21 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: @Łukasz Would it be possible to review the patch? Or is it preferable to open a new issue? -- ___ Python tracker <http://bugs.python.org/issue21

[issue28689] OpenSSL 1.1.0c test failures

2016-11-21 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Fixed upstream: https://github.com/openssl/openssl/commit/beacb0f0c1ae7b0542fe053b95307f515b578eb7 -- nosy: +cstratak ___ Python tracker <http://bugs.python.org/issue28

<    1   2   3