[issue32917] ConfigParser writes a superfluous final blank line

2018-02-23 Thread TitanSnow
Change by TitanSnow : Removed file: https://bugs.python.org/file47461/bpo-32917.patch ___ Python tracker ___

[issue12345] Add math.tau

2018-02-23 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: -yan12125 ___ Python tracker ___ ___

[issue32917] ConfigParser writes a superfluous final blank line

2018-02-23 Thread TitanSnow
Change by TitanSnow : -- pull_requests: +5621 stage: -> patch review ___ Python tracker ___

[issue12345] Add math.tau

2018-02-23 Thread TitanSnow
Change by TitanSnow : -- pull_requests: +5622 ___ Python tracker ___ ___

[issue32929] Change dataclasses hashing to use unsafe_hash boolean (default to False)

2018-02-23 Thread Eric V. Smith
Eric V. Smith added the comment: That's a quote from Guido. There weren't any better ideas on the python-dev thread. -- nosy: +gvanrossum ___ Python tracker

[issue32758] Stack overflow when parse long expression to AST

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: A consequence of this is that ast.literal_eval() can crash. >>> import ast >>> ast.literal_eval("+0"*20) Segmentation fault (core dumped) It should be documented that ast.literal_eval() is not safe. --

[issue32893] ast.literal_eval() shouldn't accept booleans as numbers in AST

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The definition of "Python literal structures" is not specified, but it is implied that ast.literal_eval() should accept signed numbers and tuple/list/set/dict displays consisting of "Python literal structures".

[issue28414] SSL match_hostname fails for internationalized domain names

2018-02-23 Thread Nathaniel Smith
Change by Nathaniel Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks. It is nice splitting the work this way. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker

[issue32820] Add __format__ method to ipaddress

2018-02-23 Thread Nick Coghlan
Nick Coghlan added the comment: I think supporting "s" makes sense, as we're going to need to treat the empty format string as implying "s" for backwards compatibility reasons: >>> f"{v4}" '1.2.3.4' Right now, attempting to format that field without `!s` will give

[issue32931] Python 3.70b1 specifies non-existent compiler gcc++

2018-02-23 Thread Marc Culler
New submission from Marc Culler : Compiling an external module in the 3.7.0b1 prerelease on macOS High Sierra failed for me because a compiler named "gcc++" was not found. As far as I can tell there is no such compiler in the current XCode release. I don't know if there

[issue28414] SSL match_hostname fails for internationalized domain names

2018-02-23 Thread Nathaniel Smith
Nathaniel Smith added the comment: New changeset 1c37e277190565f0e30fc9281caae4c899ac3b50 by Nathaniel J. Smith (Miss Islington (bot)) in branch '3.7': [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) (GH-5843)

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset cd2112f0b9ce3d1a8cff61c16a9208115fb1dbf4 by Miss Islington (bot) in branch '3.6': bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830)

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset f409c9988e72eff7c0378ab5578f5edecb8b1855 by Miss Islington (bot) in branch '3.7': bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830)

[issue32867] argparse assertion failure with multiline metavars

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: If newlines are not permitted in metavars, the user should see ValueError: newline not permitted in metavar -- ___ Python tracker

[issue32875] Add __exit__() method to event loops

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: A. Svetlov, closing #24795: "Superseded by `asyncio.run()` function." -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5620 ___ Python tracker ___

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5619 ___ Python tracker ___

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset c29c03a34a9f3c82704b66f323ce5ea9dc89c8af by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830)

[issue28134] socket.socket(fileno=fd) does not work as documented

2018-02-23 Thread YoSTEALTH
YoSTEALTH added the comment: Christian thank you for your reply, i really appreciate it. Lets analyze this a bit: - Technically speaking i can "return client" directly and it would NOT close the socket. - Shouldn't "inside" having reference to same fd mean +1 to

[issue32930] [help][webbrowser always opens new tab. I want to open in the same tab]

2018-02-23 Thread Tommy
Change by Tommy : -- components: +Library (Lib), macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker ___

[issue32907] pathlib: test_resolve_common fails on Windows w/ longusername

