Re: [Python-Dev] Tests failing on Windows with TESTFN

2018-07-26 Thread Chris Jerdonek
On Wed, Jul 25, 2018 at 8:07 AM, Tim Golden wrote: > One problem is that certain tests use support.TESTFN (a local directory > constructed from the pid) for output files etc. However this can cause > issues on Windows when recreating the folders / files for multiple tests, > especially when

Re: [Python-Dev] [issue34221] Any plans to combine collections.OrderedDict with dict

2018-07-26 Thread Terry Reedy
On 7/26/2018 2:15 AM, Raymond Hettinger wrote: On Jul 25, 2018, at 8:23 PM, INADA Naoki wrote: On Thu, Jul 26, 2018 at 12:04 PM Zhao Lee wrote: Since Python 3.7,dicts remember the order that items were inserted, so any plans to combine collections.OrderedDict with dict?

Re: [Python-Dev] Tests failing on Windows with TESTFN

2018-07-26 Thread Brett Cannon
On Wed, 25 Jul 2018 at 15:16 Tim Golden wrote: > I'm just easing back into core development work by trying to get a > stable testing environment for Python development on Windows. > > One problem is that certain tests use support.TESTFN (a local directory > constructed from the pid) for output

Re: [Python-Dev] What's the status of the PEP 572 implementation?

2018-07-26 Thread Guido van Rossum
Emily Morehouse is working on it, and I'm helping out. We probably won't get to the PR phase until the core dev sprint in September though. On Thu, Jul 26, 2018 at 2:22 AM, Victor Stinner wrote: > Hi, > > Is the PEP 572 implemented? If no, who is working on that? Is there a WIP > pull request?

[Python-Dev] What's the status of the PEP 572 implementation?

2018-07-26 Thread Victor Stinner
Hi, Is the PEP 572 implemented? If no, who is working on that? Is there a WIP pull request? An open issue? One month ago, I tried Chis Angelo's implementation but it implemented an old version of the PEP which evolved in the meanwhile. Victor ___

Re: [Python-Dev] [issue34221] Any plans to combine collections.OrderedDict with dict

2018-07-26 Thread Raymond Hettinger
> On Jul 25, 2018, at 8:23 PM, INADA Naoki wrote: > > On Thu, Jul 26, 2018 at 12:04 PM Zhao Lee wrote: >> >> >> Since Python 3.7,dicts remember the order that items were inserted, so any >> plans to combine collections.OrderedDict with dict? >>