[issue33010] os.path.isdir() returns True for broken directory symlinks or junctions

2019-09-11 Thread Steve Dower
Steve Dower added the comment: Fixed in 3.8 by changes to os.stat implementation. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue35603] table header in output of difflib.HtmlDiff.make_table is not escaped and can be rendered as code in the browser

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15563 pull_request: https://github.com/python/cpython/pull/15922 ___ Python tracker ___ __

[issue35603] table header in output of difflib.HtmlDiff.make_table is not escaped and can be rendered as code in the browser

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset c78dae8d2b890d487e428dce00c7f600612cce7b by Julien Palard (Xtreak) in branch 'master': bpo-35603: Add a note on difflib table header interpreted as HTML (GH-11439) https://github.com/python/cpython/commit/c78dae8d2b890d487e428dce00c7f600612cce7b

[issue36862] Add Visual Studio 2019 support to PCBuild/env.bat

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue36672] A compiler warning in winreg.SetValue()

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- assignee: -> steve.dower versions: +Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list m

[issue433625] bug in PyThread_release_lock()

2019-09-11 Thread Kirill Smelkov
Kirill Smelkov added the comment: I still believe there is a race here and it can lead to MEMORY CORRUPTION and DEADLOCK: https://bugs.python.org/issue38106. -- nosy: +navytux ___ Python tracker __

[issue37972] unittest.mock.call does not chain __getitem__ to another _Call object

2019-09-11 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: If we go ahead with this then we should also support other dunder methods of tuple like __setitem__ and so on. -- nosy: +cjw296, mariocj89, michael.foord versions: -Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15564 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15924 ___ Python tracker ___ _

[issue8410] Fix emulated lock to be 'fair'

2019-09-11 Thread Kirill Smelkov
Kirill Smelkov added the comment: At least condition variable signalling has to be moved to be done under mutex for correctness: https://bugs.python.org/issue38106. -- nosy: +navytux ___ Python tracker _

[issue37409] relative import without parent succeeds with builtins.__import__

2019-09-11 Thread Brett Cannon
Brett Cannon added the comment: New changeset 0a6693a469cfb1dd5c8048d8cb4231a7b5883251 by Brett Cannon in branch '3.8': [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913) https://github.com/python/cpython/commit/0a6693a469cfb1dd5c8048d8cb4231a7b5883251 -- ___

[issue37409] relative import without parent succeeds with builtins.__import__

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15565 pull_request: https://github.com/python/cpython/pull/15925 ___ Python tracker ___ __

[issue38105] hash collision when hash(x) == -2 causes many calls to __eq__

2019-09-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue35066] Inconsistency between dangling '%' handling in time.strftime() and datetime.strftime()

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset f3e430b07975c84cf34c927851df234d04d5753f by Miss Islington (bot) in branch '3.8': bpo-35066: Make trailing percent test more portable. (GH-15907) https://github.com/python/cpython/commit/f3e430b07975c84cf34c927851df234d04d5753f -- ___

[issue35066] Inconsistency between dangling '%' handling in time.strftime() and datetime.strftime()

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset 0553369b9827bb5497bb7a65f64dd259781ae792 by Miss Islington (bot) in branch '3.7': bpo-35066: Make trailing percent test more portable. (GH-15907) https://github.com/python/cpython/commit/0553369b9827bb5497bb7a65f64dd259781ae792 -- ___

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

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: Thank you Tim for the reasoned issue and proposed solutions. After reviewing these proposals with @eric.snow, we've decided that this approach is dangerous in that the proposed approaches has the potential to expose users unexpectedly to non-compliant behav

[issue35168] shlex punctuation_chars inconsistency

2019-09-11 Thread Vinay Sajip
Change by Vinay Sajip : -- pull_requests: +15566 pull_request: https://github.com/python/cpython/pull/15926 ___ Python tracker ___ _

[issue35168] shlex punctuation_chars inconsistency

2019-09-11 Thread Vinay Sajip
Change by Vinay Sajip : -- pull_requests: +15567 pull_request: https://github.com/python/cpython/pull/15927 ___ Python tracker ___ _