2018-02-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: pathlib: test_resolve_common fails on Windows -> pathlib: test_resolve_common fails on Windows w/ longusername ___ Python tracker

[issue32930] [help][webbrowser always opens new tab. I want to open in the same tab]

2018-02-23 Thread Tommy
New submission from Tommy : Dear manager, I'm just starting python and trying to make simple web application. As above title, I just want to open webbrowser at first and then just change web-address in the same tab, but whenever I try webbrowser.open, it always open

[issue32929] Change dataclasses hashing to use unsafe_hash boolean (default to False)

2018-02-23 Thread Steven D'Aprano
Steven D'Aprano added the comment: This is a truly awful name, there's nothing unsafe about the hash parameter. We rightly hesitate to label *actual* unsafe functions, like eval and exec, with that name. Are we committed to this name? -- nosy:

[issue32893] ast.literal_eval() shouldn't accept booleans as numbers in AST

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Whoops, my previous response was wrong as written because I wrongly thought that if literal_eval accepts number_literal + imaginary_literal, it would also accept number_literal + number_literal. I am replacing it with the following. The

[issue32929] Change dataclasses hashing to use unsafe_hash boolean (default to False)

2018-02-23 Thread Eric V. Smith
New submission from Eric V. Smith : See https://mail.python.org/pipermail/python-dev/2018-February/152150.html for a discussion. This will remove the @dataclass hash= tri-state parameter, and replace it with an unsafe_hash= boolean-only parameter. >From that thread: """

[issue28414] SSL match_hostname fails for internationalized domain names

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5618 ___ Python tracker ___

[issue28414] SSL match_hostname fails for internationalized domain names

2018-02-23 Thread Nathaniel Smith
Nathaniel Smith added the comment: New changeset 11a1493bc4198f1def5e572049485779cf54dc57 by Nathaniel J. Smith (Christian Heimes) in branch 'master': [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128)

[issue28134] socket.socket(fileno=fd) does not work as documented

2018-02-23 Thread Christian Heimes
Christian Heimes added the comment: The problem is fixed and your example behaves as expected. The laddr string is the result of inside.getsockname() and raddr string is the result of inside.getpeername(). In your example, inside and client share the same file descriptor.

[issue32893] ast.literal_eval() shouldn't accept booleans as numbers in AST

2018-02-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- Removed message: https://bugs.python.org/msg312682 ___ Python tracker ___

[issue32867] argparse assertion failure with multiline metavars

2018-02-23 Thread MaT1g3R
MaT1g3R added the comment: I tried to include line breaks for listing options for a positional argument. The default metavar for that is something like {opt1, opt2, op3}, however I wanted it to display the options on separate lines. --

[issue32893] ast.literal_eval() shouldn't accept booleans as numbers in AST

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: It is true that 'True' and 'False' are not literally literals. But as pre- and fixedly bound names, they function for Bool the same as 0 and 1 do for int. Besides this, ast.literal_eval is not now limited to literal evaluation, but does

[issue32926] Add public TestCase method/property to get result of current test

2018-02-23 Thread ppperry
Change by ppperry : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list

[issue32926] Add public TestCase method/property to get result of current test

2018-02-23 Thread ppperry
Change by ppperry : -- components: +Library (Lib) ___ Python tracker ___ ___

[issue28134] socket.socket(fileno=fd) does not work as documented

2018-02-23 Thread YoSTEALTH
YoSTEALTH added the comment: I am using 3.7.0b1 i don't think this issue is fixed! # simple mockup: # -- def accept(sock): client, addr = sock.accept() inside = socket(fileno=client.fileno()) print(inside) # <__main__.Socket fd=5,

[issue32867] argparse assertion failure with multiline metavars

2018-02-23 Thread Martin Panter
Martin Panter added the comment: This looks like the same assertion failure as described in Issue 16360. Paul pointed to a patch in Issue 11874, so that may also be relevant. However I agree that embedding newlines in a metavar doesn’t make much sense. What’s the use

[issue32928] _findvs failing on Windows 10 (Release build only)

2018-02-23 Thread William Pickard
William Pickard added the comment: Use, when distutils calls findall in the module, it results in the OSError being thrown. -- ___ Python tracker

