[issue34751] Hash collisions for tuples

2018-09-23 Thread Tim Peters
Tim Peters added the comment: BTW, those tests were all done under a 64-bit build. Some differences in a 32-bit build: 1. The test_tuple hash test started with 6 collisions. With the change, it went down to 4. Also changing to the FNV-1a 32-bit multiplier boosted it to 8. The test

[issue34753] Use coroutine object or coroutine function instead of coroutine

2018-09-23 Thread Windson Yang
Change by Windson Yang : -- keywords: +patch pull_requests: +8928 stage: -> patch review ___ Python tracker ___ ___

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: I had the some problem when using mypy. What does reproduce the issue is the following: * Create *two* venv environments * Install mypy in one of them * Activate the other * Run the subprocess call in the activated venv I then get a message about not being

[issue34780] Hang on startup if stdin refers to a pipe with an outstanding concurrent operation on Windows

2018-09-23 Thread Eryk Sun
Eryk Sun added the comment: > lseek() succeeds on pipes on Windows, but is nearly useless lseek isn't meaningful for pipe and character files (i.e. FILE_TYPE_PIPE and FILE_TYPE_CHAR). While SEEK_SET and SEEK_CUR operations trivially succeed in these cases, the underlying device simply

[issue34783] segmentation-fault/core dump when try to run non-existing file specified on commandline

2018-09-23 Thread Ned Deily
Change by Ned Deily : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34751] Hash collisions for tuples

2018-09-23 Thread Tim Peters
Tim Peters added the comment: FYI, using this for the guts of the tuple hash works well on everything we've discussed. In particular, no collisions in the current test_tuple hash test, and none either in the cases mixing negative and positive little ints. This all remains so using the

[issue26000] Crash in Tokenizer - Heap-use-after-free

2018-09-23 Thread William Bowling
William Bowling added the comment: > Is this still reproducible? On master (Python 3.8) with a debug build it > throws a SyntaxError. I don't have Python 3.5 installed to check this though Looks like it's fixed in master and 3.6.6 but still happening in 3.5.6 --

[issue34782] Pdb crashes when code is executed in a mapping that does not define `__contains__`

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34783] segmentation-fault/core dump when try to run non-existing file specified on commandline

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33962] IDLE: use ttk.spinbox with configdialog

2018-09-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: IDLE: use ttk.spinbox -> IDLE: use ttk.spinbox with configdialog ___ Python tracker ___ ___

[issue34751] Hash collisions for tuples

2018-09-23 Thread Tim Peters
Tim Peters added the comment: [Raymond, on boosting the multiplier on 64-bit boxes] > Yes, that would be perfectly reasonable (though to some > extent the objects in the tuple also share some of the > responsibility for getting all bits into play). It's of value independent of that. Tuples

[issue34783] segmentation-fault/core dump when try to run non-existing file specified on commandline

2018-09-23 Thread eohm
eohm added the comment: Did a quick cross-check with other Distro. With a debian stretch for example there is no SEGV and core-dump but a "(null)" output for program name instead. -- ___ Python tracker

[issue34783] segmentation-fault/core dump when try to run non-existing file specified on commandline

2018-09-23 Thread eohm
Change by eohm : -- keywords: +patch pull_requests: +8926 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34659] Inconsistency between functools.reduce & itertools.accumulate

2018-09-23 Thread Lisa Roach
Lisa Roach added the comment: New changeset 9718b59ee5f2416cdb8116ea5837b062faf0d9f8 by Lisa Roach in branch 'master': bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345) https://github.com/python/cpython/commit/9718b59ee5f2416cdb8116ea5837b062faf0d9f8 --

[issue34751] Hash collisions for tuples

2018-09-23 Thread Tim Peters
Tim Peters added the comment: Has anyone figured out the real source of the degeneration when mixing in negative integers? I have not. XOR always permutes the hash range - it's one-to-one. No possible outputs are lost, and XOR with a negative int isn't "obviously degenerate" in general:

[issue34751] Hash collisions for tuples

2018-09-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: > To my eyes, the _strongest_ case in all these messages is > for boosting the multiplier size on 64-bit boxes. That's > principled and well-motivated. Yes, that would be perfectly reasonable (though to some extent the objects in the tuple also share

[issue34783] segmentation-fault/core dump when try to run non-existing file specified on commandline

2018-09-23 Thread eohm
eohm added the comment: bug was probably introduced here: python/cpython@1976086#diff-75445bdc3b6b3dd20b005698fa165444R2443 (but I did not test the version from before that commit) -- ___ Python tracker