[issue20504] cgi.FieldStorage, multipart, missing Content-Length

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset e3bd941e4e6f4465f17a0e5a4a6bdf4ea0afdd0d by Miss Islington (bot) in branch '3.8': bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (GH-10638) https://github.com/python/cpython/commit/e3bd941e4e6f4465f17a0e5a4a6bdf4ea0afdd0d

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread Andrew Svetlov
New submission from Andrew Svetlov : 1. Factories are recommended way for a task and a future creation. 2. Consider this task as asyncio tests tidy up. -- components: asyncio keywords: 3.3regression messages: 351837 nosy: asvetlov, yselivanov priority: normal severity: normal status: op

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +15568 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15928 ___ Python tracker ___ _

[issue20504] cgi.FieldStorage, multipart, missing Content-Length

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset 99f0e81f43f64b83e18e8cb2a0b66c53a81a74ab by Miss Islington (bot) in branch '3.7': bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (GH-10638) https://github.com/python/cpython/commit/99f0e81f43f64b83e18e8cb2a0b66c53a81a74ab

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: -3.3regression, patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue35603] table header in output of difflib.HtmlDiff.make_table is not escaped and can be rendered as code in the browser

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset 44e36e80456dabaeb59c6e2a93e0c1322bfeb179 by Miss Islington (bot) in branch '3.8': bpo-35603: Add a note on difflib table header interpreted as HTML (GH-11439) https://github.com/python/cpython/commit/44e36e80456dabaeb59c6e2a93e0c1322bfeb179 --

[issue38103] Duplicate label "examples" in the Docs

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset e0dd713370f94d0f4a59604cc769e0cc643b7740 by Miss Islington (bot) in branch '3.8': bpo-38103: fix conflicting labels in the docs. (GH-15906) https://github.com/python/cpython/commit/e0dd713370f94d0f4a59604cc769e0cc643b7740 -- nosy: +mis

[issue35168] shlex punctuation_chars inconsistency

2019-09-11 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset aca878ecf18b9e915e9b551f095a550b5c6e9bc5 by Vinay Sajip in branch '3.7': [3.7] bpo-35168: Make shlex.punctuation_chars read-only (GH-11631) (GH-15926) https://github.com/python/cpython/commit/aca878ecf18b9e915e9b551f095a550b5c6e9bc5 -- _

[issue35168] shlex punctuation_chars inconsistency

2019-09-11 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 3b92ddb7612fd8fe2be95ff3d8022ed18335b13f by Vinay Sajip in branch '3.8': [3.8] bpo-35168: Make shlex.punctuation_chars read-only (GH-11631) (GH-15927) https://github.com/python/cpython/commit/3b92ddb7612fd8fe2be95ff3d8022ed18335b13f -- _

[issue35649] http.client doesn't close. Infinite loop

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15570 pull_request: https://github.com/python/cpython/pull/15931 ___ Python tracker ___ __

[issue35649] http.client doesn't close. Infinite loop

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15569 pull_request: https://github.com/python/cpython/pull/15930 ___ Python tracker ___ __

[issue35649] http.client doesn't close. Infinite loop

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset 62cf6981425c6a6b136c5e2abef853364f535e9d by Julien Palard (Ashwin Ramaswami) in branch 'master': bpo-35649: update http client example (GH-11441) https://github.com/python/cpython/commit/62cf6981425c6a6b136c5e2abef853364f535e9d -- nosy:

[issue37326] Windows LICENSE.txt do not contain libffi license

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 8fcaffb048d2359a4c06ed5d8fbbf46d3ae1a472 by Zachary Ware (Steve Dower) in branch 'master': bpo-37326: Include libffi license when available (GH-15921) https://github.com/python/cpython/commit/8fcaffb048d2359a4c06ed5d8fbbf46d3ae1a472 --

[issue37326] Windows LICENSE.txt do not contain libffi license

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15571 pull_request: https://github.com/python/cpython/pull/15932 ___ Python tracker ___ __

[issue37972] unittest.mock.call does not chain __getitem__ to another _Call object