[issue32928] _findvs failing on Windows 10 (Release build only)

2018-02-23 Thread Steve Dower
Steve Dower added the comment: You mean build? Or use? Can you share build logs? -- ___ Python tracker ___

[issue32875] Add __exit__() method to event loops

2018-02-23 Thread Martin Panter
Martin Panter added the comment: Maybe already discussed in Issue 24795? -- nosy: +martin.panter superseder: -> Make event loops with statement context managers ___ Python tracker

[issue32877] Login to bugs.python.org with Google account NOT working

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is similar to #29544. As the reply there indicates, this tracker (for issues with the cpython repository) is the wrong place for issues about the tracker. Click Report Tracker Problem on the left sidebar. -- nosy:

[issue32875] Add __exit__() method to event loops

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Enhancements only go in future releases not yet in beta. Do loops already have an __enter__ method, also required for with? What would you have the close method do? Preemptorially cancel all tasks and close the loop? With statement are

[issue32867] argparse assertion failure with multiline metavars

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I don't understand the -h (display help part) but pasting code into repository 3.8 IDLE editor and running, I get same traceback. Never having used argparse, I don't know if a multiline metavar is expected to work. Assuming so, can you

[issue32861] urllib.robotparser: incomplete __str__ methods

2018-02-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list

[issue32928] _findvs failing on Windows 10 (Release build only)

2018-02-23 Thread William Pickard
New submission from William Pickard : The distutils module _findvs is failing on my Windows 10 PRO machine with the following error: OSError: Error 80070002 Note: Building Python 3.6 in debug for some reason doesn't cause the error. -- components: Distutils,

[issue32925] AST optimizer: Change a list into tuple in iterations and containment tests

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +5617 stage: -> patch review ___ Python tracker ___

[issue32927] Add typeshed documentation for unittest.TestCase._feedErrorsToResult and ._outcome

2018-02-23 Thread Victor Engmark
New submission from Victor Engmark : Until and unless #32926 is fixed it would be good to be able to type inspect code which uses the currently least hacky way to inspect the result of the current test [1]. This requires the use of TestCase._feedErrorsToResult and

[issue32926] Add public TestCase method/property to get result of current test

2018-02-23 Thread Victor Engmark
New submission from Victor Engmark : The community has come up with multiple hacks [1] to be able to inspect the current test result in tearDown (to collect more expensive diagnostics only when the test fails). It would be great to have a documented and simple way to

[issue32925] AST optimizer: Change a list into tuple in iterations and containment tests

2018-02-23 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Currently a list of constants is replaced with constant tuple in `x in [1, 2]` and `for x in [1, 2]`. The resulted AST is the same as for `x in (1, 2)` and `for x in (1, 2)`. The proposed simple PR extends this optimization

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

2018-02-23 Thread Ned Deily
Change by Ned Deily : -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New build with 8.6.8 seems to work fine on my machine. Thanks. I noticed that 'fetching tcl/tk 8.6.8' downloaded a pre-built binary instead of sources to build on my machine. Nice. -- ___

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-23 Thread Steve Dower
Steve Dower added the comment: Windows is complete - leaving this open for Ned to resolve when the Mac installers are done. -- ___ Python tracker

[issue32820] Add __format__ method to ipaddress

