[issue38376] ./configure --with-assertions generates a broken build

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: I pushed one more fix in https://bugs.python.org/issue36389#msg354138 -- ___ Python tracker ___ _

[issue38376] ./configure --with-assertions generates a broken build

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: After pushing some fixes to 3.8 and master branches, I tested the following commands in 3.7, 3.8 and master branches: make distclean ./configure --prefix=$HOME/.local --with-assertions make ./python -m test -j0 test_bytes test_gc test_capi These commands now

[issue38294] Documentation on 3.6->3.7 re.escape no longer escaping "/" or ":" should be obvious

2019-10-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 15ae75d660befe643ed42eb2707a557cea97256c by Serhiy Storchaka (Ricardo Bánffy) in branch 'master': bpo-38294: Add list of no-longer-escaped chars to re.escape documentation. (GH-16442) https://github.com/python/cpython/commit/15ae75d660befe643e

[issue38294] Documentation on 3.6->3.7 re.escape no longer escaping "/" or ":" should be obvious

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16212 pull_request: https://github.com/python/cpython/pull/16626 ___ Python tracker ___ __

[issue38344] activate.bat else needs to be on the same line as the if

2019-10-07 Thread Steve Dower
Steve Dower added the comment: New changeset e310af9e2941c2fbb7370e003276cc37eb230f16 by Steve Dower (James Abel) in branch 'master': bpo-38344: Fix syntax in activate.bat (GH-16533) https://github.com/python/cpython/commit/e310af9e2941c2fbb7370e003276cc37eb230f16 -- __

[issue38294] Documentation on 3.6->3.7 re.escape no longer escaping "/" or ":" should be obvious

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset b731fc521cf78e53268e35777d836ca80e7ab305 by Miss Islington (bot) in branch '3.8': bpo-38294: Add list of no-longer-escaped chars to re.escape documentation. (GH-16442) https://github.com/python/cpython/commit/b731fc521cf78e53268e35777d836ca80e7

[issue38344] activate.bat else needs to be on the same line as the if

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16213 pull_request: https://github.com/python/cpython/pull/16627 ___ Python tracker ___ __

[issue38344] activate.bat else needs to be on the same line as the if

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16214 pull_request: https://github.com/python/cpython/pull/16628 ___ Python tracker ___ __

[issue38344] activate.bat else needs to be on the same line as the if

2019-10-07 Thread Steve Dower
Steve Dower added the comment: I've merged the fix so that it can be cherry-picked for the upcoming releases. I'd still like to see the tests enhanced to be able to detect error output in the scripts, but those don't need to necessarily make it into the upcoming releases. -- __

[issue36389] Add gc.enable_object_debugger(): detect corrupted Python objects in the GC

2019-10-07 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +16215 pull_request: https://github.com/python/cpython/pull/16629 ___ Python tracker ___ __

[issue38344] activate.bat else needs to be on the same line as the if

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset bfb5f9a66cc348c9cf25c857ad9910479e587517 by Miss Islington (bot) in branch '3.7': bpo-38344: Fix syntax in activate.bat (GH-16533) https://github.com/python/cpython/commit/bfb5f9a66cc348c9cf25c857ad9910479e587517 -- nosy: +miss-islingt

[issue38344] activate.bat else needs to be on the same line as the if

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset 4880e5a1b66d9175fcc402cb0288bc1898356831 by Miss Islington (bot) in branch '3.8': bpo-38344: Fix syntax in activate.bat (GH-16533) https://github.com/python/cpython/commit/4880e5a1b66d9175fcc402cb0288bc1898356831 -- __

[issue36389] Add gc.enable_object_debugger(): detect corrupted Python objects in the GC

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: New changeset 7775349895088a7ae68cecf0c74cf817f15e2c74 by Victor Stinner in branch 'master': bpo-36389: Add newline to _PyObject_AssertFailed() (GH-16629) https://github.com/python/cpython/commit/7775349895088a7ae68cecf0c74cf817f15e2c74 --

[issue38392] Ensure that objects entering the GC are valid

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1b1845569539db5c1a6948a5d32daea381f1e35f by Victor Stinner in branch 'master': bpo-38392: PyObject_GC_Track() validates object in debug mode (GH-16615) https://github.com/python/cpython/commit/1b1845569539db5c1a6948a5d32daea381f1e35f -

[issue38392] Ensure that objects entering the GC are valid

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: Ok, I pushed a change. Let's see how third party projects like it :-) We still have time to revert it if it causes too many damage. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tra

[issue38399] Error message persists when reimporting library

2019-10-07 Thread Steven D'Aprano
Steven D'Aprano added the comment: Importing the second and subsequent times reloads the module from the system cache. Instead, you can: - run ``del sys.modules['hexdump']`` and then ``import hexdump``; - call ``importlib.reload(hexdump)``; or - restart the REPL. Remember that reloading th

[issue38400] Python segfaults when configured with --with-pydebug --with-trace-refs