2019-09-11 Thread Ben Hsing
Ben Hsing added the comment: Agreed. I've submitted a new commit with the call chaining behavior now generalized for all dunder methods by delegating the resolution of all attributes not directly in the _Call object's __dict__ keys to the getattr method. -- status: open -> pending

[issue34519] Add additional aliases for HP Roman 8

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: As an enhancement, this change should not be backported. -- nosy: +jaraco versions: +Python 3.9 -Python 3.6, Python 3.7 ___ Python tracker _

[issue35943] PyImport_GetModule() can return partially-initialized module

2019-09-11 Thread Brett Cannon
Change by Brett Cannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35168] shlex punctuation_chars inconsistency

2019-09-11 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue35943] PyImport_GetModule() can return partially-initialized module

2019-09-11 Thread Brett Cannon
Brett Cannon added the comment: New changeset 37c22206981f52ae35c28b39f7530f8438afbfdb by Brett Cannon (Joannah Nanjekye) in branch 'master': bpo-35943: Prevent PyImport_GetModule() from returning a partially-initialized module (GH-15057) https://github.com/python/cpython/commit/37c22206981f

[issue37409] relative import without parent succeeds with builtins.__import__

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset f3480ad08823a9bc7df490bb5b54593d9483be70 by Miss Islington (bot) in branch '3.7': [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913) https://github.com/python/cpython/commit/f3480ad08823a9bc7df490bb5b54593d9483be70 -

[issue37967] release candidate is not gpg signed (and missing release workflow)?

2019-09-11 Thread László Kiss Kollár
László Kiss Kollár added the comment: We are seeing the same issue with 3.8b4: + curl -fsSLO https://www.python.org/ftp/python/3.8.0/Python-3.8.0b4.tgz + curl -fsSLO https://www.python.org/ftp/python/3.8.0/Python-3.8.0b4.tgz.asc + gpg --verify Python-3.8.0b4.tgz.asc gpg: Signature made Thu 29 A

[issue37967] Beta GPG signature check failing

2019-09-11 Thread László Kiss Kollár
Change by László Kiss Kollár : -- title: release candidate is not gpg signed (and missing release workflow)? -> Beta GPG signature check failing ___ Python tracker ___

[issue38106] Race in PyThread_release_lock - can lead to memory corruption and deadlock

2019-09-11 Thread Guido van Rossum
Change by Guido van Rossum : -- assignee: -> benjamin.peterson nosy: -gvanrossum title: Race in PyThread_release_lock - can lead to MEMORY CORRUPTION and DEADLOCK -> Race in PyThread_release_lock - can lead to memory corruption and deadlock ___ P

[issue37972] unittest.mock.call does not chain __getitem__ to another _Call object

2019-09-11 Thread Ben Hsing
Change by Ben Hsing : -- status: pending -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue37967] Beta GPG signature check failing

2019-09-11 Thread Christian Heimes
Christian Heimes added the comment: It looks like you don't have Łukasz key and your GnuPG is not configured for automatic key download. Automatic key download works for me: $ gpg --verify Python-3.8.0b4.tgz.asc gpg: assuming signed data in 'Python-3.8.0b4.tgz' gpg: Signature made 2019-08-30

[issue35224] PEP 572: Assignment Expressions

2019-09-11 Thread Emily Morehouse
Change by Emily Morehouse : -- pull_requests: +15572 pull_request: https://github.com/python/cpython/pull/15935 ___ Python tracker ___ _

[issue35649] http.client doesn't close. Infinite loop

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset 43fb3bb223338511a7aee9b55d75af4a415134dc by Julien Palard (Miss Islington (bot)) in branch '3.8': bpo-35649: update http client example (GH-11441) (GH-15930) https://github.com/python/cpython/commit/43fb3bb223338511a7aee9b55d75af4a415134dc

[issue35640] Allow passing PathLike arguments to SimpleHTTPRequestHandler

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 781266ebb60e7ac781a3e07030d92275721ff3cf by Zachary Ware (Géry Ogam) in branch 'master': bpo-35640: Allow passing PathLike arguments to SimpleHTTPRequestHandler (GH-11398) https://github.com/python/cpython/commit/781266ebb60e7ac781a3e07030d9227572