[issue34783] segmentation-fault/core dump when try to run non-existing file specified on commandline

2018-09-23 Thread eohm
New submission from eohm : segmentation-fault/core dump when try to run non-existing file specified on commandline (pymain_run_filename) https://github.com/docker-library/python/issues/320 -- messages: 326191 nosy: eohm priority: normal severity: normal status: open title:

[issue2771] Test issue

2018-09-23 Thread Ned Batchelder
Ned Batchelder added the comment: A test comment from nedbat -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue2771] Test issue

2018-09-23 Thread Ezio Melotti
Ezio Melotti added the comment: test -- nosy: +nedbat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2771] Test issue

2018-09-23 Thread Ezio Melotti
Ezio Melotti added the comment: test -- nosy: -nedbat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2771] Test issue

2018-09-23 Thread Ned Batchelder
Change by Ned Batchelder : -- nosy: +nedbat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34781] infinite waiting in multiprocessing.Pool

2018-09-23 Thread Tomáš Bouda
Tomáš Bouda added the comment: After more digging, I found that the following happens: popen_fork.py -> _launch(self, process_obj) -> self.pid = os.fork() When I let process (both child and parent) print resulting pid, on freezing I can see: a) 50-times pid > 0 b) 49-times pid == 0 That

[issue34782] Pdb crashes when code is executed in a mapping that does not define `__contains__`

2018-09-23 Thread ppperry
Change by ppperry : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34782] Pdb crashes when code is executed in a mapping that does not define `__contains__`

2018-09-23 Thread ppperry
New submission from ppperry : class FakeContainer: def __getitem__(self, key) raise KeyError(key) pdb.run("pass",{},FakeContainer()) Traceback (most recent call last): File "", line 1, in pdb.run("pass",{},FakeContainer()) File "C:\Program

[issue34705] Python 3.8 changes how returns through finally clauses are traced

2018-09-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think that this can be fixed. But this is not easy. -- ___ Python tracker ___ ___

[issue34779] IDLE internals show up in tracebacks when returning objects that cannot be `repr`ed

2018-09-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: The baseline for what should happen is what does happen in interactive python.exe. >>> class N: ... def __repr__(self): raise ValueError ... >>> N() Traceback (most recent call last): File "", line 1, in File "", line 2, in __repr__ ValueError IDLE's

[issue34582] VSTS builds should use jobs, pools, and test results

2018-09-23 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +8925 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34734] Azure linux buildbot failure

2018-09-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Seems this is a known problem with VSTS and I am closing this as third party. Reference : https://mail.python.org/pipermail/python-committers/2018-September/006084.html -- resolution: -> third party stage: -> resolved status: open ->

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Guido van Rossum
Guido van Rossum added the comment: I would love to know how to repro the original bug so I can demonstrate this actually fixes it. Here's what I think should be the repro: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3 -c 'import subprocess; p =

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

2018-09-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: If I click the link for PR 6748, I see a page with "We went looking everywhere, but couldn’t find those commits." Maybe the PR needs to be refreshed or closed and maybe reopened. PR 6749 looks normal. -- nosy: +terry.reedy

[issue34705] Python 3.8 changes how returns through finally clauses are traced

2018-09-23 Thread Ned Batchelder
Ned Batchelder added the comment: I can't tell if you think this is something that should be fixed, or not? (Also, I'm not getting email notifications from bpo, sorry for the delay). -- ___ Python tracker

[issue33065] IDLE debugger: failure stepping through module loading

2018-09-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: The problem is not limited to user modules. In duplicate issue #34609 (not closed), the same traceback was obtained with unittest. I also got the same with asyncio. There will not be a problem if the module is already loaded in sys.modules, so that

[issue34781] infinite waiting in multiprocessing.Pool

2018-09-23 Thread Tomáš Bouda
New submission from Tomáš Bouda : I have encountered a possible bug inside multiprocessing.Pool which behaves like race-condition while I don't believe it is a typical one. Simply put, Pool from time to time freezes. It is occasional and hard to reproduce, but e.g. unit-tests running 3/day

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've added back port labels for 3.6 and 3.7. AFAIK 3.5 is closed for bugfixes at this point (except for security fixes). -- ___ Python tracker

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Guido van Rossum
Guido van Rossum added the comment: Jason if you could test this we would be grateful! Ronald what do you think of marking this as backportable to 3.7, 3.6 and 3.5? -- ___ Python tracker