2018-02-23 Thread Eric Osborne
Eric Osborne added the comment: I dunno, I think this might be useful. A binary representation is itself a string, and takes formatting as such (ditto for hex, as hex(int()) returns a string: In [20]: a Out[20]: IPv4Address('1.2.3.4') In [92]: f'{a}' Out[92]: '1.2.3.4' In

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

2018-02-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: The stated goal of -3 is "warn about Python 3.x incompatibilities that 2to3 cannot trivially fix", so this use case seems like a good match. On the other hand, adding this to -3 would be somewhat noisy since __cmp__ is

[issue32838] Fix Python versions in the table of magic numbers

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset 8d9d4b57ae57baee4401cab6067ef22c0172661d by Miss Islington (bot) in branch '3.7': bpo-32838: Fix Python versions in the table of magic numbers. (GH-5658)

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Armin Rigo
Armin Rigo added the comment: It's not a new feature. See for example all functions from posixmodule.c: it should at least be PyArg_ParseTuple(args, "et", Py_FileSystemDefaultEncoding, _star_variable). -- nosy: +arigo

[issue32820] Add __format__ method to ipaddress

2018-02-23 Thread Eric V. Smith
Eric V. Smith added the comment: True enough. You'd think that I (of all people!) would know that. Nevermind. -- ___ Python tracker

[issue32304] Upload failed (400): Digests do not match on .tar.gz ending with x0d binary code

2018-02-23 Thread Éric Araujo
Change by Éric Araujo : -- stage: backport needed -> resolved status: open -> closed versions: -Python 3.8 ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset 8a7f1f4b0ffddf230864ebf16b481546970dd9c2 by Miss Islington (bot) in branch '2.7': bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)

[issue32304] Upload failed (400): Digests do not match on .tar.gz ending with x0d binary code

2018-02-23 Thread Éric Araujo
Éric Araujo added the comment: 3.5 only accepts security fixes: https://devguide.python.org/#status-of-python-branches -- versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset cffe0467ab7b164739693598826bd3860f01b11f by Miss Islington (bot) in branch '3.6': bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset 1ad6ca5eb95ebb7351e0f5d9ce607dec54de6407 by Miss Islington (bot) in branch '3.7': bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)

[issue17232] Improve -O docs

2018-02-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've made a PR and tried to integrate the changes from PEP 488. -- ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! I've fixed it on master, the backports have been initiated and will finish automatically. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2018-02-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: The link has been fixed, it affects 3.7 branch only. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.8 ___ Python tracker

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2018-02-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 079d75d099f228a4261f63a94217571e05e8fa8e by Mariatta in branch '3.7': bpo-32924: Fix the Show Source url in the docs. (GH-5835) https://github.com/python/cpython/commit/079d75d099f228a4261f63a94217571e05e8fa8e

[issue17232] Improve -O docs

2018-02-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +5616 stage: needs patch -> patch review ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5613 ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5615 ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5614 ___ Python tracker ___

[issue32820] Add __format__ method to ipaddress

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You always can use f'{addr!s:20}'. -- ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 98f42aac23f3863973cb6e9964c5212cfd3a1d98 by Mariatta in branch 'master': bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)

[issue20928] xml.etree.ElementInclude does not include nested xincludes

2018-02-23 Thread Stefan Behnel
Stefan Behnel added the comment: I've added a 'max_depth' argument to limit the maximum recursive include depth to 6 by default (which is a small, arbitrarily chosen value). Users can set it to None to disable the limit. >From my side, I don't see any more features that

[issue32820] Add __format__ method to ipaddress

2018-02-23 Thread Eric V. Smith
Eric V. Smith added the comment: I'd like 's' to be supported, and just be passed to format(str(self), fmt) (or some alternate spelling for the same thing). My use case is to format tables including addresses: print(f'{addr:20s} {hostname}') --

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: > lets change it to make it more approachable to non-native speakers. Sounds good to me. -- ___ Python tracker

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2018-02-23 Thread Mariatta Wijaya
Change by Mariatta Wijaya : -- keywords: +patch pull_requests: +5612 stage: -> patch review ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Mariatta Wijaya
Change by Mariatta Wijaya : -- keywords: +patch pull_requests: +5611 stage: -> patch review ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: PR 5832 fixes dbm.ndbm.open() and dbm.gdbm.open(). dbm.dumb.open() already used the filesystem encoding. I don't think anything should be fixed in 2.7. Supporting Unicode filenames looks like a new feature. --

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +5610 stage: -> patch review ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Eric V. Smith
Eric V. Smith added the comment: Agree with Marietta: it's valid, but lets change it to make it more approachable to non-native speakers. -- nosy: +eric.smith ___ Python tracker

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue31355] Remove Travis CI macOS job: rely on buildbots

2018-02-23 Thread Brett Cannon
Brett Cannon added the comment: I'm willing to give it another go. Do you want to open a PR to turn it back on and see how the timing looks, Antoine? -- status: pending -> open ___ Python tracker