[issue37326] Windows LICENSE.txt do not contain libffi license

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue36315] Unable to install Python 3.7.2

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue37409] relative import without parent succeeds with builtins.__import__

2019-09-11 Thread Brett Cannon
Change by Brett Cannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35640] Allow passing PathLike arguments to SimpleHTTPRequestHandler

2019-09-11 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ __

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 9aee90018a5213e3529768e0b873955d23f5e50b by Andrew Svetlov in branch 'master': bpo-38107: Replace direct future and task contructor calls with factories in asyncio tests (GH-15928) https://github.com/python/cpython/commit/9aee90018a5213e3529768

[issue37305] Add MIME type for Web App Manifest

2019-09-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- versions: +Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15573 pull_request: https://github.com/python/cpython/pull/15937 ___ Python tracker ___ __

[issue34519] Add additional aliases for HP Roman 8

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15574 pull_request: https://github.com/python/cpython/pull/15938 ___ Python tracker ___ __

[issue38102] Document importlib.machinery.WindowsRegistryFinder.DEBUG_BUILD

2019-09-11 Thread Brett Cannon
Brett Cannon added the comment: Forgot that this class is deprecated. -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34519] Add additional aliases for HP Roman 8

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset a828514cc3715ebbc700fefa41c0ef044cbd6741 by Jason R. Coombs (Michael Osipov) in branch 'master': bpo-34519: Add additional aliases for HP Roman 8 (GH-8956) https://github.com/python/cpython/commit/a828514cc3715ebbc700fefa41c0ef044cbd6741

[issue16296] Patch to fix building on Win32/64 under VS 2010

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue9782] _multiprocessing.c warnings under 64-bit Windows

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ _

[issue38091] Import deadlock detection causes deadlock

2019-09-11 Thread Eric Snow
Change by Eric Snow : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue9784] _msi.c warnings under 64-bit Windows

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35267] reproducible deadlock with multiprocessing.Pool

2019-09-11 Thread Davin Potts
Davin Potts added the comment: I second what @vstinner already said in the comments for PR11143, that this should not merely be documented. -- nosy: +davin ___ Python tracker ___

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ __

[issue14094] ntpath.realpath() should use GetFinalPathNameByHandle()

2019-09-11 Thread Steve Dower
Steve Dower added the comment: As of 3.8, it (sort of) does. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue35898] The TARGETDIR variable must be provided when invoking this installer

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue35649] http.client doesn't close. Infinite loop

2019-09-11 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35705] libffi support is not there for windows on ARM64

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35649] http.client doesn't close. Infinite loop

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset 0fd8c0560b2099d2c976b17cf01cb596badc1ec6 by Julien Palard (Miss Islington (bot)) in branch '3.7': bpo-35649: update http client example (GH-11441) (GH-15931) https://github.com/python/cpython/commit/0fd8c0560b2099d2c976b17cf01cb596badc1ec6

[issue33459] Fix "tuple display" mention in Expressions

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15575 pull_request: https://github.com/python/cpython/pull/15939 ___ Python tracker ___ __

[issue33459] Fix "tuple display" mention in Expressions

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset dc269971091710563a0d730a0d4b084901826c15 by Miss Islington (bot) (Andre Delfino) in branch 'master': bpo-33459: Fix "tuple displays" term in Expressions.rst (GH-6760) https://github.com/python/cpython/commit/dc269971091710563a0d730a0d4b084901826

[issue33459] Fix "tuple display" mention in Expressions

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15576 pull_request: https://github.com/python/cpython/pull/15940 ___ Python tracker ___ __

[issue35981] shutil make_archive create wrong file when base name contains dots at end

2019-09-11 Thread Steve Dower
Steve Dower added the comment: We can fix this - trailing dots before an extension are supported. Probably the best fix is to defer the "abspath" call until after the extension has been added (or apply "abspath" to the directory and then put the base name back on). -- versions: +Pyt