2019-10-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This is a regression introduced by: commit 6876257eaabdb30f27ebcbd7d2557278ce2e5705 Author: Victor Stinner Date: Mon Oct 7 18:42:01 2019 +0200 bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612) bpo-36389, bpo-3

[issue38400] Python segfaults when configured with --with-pydebug --with-trace-refs

2019-10-07 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : configure --with-pydebug --with-trace-refs && make Modules/gcmodule.c:378: visit_decref: Assertion "!_PyObject_IsFreed(op)" failed Fatal Python error: _PyObject_AssertFailed Python runtime state: preinitialized Current thread 0x7f6e2863e740 (mos

[issue38400] Python segfaults when configured with --with-pydebug --with-trace-refs

2019-10-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +16216 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16630 ___ Python tracker __

[issue38400] Python segfaults when configured with --with-pydebug --with-trace-refs

2019-10-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue38400] Python segfaults when configured with --with-pydebug --with-trace-refs

2019-10-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 36e33c360ed7716a2b5ab2b53210da81f8ce1295 by Pablo Galindo in branch 'master': bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-16630) https://github.com/python/cpython/commit/36e33c360ed7716a2b5ab2b53210da81f8

[issue38070] visit_decref(): add an assertion to check that the object is not freed

2019-10-07 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +16217 pull_request: https://github.com/python/cpython/pull/16631 ___ Python tracker ___ __

[issue38395] proxy_contains (weakref.proxy) can access an object with 0 refcount

2019-10-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +16218 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16632 ___ Python tracker __

[issue38401] Make dataclass attribute docstrings accessible

2019-10-07 Thread John Parejko
New submission from John Parejko : Dataclasses provide a very straightforward way to specify structured data. One can trivally document a dataclass's attributes via triple-quoted attribute docstrings per PEP 257. However, those docstrings are not accessible to pydoc, so they are lost to users

[issue38395] proxy_contains (weakref.proxy) can access an object with 0 refcount

2019-10-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- versions: +Python 3.7, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue27542] Segfault in gcmodule.c:360 visit_decref

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: Julien: I'm working on enhancement of debug traces on visit_decref(). Are you still able to reproduce the crash in 2019? I failed to reproduce the bug in a virtual environment with: * Python 2.7.14 * pip 8.1.2 * cffi 1.7.0 $ virtualenv -p python2 venv Runni

[issue38395] proxy_contains (weakref.proxy) can access an object with 0 refcount

2019-10-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- versions: +Python 2.7, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue37531] Fix regrtest timeout for subprocesses: regrtest -jN --timeout=SECONDS

2019-10-07 Thread Kubilay Kocak
Change by Kubilay Kocak : -- nosy: +koobs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue38395] proxy_contains (weakref.proxy) can access an object with 0 refcount

2019-10-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +benjamin.peterson, lukasz.langa, ned.deily priority: normal -> release blocker ___ Python tracker ___ __

[issue38070] visit_decref(): add an assertion to check that the object is not freed

2019-10-07 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4d5f94b8cd20f804c7868c5395a15aa6032f874c by Victor Stinner in branch 'master': bpo-38070: Enhance visit_decref() debug trace (GH-16631) https://github.com/python/cpython/commit/4d5f94b8cd20f804c7868c5395a15aa6032f874c -- _

[issue38395] proxy_contains (weakref.proxy) can access an object with 0 refcount

2019-10-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I'm marking this as release blocker for the 3.8 incoming release so we don't forget about fixing this. -- nosy: +pablogsal ___ Python tracker ___

[issue38388] Pickle protocol v 5 needs to be documented

2019-10-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue37664] Update bundled pip and setuptools

2019-10-07 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +16219 pull_request: https://github.com/python/cpython/pull/16633 ___ Python tracker ___ ___

[issue37664] Update bundled pip and setuptools

2019-10-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset e7e58fe03175adc660c192e724b91ae7ccba9cb6 by Benjamin Peterson in branch '2.7': [2.7] bpo-37664: Update ensurepip bundled wheels, again (GH-16633) https://github.com/python/cpython/commit/e7e58fe03175adc660c192e724b91ae7ccba9cb6 -- n

[issue38216] Fix for issue30458 (HTTP Header Injection) prevents crafting invalid requests

2019-10-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset f5b1abbb3b0083381925dcd5898ae6d019224826 by Benjamin Peterson (Jason R. Coombs) in branch '2.7': [2.7] bpo-38216, bpo-36274: Allow subclasses to separately override validation and encoding behavior (GH-16476) https://github.com/python/cpytho

[issue36274] http.client cannot send non-ASCII request lines

2019-10-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset f5b1abbb3b0083381925dcd5898ae6d019224826 by Benjamin Peterson (Jason R. Coombs) in branch '2.7': [2.7] bpo-38216, bpo-36274: Allow subclasses to separately override validation and encoding behavior (GH-16476) https://github.com/python/cpytho

[issue38395] proxy_contains (weakref.proxy) can access an object with 0 refcount

2019-10-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: Note I'm going to ignore this for the purposes of 2.7.17 because it doesn't look like a new regression. -- ___ Python tracker ___ ___