[issue34780] Hang on startup if stdin refers to a pipe with an outstanding concurrent operation on Windows

2018-09-23 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- keywords: +patch pull_requests: +8924 stage: -> patch review ___ Python tracker ___ ___

[issue34780] Hang on startup if stdin refers to a pipe with an outstanding concurrent operation on Windows

2018-09-23 Thread Alexey Izbyshev
New submission from Alexey Izbyshev : In the following code inspired by a production issue I had to debug recently subprocess.call() won't return: import os import subprocess import sys import time r, w = os.pipe() p1 = subprocess.Popen([sys.executable, '-c', 'import

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: To use the framework build you either have to install, use or set "DYLD_FRAMEWORK_PATH" in the environment (See the definition of RUNFORSHARED in Makefile for the value to use). To properly test the this issue you have to install (or trick the system into

[issue34751] Hash collisions for tuples

2018-09-23 Thread Tim Peters
Tim Peters added the comment: Oh, I don't agree that it's "broken" either. There's still no real-world test case here demonstrating catastrophic behavior, neither even a contrived test case demonstrating that, nor a coherent characterization of what "the problem" is. I'm nevertheless open

[issue34779] IDLE internals show up in tracebacks when returning objects that cannot be `repr`ed

2018-09-23 Thread ppperry
New submission from ppperry : >>> class NoRepr: def __repr__(self): raise ValueError >>> NoRepr() Traceback (most recent call last): File "", line 1, in NoRepr() File "C:\Program Files\Python37\lib\idlelib\rpc.py", line 617, in displayhook text = repr(value)

[issue34776] Postponed annotations break inspection of dataclasses

2018-09-23 Thread Yury Selivanov
Yury Selivanov added the comment: And FWIF I don't think we need to use lambdas for annotations to solve issues like this one. -- ___ Python tracker ___

[issue34776] Postponed annotations break inspection of dataclasses

2018-09-23 Thread Yury Selivanov
Yury Selivanov added the comment: > See this for Yury's self-described "hack-ish fix we can use" until we do > something better: Actually, I think I found a better solution that doesn't require any changes to anything besides dataclasses. Currently, dataclasses uses 'exec()' function to

[issue33065] IDLE debugger crashes when `repr` raises an exception

2018-09-23 Thread ppperry
Change by ppperry : -- title: IDLE debugger: problem importing user created module -> IDLE debugger crashes when `repr` raises an exception ___ Python tracker ___

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Jason R. Coombs
Jason R. Coombs added the comment: Is it documented anywhere how to do a framework build of Python? When I try to do a framework build by running `./configure --enable-framework` then `make`, `./python.exe` emits the following: dyld: Library not loaded:

[issue34776] Postponed annotations break inspection of dataclasses

2018-09-23 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +8923 stage: -> patch review ___ Python tracker ___ ___

[issue33065] IDLE debugger: problem importing user created module

2018-09-23 Thread ppperry
Change by ppperry : -- nosy: +ppperry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34609] Importing certain modules while debugging raises an exception

2018-09-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: The IDLE issue here is a duplicate of #33065, where the OP said that only step, not go, created the problem. ppperry, thank you for the solution. Cheryl, please open a new issue for the pdb bug with a little more detail and ppperry's comment. --

[issue34778] Memoryview for column-major (f_contiguous) arrays from bytes impossible to achieve

2018-09-23 Thread Laurent Gautier
New submission from Laurent Gautier : The buffer protocol is accounting for the row-major or column-major arrays, and that information is shown in the attributes, `c_contiguous` and `f_contiguous` respectively, of a memoryview object. Using the method `cast` allows one to specify a shape but

[issue9134] sre bug: lastmark_save/restore

2018-09-23 Thread Armin Rigo
Change by Armin Rigo : -- nosy: -arigo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22499] [SSL: BAD_WRITE_RETRY] bad write retry in _ssl.c:1636

2018-09-23 Thread James Lu
Change by James Lu : -- nosy: +tacocat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28418] Raise Deprecation warning for tokenize.generate_tokens

2018-09-23 Thread Thomas Kluyver
Thomas Kluyver added the comment: Yes, I think this can be closed now. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I removed 2.7 because I stopped routinely backporting to 2.7 some time ago because a) renaming files (which could not be backported) and using ttk widgets (ditto) made it much harder, and b) it was empirically too easy to introduce regressions without