[issue33944] Deprecate and remove pth files

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset f9b5840fb4497a9e2ba2c1f01ad0dafba04c8496 by Miss Islington (bot) (native-api) in branch 'master': bpo-33944: note about the intended use of code in .pth files (GH-10131) https://github.com/python/cpython/commit/f9b5840fb4497a9e2ba2c1f01ad0dafba0

[issue33944] Deprecate and remove pth files

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15577 pull_request: https://github.com/python/cpython/pull/15942 ___ Python tracker ___ __

[issue36711] duplicate method definition in Lib/email/feedparser.py

2019-09-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset b239ab9107cd5bcbfbfa3b46290191298718ced3 by Benjamin Peterson (Zackery Spytz) in branch '2.7': closes bpo-36711: Remove duplicate method in Lib/email/feedparser.py. (GH-14801) https://github.com/python/cpython/commit/b239ab9107cd5bcbfbfa3b462

[issue38108] Everything in Mock should inherit from Base

2019-09-11 Thread Lisa Roach
New submission from Lisa Roach : Everything within Mock should be inheriting from the top-level parent class, Base (and properly call super). For multiple inheritance to work correctly they all should be inheriting from the same parent class ultimately. Classes that need update: MagicMixin

[issue36712] duplicate method definition in Lib/email/test/test_email_renamed.py

2019-09-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset f9db011c323556ec68761263c6b91b2f75ca95ba by Benjamin Peterson (Zackery Spytz) in branch '2.7': closes bpo-36712: Fix duplicate method in Lib/email/test/test_email_renamed.py. (GH-14800) https://github.com/python/cpython/commit/f9db011c323556

[issue31163] Return destination path in Path.rename and Path.replace

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 088a09af4bdeff52b9dedeb7acd1e82069f37d98 by Jason R. Coombs (hui shang) in branch 'master': bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) https://github.com/python/cpython/commit/088a09af4bdef

[issue31163] Return destination path in Path.rename and Path.replace

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15578 pull_request: https://github.com/python/cpython/pull/15944 ___ Python tracker ___ __

[issue18697] Unify arguments names in Unicode object C API documentation

2019-09-11 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- versions: +Python 3.8, Python 3.9 -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker ___ ___ Pytho

[issue34519] Add additional aliases for HP Roman 8

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15579 pull_request: https://github.com/python/cpython/pull/15945 ___ Python tracker ___ __

[issue37326] Windows LICENSE.txt do not contain libffi license

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset da38ec1d4862ffb58faec41ed367719e81801766 by Miss Islington (bot) in branch '3.8': bpo-37326: Include libffi license when available (GH-15921) https://github.com/python/cpython/commit/da38ec1d4862ffb58faec41ed367719e81801766 -- nosy: +m

[issue37305] Add MIME type for Web App Manifest

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15580 pull_request: https://github.com/python/cpython/pull/15946 ___ Python tracker ___ __

[issue37305] Add MIME type for Web App Manifest

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 4b41745b3c65ef4807cd1108dce12d3e0c173f20 by Jason R. Coombs (Filip Š) in branch 'master': bpo-37305: add MIME type for Web App Manifest (#14199) https://github.com/python/cpython/commit/4b41745b3c65ef4807cd1108dce12d3e0c173f20 -- nosy:

[issue38054] enhance pdb.set_trace() to run when the specified condition is true

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: I was actually leaning in favor of this, but Jason's examples are very compelling and require no changes to other `breakpoint()`-compatible debuggers to work as expected. Thanks for the idea, though! -- nosy: +zach.ware resolution: -> rejected stage:

[issue37151] Calling code cleanup after PEP 590

2019-09-11 Thread Petr Viktorin
Petr Viktorin added the comment: All linked PRs are merged, so I'm closing this. Feel free to reopen if there's more! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue38109] Missing constants in Lib/stat.py

2019-09-11 Thread Ronan Lamy
New submission from Ronan Lamy : According to the docs, stat should include constants S_IFDOOR, S_IFPORT, S_IFWHT as well as the related S_IS... functions. However, these are only defined in _stat. I know that stat is a bit special (see bpo-11016), but that goes against PEP 399. -- c