[issue25427] Remove the pyvenv script in Python 3.8

2018-02-23 Thread Brett Cannon
Brett Cannon added the comment: Oh, I haven't forgotten. :) This issue is the only one I have assigned to myself and been looking forward to ripping it out for over 2 years (might not get to it until the sprints at PyCon US, but I will definitely be ripping it out).

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2018-02-23 Thread Mariatta Wijaya
New submission from Mariatta Wijaya : When viewing Python 3.7 docs in docs.python.org, the show source link is pointing to the master branch on GitHub. It should point to the 3.7 branch. I'm working on a fix, however this is something to we should remember doing

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: `while` and `whilst` are both valid english words, however I can understand if readers who don't primarily speak english can get confused. I'll be open to change that to `while` just to make it friendlier to international readers.

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset 74b73642596caa287ee59bf7901ca009606c24cc by Miss Islington (bot) in branch '3.7': bpo-32901: Update Tcl and Tk versions to 8.6.8 (GH-5823)

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-23 Thread Steve Dower
Steve Dower added the comment: New changeset efa6c762268d68985f3012234f62ea9e5ced8b7c by Steve Dower in branch 'master': bpo-32901: Update Tcl and Tk versions to 8.6.8 (GH-5823) https://github.com/python/cpython/commit/efa6c762268d68985f3012234f62ea9e5ced8b7c

[issue30028] make test.support.temp_cwd() fork-safe

2018-02-23 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> commit review status: open -> closed versions: +Python 2.7, Python 3.8 -Python 3.5 ___ Python tracker

[issue30028] make test.support.temp_cwd() fork-safe

2018-02-23 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 9c819a6a7d34594779fea3a25fd69ec5745e185e by Gregory P. Smith (Anselm Kruis) in branch '3.6': [3.6] bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066) (GH-5826)

[issue30028] make test.support.temp_cwd() fork-safe

2018-02-23 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 61bd4d2e6319a3c5c3b9ce5f807b44a45cc1d4a1 by Gregory P. Smith (Anselm Kruis) in branch '2.7': [2.7] bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066) (GH-5825)

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-23 Thread Steve Dower
Steve Dower added the comment: The sources are just the original sources, so they could be useful on other platforms too. The build on cpython-bin-deps is obviously only useful on Windows. -- ___ Python tracker

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5609 ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: Not a typo: it's a valid English word. http://dictionary.cambridge.org/grammar/british-grammar/linking-words-and-expressions/while-and-whilst -- nosy: +mark.dickinson ___ Python tracker

[issue32911] Doc strings no longer stored in body of AST

2018-02-23 Thread ppperry
Change by ppperry : -- title: Doc strings omitted from AST -> Doc strings no longer stored in body of AST ___ Python tracker ___

[issue32923] Typo in documentation of unittest: whilst instead of while

2018-02-23 Thread Тимофей Хирьянов
New submission from Тимофей Хирьянов : Typo is on the https://docs.python.org/3/library/unittest.html page. At bottom of the page you can see text: "unittest.removeHandler(function=None) When called without arguments this function removes the control-c handler if it has

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Josh Friend
New submission from Josh Friend : Armin Rigo from the PyPy project pointed this out to me: https://bitbucket.org/pypy/pypy/issues/2755/dbmopen-expects-a-str-for-filename-throws This could probably lead to some weird behavior given the right filename --

[issue32921] .pth files cannot contain folders with utf-8 names

2018-02-23 Thread Einar Fredriksen
New submission from Einar Fredriksen : Add "G:\русский язык" to a pth file and start python. it fails with -- Failed to import the site module Traceback (most recent call last): File "C:\Program Files\ROXAR\RMS

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +5608 stage: needs patch -> patch review ___ Python tracker ___

[issue32087] deprecated-removed directive generates overlapping msgids in .pot files

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset dd52d5c868fb1eb33bcf22e777317de0391bfaf6 by Miss Islington (bot) in branch '3.6': bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473)

[issue32087] deprecated-removed directive generates overlapping msgids in .pot files

2018-02-23 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker

  1   2   >