[issue34776] Postponed annotations break inspection of dataclasses

2018-09-23 Thread Eric V. Smith
Eric V. Smith added the comment: [Adding to nosy people who were on the original email] Copying (part of) my response from the email thread: These work: print(get_type_hints(Bar.__init__, globals())) print(get_type_hints(Bar.__init__, Bar.__module__)) But I agree that maybe doing something

[issue24653] Mock.assert_has_calls([]) is surprising for users

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20463] sqlite dumpiter dumps invalid script when virtual tables are used

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25567] shlex.quote doesn't work on bytestrings

2018-09-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the patch since the current workflow uses GitHub PR the patch can be made as a PR to move it forward. It seems there are some conflicts as I tried to apply the attached patch against latest master. Thanks -- nosy: +xtreak

[issue34777] urllib.request accepts anything as a header parameter for some URLs

2018-09-23 Thread Jose Gama
New submission from Jose Gama : It is possible to use urllib.request defining a header that can be junk in some cases and still get the contents without any warning or error. The behavior depends on the URL and also on the header. -- components: IO files: header-illegal.py messages:

[issue26374] concurrent_futures Executor.map semantics better specified in docs

2018-09-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: There were some improvements made that clarify differences between builtin map with https://bugs.python.org/issue32306 and https://github.com/python/cpython/commit/a7a751dd7b08a5bb6cb399c1b2a6ca7b24aba51d Thanks -- nosy: +xtreak

[issue33553] Documentation improvement proposal for multiprocessing

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26000] Crash in Tokenizer - Heap-use-after-free

2018-09-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Is this still reproducible? On master (Python 3.8) with a debug build it throws a SyntaxError. I don't have Python 3.5 installed to check this though $ ./python.exe Python 3.8.0a0 (heads/master:c87d9f406b, Sep 23 2018, 19:48:30) [Clang 7.0.2

[issue26144] test_pkg test_4 and/or test_7 sometimes fail

2018-09-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I think this was fixed with https://bugs.python.org/issue34200 though the patch was not applied to 3.5 and 3.4 as they are in security bug fixes mode. Thanks -- nosy: +xtreak ___ Python tracker

[issue25403] urllib.parse.urljoin is broken in python 3.5

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27154] Regression in file.writelines behavior

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27261] io.BytesIO.truncate does not work as advertised

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34609] Importing certain modules while debugging raises an exception

2018-09-23 Thread ppperry
ppperry added the comment: The Pdb bug and the IDLE bug are unrelated to each other: Pdb fails because it is attempting to import the readline module every time its `trace_dispatch` is called, and the import implementation is not reentrant in that way. IDLE is crashing because the

[issue9134] sre bug: lastmark_save/restore

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26752] Mock(2.0.0).assert_has_calls() raise AssertionError in two same calls

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've added PR 9516 that just clears __PYVENV_LAUNCHER__ from the environment as soon as it is no longer needed. A more involved change would be to change both the interpreter and the stub executable to avoid the need to use an environment variable in the

[issue33002] Making a class formattable as hex/oct integer with printf-style formatting requires both __int__ and __index__ for no good reason

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33947] Dataclasses can raise RecursionError in __repr__

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Ronald Oussoren
Change by Ronald Oussoren : -- pull_requests: +8922 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33340] Inaccurate docs on `import` behaviour

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34775] pathlib.PurePath division raises TypeError instead of returning NotImplemented

2018-09-23 Thread Roger Aiudi
Roger Aiudi added the comment: Using your above example, my use case is returning an instance of Spam instead of PurePath from the division operation. The Spam class would have extra properties and methods for dealing with a substructure of our file system that can exist in different

[issue32915] Running Python 2 with -3 flag doesn't complain about cmp/__cmp__

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28418] Raise Deprecation warning for tokenize.generate_tokens

2018-09-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I just stumbled upon this issue while triaging. With the related issue https://bugs.python.org/issue12486 closed making generate_tokens public can this issue be closed since the original issue is not valid? Thanks -- nosy: +xtreak

[issue19081] zipimport behaves badly when the zip file changes while the process is running

2018-09-23 Thread Tulir Asokan
Change by Tulir Asokan : -- nosy: +tulir ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32990] Supporting extensible format(PCM) for wave.open(read-mode)