[issue33944] Deprecate and remove pth files

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset d1d968d45df1a900b0600c4d296b180aa978336d by Stéphane Wirtel (Miss Islington (bot)) in branch '3.8': bpo-33944: note about the intended use of code in .pth files (GH-10131) (GH-15942) https://github.com/python/cpython/commit/d1d968d45df1a900b060

[issue12128] Allow an abc.abstractproperty to be overridden by an instance data attribute

2019-09-11 Thread Eric Snow
Eric Snow added the comment: I'm guessing it should have been https://mail.python.org/pipermail/python-list/2011-May/604497.html. -- ___ Python tracker ___ __

[issue33459] Fix "tuple display" mention in Expressions

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset 4c2fa5c474af81487c7a8d4188f9afd80d4d769b by Stéphane Wirtel (Miss Islington (bot)) in branch '3.7': bpo-33459: Fix "tuple displays" term in Expressions.rst (GH-6760) (GH-15939) https://github.com/python/cpython/commit/4c2fa5c474af81487c7a8d4188f

[issue33459] Fix "tuple display" mention in Expressions

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset 4d2babd99022bf43dc659d9fe5700c1fc13808c4 by Stéphane Wirtel (Miss Islington (bot)) in branch '3.8': bpo-33459: Fix "tuple displays" term in Expressions.rst (GH-6760) (GH-15940) https://github.com/python/cpython/commit/4d2babd99022bf43dc659d9fe57

[issue38110] Use fdwalk() within os.closerange() impl if available

2019-09-11 Thread Gregory P. Smith
New submission from Gregory P. Smith : On POSIX platforms that support the fdwalk() API, use it within the os.closerange() implementation. -- components: Demos and Tools messages: 351875 nosy: gregory.p.smith priority: normal severity: normal stage: patch review status: open title: Use

[issue38110] Use fdwalk() within os.closerange() impl if available

2019-09-11 Thread Jakub Kulik
Change by Jakub Kulik : -- keywords: +patch pull_requests: +15581 pull_request: https://github.com/python/cpython/pull/15224 ___ Python tracker ___

[issue37888] Sub-interpreters : Confusing docs about state after calling Py_NewInterpreter()

2019-09-11 Thread Eric Snow
Change by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue37252] devpoll test failures on Solaris

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15583 pull_request: https://github.com/python/cpython/pull/15948 ___ Python tracker ___ __

[issue38093] Update MagicMock __aenter__ and __aexit__ to return AsyncMock's

2019-09-11 Thread Lisa Roach
Change by Lisa Roach : -- keywords: +patch pull_requests: +15582 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15947 ___ Python tracker __

[issue37252] devpoll test failures on Solaris

2019-09-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 95da826db9ed4acbc81f32296f14429c06bd2124 by Benjamin Peterson (Jakub Kulík) in branch 'master': closes bpo-37252: Fix devpoll tests. (GH-14017) https://github.com/python/cpython/commit/95da826db9ed4acbc81f32296f14429c06bd2124 -- nosy

[issue37972] unittest.mock.call does not chain __getitem__ to another _Call object

2019-09-11 Thread Ben Hsing
Ben Hsing added the comment: Correction. I've now done this by delegating the resolution of attributes belonging to the tuple class to _Call.__getattr__ instead. Passed all build tests. -- ___ Python tracker _

[issue37872] Move _Py_IDENTIFIER statics in Python/import.c to top of the file

2019-09-11 Thread Eric Snow
Eric Snow added the comment: Yeah, I'm fine with dropping this. In the file we have some global and some local, so my suggestion was to consolidate a little. However, it mostly doesn't matter. :) -- resolution: -> rejected stage: needs patch -> resolved status: open -> closed ___

[issue37993] os.path.realpath on Windows resolves mapped network drives

2019-09-11 Thread Eryk Sun
Eryk Sun added the comment: > It's a few steps deep, but DefineDosDeviceW() [1] specifies that it > creates junctions, and while it's not necessarily obvious how to get > from SUBST to that page, Wikipedia managed it [2]. Take care to not conflate device junctions with the file-system repars

<    1   2   3   4   5   >