[issue31589] Links for French documentation PDF is broken: LaTeX issue with non-ASCII characters?

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16220 pull_request: https://github.com/python/cpython/pull/16636 ___ Python tracker ___ __

[issue32200] Full docs build of 3.6 and 3.7 failing since 2017-10-15

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16221 pull_request: https://github.com/python/cpython/pull/16636 ___ Python tracker ___ __

[issue35036] logger failure in suspicious.py

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16222 pull_request: https://github.com/python/cpython/pull/16637 ___ Python tracker ___ __

[issue38401] Make dataclass attribute docstrings accessible

2019-10-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue32200] Full docs build of 3.6 and 3.7 failing since 2017-10-15

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset d9b321692b6770c0fe7cb7ba05f9bd5c6082a880 by Miss Islington (bot) in branch '2.7': bpo-31589 : Build PDF using xelatex for better UTF8 support. (GH-3940) https://github.com/python/cpython/commit/d9b321692b6770c0fe7cb7ba05f9bd5c6082a880

[issue31589] Links for French documentation PDF is broken: LaTeX issue with non-ASCII characters?

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset d9b321692b6770c0fe7cb7ba05f9bd5c6082a880 by Miss Islington (bot) in branch '2.7': bpo-31589 : Build PDF using xelatex for better UTF8 support. (GH-3940) https://github.com/python/cpython/commit/d9b321692b6770c0fe7cb7ba05f9bd5c6082a880

[issue35036] logger failure in suspicious.py

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset e78d79c15cc53bdf8161d41c627cbfb551d8ee96 by Miss Islington (bot) in branch '2.7': bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024) https://github.com/python/cpython/commit/e78d79c15cc53bdf8161d41c627cbfb551d8ee96 -

[issue31036] building the python docs requires the blurb module

2019-10-07 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +16223 pull_request: https://github.com/python/cpython/pull/16638 ___ Python tracker ___ ___

[issue31036] building the python docs requires the blurb module

2019-10-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 0bd59d655280ad4c4aff2d327789815b89caee18 by Benjamin Peterson in branch '2.7': [2.7] bpo-31036: Allow sphinx and blurb to be found automatically (GH-16638) https://github.com/python/cpython/commit/0bd59d655280ad4c4aff2d327789815b89caee18 --

[issue38402] crypt: check error from library call

2019-10-07 Thread Benjamin Peterson
New submission from Benjamin Peterson : (split off from #36161) The crypt module currently doesn't check for errors from crypt or crypt_r. It should. -- messages: 354166 nosy: benjamin.peterson priority: normal severity: normal status: open title: crypt: check error from library call

[issue38402] crypt: check error from library call

2019-10-07 Thread Antonio Gutierrez
Change by Antonio Gutierrez : -- keywords: +patch pull_requests: +16224 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16599 ___ Python tracker __

[issue38403] nuspec iconUrl field is deprecated

2019-10-07 Thread Steve Dower
New submission from Steve Dower : The iconUrl field has to be replaced with an icon field, and we need to include the file in the package now. Details at https://docs.microsoft.com/en-us/nuget/reference/nuspec#icon -- assignee: steve.dower components: Windows messages: 354167 nosy: pa

[issue38402] crypt: check error from library call

2019-10-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c by Benjamin Peterson (Antonio Gutierrez) in branch 'master': closes bpo-38402: Check error of primitive crypt/crypt_r. (GH-16599) https://github.com/python/cpython/commit/0d3fe8ae4961bf551e7d5e42559e2e

[issue38404] Poker Online

2019-10-07 Thread Poker Online Jakarta
New submission from Poker Online Jakarta : https://www.jakartapoker.net/";>poker online [url=https://www.jakartapoker.net/]poker online[/url] -- components: Argument Clinic messages: 354169 nosy: larry, pokeronlinejakarta priority: normal severity: normal status: open title: Poker Onli

[issue38404] Poker Online

2019-10-07 Thread Poker Online Jakarta
Poker Online Jakarta added the comment: Situs https://www.jakartapoker.net/ adalah situs judi poker online terpercaya dan terbaik di Indonesia -- Added file: https://bugs.python.org/file48646/2.jpg ___ Python tracker

[issue38404] Poker Online

2019-10-07 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg354169 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38404] Poker Online

2019-10-07 Thread Ned Deily
Change by Ned Deily : Removed file: https://bugs.python.org/file48646/2.jpg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue38404] Poker Online

2019-10-07 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg354170 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38404] spam

2019-10-07 Thread Ned Deily
Change by Ned Deily : -- nosy: -larry, pokeronlinejakarta resolution: -> rejected stage: -> resolved status: open -> closed title: Poker Online -> spam type: crash -> ___ Python tracker __

[issue38388] Pickle protocol v 5 needs to be documented

2019-10-07 Thread Dima Tisnek
Change by Dima Tisnek : -- keywords: +patch pull_requests: +16225 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16639 ___ Python tracker ___

<    1   2