2018-09-23 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +8921 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread Tal Einat
Tal Einat added the comment: Thanks for the review, discussion and approval, Cheryl and Terry! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread miss-islington
miss-islington added the comment: New changeset 6b48f9854e2ae35fd74bcd359451eb37ae65f798 by Miss Islington (bot) in branch '3.6': bpo-34548: IDLE: use configured theme colors in TextView (GH-9008) https://github.com/python/cpython/commit/6b48f9854e2ae35fd74bcd359451eb37ae65f798 --

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread miss-islington
miss-islington added the comment: New changeset aeadf59e457ca0ee20983eb1ed78b348f0b453e3 by Miss Islington (bot) in branch '3.7': bpo-34548: IDLE: use configured theme colors in TextView (GH-9008) https://github.com/python/cpython/commit/aeadf59e457ca0ee20983eb1ed78b348f0b453e3 --

[issue34774] IDLE: use theme colors for help viewer

2018-09-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: This is working on Ubuntu. Probably not a big deal, but because the help viewer is not modal, it's possible to change the theme with the help window open and the text isn't updated on the help window. If the help is closed and reopened, then the new theme

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +8920 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread miss-islington
miss-islington added the comment: New changeset c87d9f406bb23657c1b4cd63017bb7bd7693a1fb by Miss Islington (bot) (Tal Einat) in branch 'master': bpo-34548: IDLE: use configured theme colors in TextView (GH-9008)

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +8919 stage: commit review -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34421] Cannot install package with unicode module names on Windows

2018-09-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2018-09-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: The pull request is wrong, the use of __PYVENV_LAUNCHER__ in pythonw.c is correct and should not be removed. Where the current code goes wrong is that it doesn't clear the environment as soon as possible. This patch should basically do the trick (but

[issue34776] Postponed annotations break inspection of dataclasses

2018-09-23 Thread David Hagen
New submission from David Hagen : The new postponed annotations have an unexpected interaction with dataclasses. Namely, you cannot get the type hints of any of the data classes methods. For example, I have some code that inspects the type parameters of a class's `__init__` method. (The real

[issue17185] unittest mock create_autospec doesn't correctly replace mocksignature

2018-09-23 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21919] Changing cls.__bases__ must ensure proper metaclass inheritance

2018-09-23 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34751] Hash collisions for tuples

2018-09-23 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > We shouldn't feel shoved into altering something that we don't agree is broken It *is* broken. You are just denying the reality. That's also the reason that I'm insisting so much: I don't want to push my personal fix (despite that it may seem so), I want

[issue34775] pathlib.PurePath division raises TypeError instead of returning NotImplemented

2018-09-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17239] XML vulnerabilities in Python

2018-09-23 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +8918 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17239] XML vulnerabilities in Python

2018-09-23 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +8917 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34775] pathlib.PurePath division raises TypeError instead of returning NotImplemented

2018-09-23 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report and for the PR. Could you give us a little bit more information about your use case? Couldn't you make the class you want to use implement the __fspath__ protocol? import pathlib as p class Spam: def __fspath__(self):

[issue34421] Cannot install package with unicode module names on Windows

2018-09-23 Thread miss-islington
miss-islington added the comment: New changeset 0b67995bfa45393585e2e0017c82c706c4a04b04 by Miss Islington (bot) in branch '3.6': bpo-34421: Improve distutils logging for non-ASCII strings. (GH-9126) (GH-9506) https://github.com/python/cpython/commit/0b67995bfa45393585e2e0017c82c706c4a04b04

[issue17239] XML vulnerabilities in Python

2018-09-23 Thread miss-islington
miss-islington added the comment: New changeset 17b1d5d4e36aa57a9b25a0e694affbd1ee637e45 by Miss Islington (bot) (Christian Heimes) in branch 'master': bpo-17239: Disable external entities in SAX parser (GH-9217)

[issue34421] Cannot install package with unicode module names on Windows

2018-09-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +8916 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34421] Cannot install package with unicode module names on Windows

2018-09-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset c73df53569f86d0c7742bafa55958c53d57a02e4 by Serhiy Storchaka in branch '3.7': bpo-34421: Improve distutils logging for non-ASCII strings. (GH-9126) (GH-9506) https://github.com/python/cpython/commit/c73df53569f86d0c7742bafa55958c53d57a02e4

[issue34670] Add set_post_handshake_auth for TLS 1.3

2018-09-23 Thread miss-islington
miss-islington added the comment: New changeset 94812f717dde8b11a9ad9c0fd5be66ff9bd53f58 by Miss Islington (bot) (Christian Heimes) in branch '3.6': [3.6] bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) (GH-9507)

  1   2   >