[issue36015] streamhandler cannot represent streams with an integer as name

2019-05-07 Thread Riccardo Magliocchetti
Riccardo Magliocchetti added the comment: Friendly ping, would be helpful to get this resolved for 3.8.0. Thanks! -- ___ Python tracker ___ ___

[issue14156] argparse.FileType for '-' doesn't work for a mode of 'rb'

2019-05-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: Serhiy: To be clear, Moritz's patch won't work if stdin/stdout are io.StringIO or the like either, since StringIO lacks a buffer attribute. Personally, I'm content to: 1. Ignore the closeability of the standard handles; that's not part of this bug, and just

[issue24767] can concurrent.futures len(Executor) return the number of tasks?

2019-05-07 Thread Brian Quinlan
Brian Quinlan added the comment: If we supported this, aren't we promising that we will always materialize the iterator passed to map? I think that we'd need a really strong use-case for this to be worth-while. -- ___ Python tracker

[issue36533] logging regression with threading + fork are mixed in 3.7.1rc2 (deadlock potential)

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 64aa6d2000665efb1a2eccae176df9520bf5f5e6 by Gregory P. Smith in branch 'master': bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) https://github.com/python/cpython/commit/64aa6d2000665efb1a2eccae176df9520bf5f5e6 --

[issue36836] Test Suite not working on 3.4 and 3.5 on MacOS Mojave

2019-05-07 Thread Sanyam Khurana
New submission from Sanyam Khurana : I was testing this issue: https://bugs.python.org/issue10598 I checked both Python 3.4, 3.5, 3.6 and tagged commit v3.7.0 but I'm not able to run the test suite on any of them. I'm currently working on MacOS Mojave 10.14.4 I landed on issue https://bugs.p

[issue36836] Test Suite not working on 3.4, 3.5, 3.6, 3.7 on MacOS Mojave

2019-05-07 Thread Sanyam Khurana
Change by Sanyam Khurana : -- title: Test Suite not working on 3.4 and 3.5 on MacOS Mojave -> Test Suite not working on 3.4, 3.5, 3.6, 3.7 on MacOS Mojave ___ Python tracker _

[issue36837] Make il8n tools available from `python -m`

2019-05-07 Thread Benjamin Kane
New submission from Benjamin Kane : Localizing a Python application involves using the `gettext` standard library module to read .mo files. There are three scripts to assist with this in https://github.com/bbkane/cpython/tree/master/Tools/i18n : - makelocalealias.py : Convert the X11 locale.al

[issue24980] Allow for providing 'on_new_thread' callback to 'concurrent.futures.ThreadPoolExecutor'

2019-05-07 Thread Brian Quinlan
Brian Quinlan added the comment: Do the `initializer` and `initargs` parameters deal with this use case for you? https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor -- ___ Python tracker

[issue36792] [Windows] time: crash on formatting time with de_DE locale

2019-05-07 Thread Jeremy Kloth
Jeremy Kloth added the comment: Here is another test, this time removing Python from the equation (mostly :) import ctypes, struct crt_locale = ctypes.CDLL('api-ms-win-crt-locale-l1-1-0', use_errno=True) crt_time = ctypes.CDLL('api-ms-win-crt-time-l1-1-0', use_errno=True) crt_locale._wsetlocal

[issue36836] Test Suite not working on 3.4, 3.5, 3.6, 3.7 on MacOS Mojave

2019-05-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue36817] Add = to f-strings for easier debugging.

2019-05-07 Thread Eric V. Smith
Eric V. Smith added the comment: The most recent version of the PR 0ec4daead4d5b3c42613bd210a51da60932035f3 has the behavior without !f and auto-selecting what used to be !f. It's ready for a final review before I commit it. -- ___ Python tracker

[issue22630] `concurrent.futures.Future.set_running_or_notify_cancel` does not notify cancel

2019-05-07 Thread Brian Quinlan
Brian Quinlan added the comment: Ben, do you still think that your patch is relevant or shall we close this bug? -- ___ Python tracker ___

[issue22729] concurrent.futures `wait` and `as_completed` depend on private api

2019-05-07 Thread Brian Quinlan
Brian Quinlan added the comment: How did the experiment go? Are people still interested in this? -- ___ Python tracker ___ ___ Pyth

[issue31783] Race condition in ThreadPoolExecutor when scheduling new jobs while the interpreter shuts down

2019-05-07 Thread Brian Quinlan
Change by Brian Quinlan : -- assignee: -> bquinlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36828] Cannot install et-xmlfile

2019-05-07 Thread Hans Ginzel
Hans Ginzel added the comment: Thank you for suggestion. I agree. Where can I find the repo for et-xmlfile or the appropriate tracker respectively, please? I have found https://github.com/dimensions11/et_xmlfile. Is it the _master_ repo? -- ___ Py

[issue36817] Add = to f-strings for easier debugging.

2019-05-07 Thread Eric V. Smith
Change by Eric V. Smith : -- pull_requests: +13079 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue36792] [Windows] time: crash on formatting time with de_DE locale

2019-05-07 Thread Charlie Clark
Charlie Clark added the comment: And this is the result. old locale: C count: 28 value: Mitteleuropäische Sommerzeit new locale: de_DE count: -1 value: Windows fatal exception: code 0xc374 Looks like print('new locale:', crt_locale._wsetlocale(0, 'de_DE')) print('count:', crt_time.wcsftim

[issue11001] Various obvious errors in cookies documentation

2019-05-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +13080 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue11001] Various obvious errors in cookies documentation

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 91cc01f40eec03ece2d6b04ad9ea786e77707d8d by Miss Islington (bot) (Julia Iliuk) in branch 'master': bpo-11001: updated cookie docs (GH-13086) https://github.com/python/cpython/commit/91cc01f40eec03ece2d6b04ad9ea786e77707d8d -- nosy: +mi

[issue34408] possible null pointer dereference in pystate.c

2019-05-07 Thread Mark Shannon
Mark Shannon added the comment: Any reason not to close this issue? -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-l

[issue36792] [Windows] time: crash on formatting time with de_DE locale

2019-05-07 Thread Jeremy Kloth
Jeremy Kloth added the comment: Final test, this time, no Python what so ever. I've added a zip containing a simple C program (source and .exe) that performs the same test. The output should be similar to: The current locale is now: C The time zone is: 'Mountain Daylight Time' (22

[issue36792] [Windows] time: crash on formatting time with de_DE locale

2019-05-07 Thread Charlie Clark
Charlie Clark added the comment: This is the result \issue36792>test.exe The current locale is now: C The time zone is: 'Mitteleuropõische Sommerzeit' (28 characters) The updated locale is now: de_DE The time zone is: '' (-1 characters) NB something is wrong with that

[issue36829] CLI option to make PyErr_WriteUnraisable abort the current process

2019-05-07 Thread Zackery Spytz
Zackery Spytz added the comment: I am working on this issue. -- nosy: +ZackerySpytz title: CLI option to make PyErr_WriteUnraisable abortthe current process -> CLI option to make PyErr_WriteUnraisable abort the current process ___ Python tracker <

[issue32768] object.__new__ does not accept arguments if __bases__ is changed

2019-05-07 Thread Alexey Muranov
Alexey Muranov added the comment: There were problems with the use case for mutable bases that i posted (see #36827). Here is an updated version: https://gist.github.com/alexeymuranov/04e2807eb5679ac7e36da4454a58fa7e -- ___ Python tracker

[issue36828] Cannot install et-xmlfile

2019-05-07 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I am not sure. Searching on PyPI gives me https://pypi.org/project/et_xmlfile/ and the homepage links to bitbucket repo that seems to be active. I am closing this issue as third party. -- resolution: -> third party stage: -> resolved stat

[issue31922] Can't receive replies from multicast UDP with asyncio

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 63deaa5b70108ef441c57728322da6b4321db4fc by Miss Islington (bot) (Vincent Michel) in branch 'master': bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423) https://github.com/python/cpython/commit/63deaa5b70108ef441c57728322da

[issue31922] Can't receive replies from multicast UDP with asyncio

2019-05-07 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +13081 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue36827] Overriding __new__ method with itself changes behaviour of the class

2019-05-07 Thread Alexey Muranov
Alexey Muranov added the comment: Here is an example of code where i got surprised by the current behaviour and had to apply some (ugly) workaround: https://gist.github.com/alexeymuranov/04e2807eb5679ac7e36da4454a58fa7e -- ___ Python tracker

[issue11001] Various obvious errors in cookies documentation

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 1fe722cf14db0f786d6df1ff4392f44d37a9f867 by Miss Islington (bot) in branch '3.7': [3.7] bpo-11001: updated cookie docs (GH-13086) (GH-13161) https://github.com/python/cpython/commit/1fe722cf14db0f786d6df1ff4392f44d37a9f867 --

[issue11001] Various obvious errors in cookies documentation

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: Thanks Julia! -- nosy: +gregory.p.smith resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker __

[issue27432] Unittest truncating of error message not works

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: Mariatta -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-

[issue36792] [Windows] time: crash on formatting time with de_DE locale

2019-05-07 Thread Jeremy Kloth
Jeremy Kloth added the comment: Thanks again! I will have some more tests for you to try tomorrow as I am out of time for today. I'm currently of the belief that there is something Python is going to have to do to work around an issue within the CRT, but more testing will prove that theory

[issue31922] Can't receive replies from multicast UDP with asyncio

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 19ca5b500af4b66e1082a03d8fbf448e1f56af30 by Miss Islington (bot) in branch '3.7': bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423) https://github.com/python/cpython/commit/19ca5b500af4b66e1082a03d8fbf448e1f56af30 --

[issue27432] Unittest truncating of error message not works

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: safe_repr() as used internally by unittest wasn't intended to truncate by default as part of its "safety". The "safe" part is that it catches Exception and provides an alternate repr if the __repr__ raised. unittest.util.safe_repr() is a public API, just

[issue27432] Support unittest assertion truncation of repr in error messages

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- title: Unittest truncating of error message not works -> Support unittest assertion truncation of repr in error messages ___ Python tracker ___

[issue27497] csv module: Add return value to DictWriter.writeheader

2019-05-07 Thread Skip Montanaro
Skip Montanaro added the comment: I think this is ready to go. I added a comment to PR12306. As I am no longer a committer, I'm not sure what the next step is. -- ___ Python tracker

[issue14156] argparse.FileType for '-' doesn't work for a mode of 'rb'

2019-05-07 Thread Josh Rosenberg
Change by Josh Rosenberg : -- pull_requests: +13082 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36836] Test Suite not working on 3.4, 3.5 on MacOS Mojave

2019-05-07 Thread Sanyam Khurana
Sanyam Khurana added the comment: I had to clean-up my build a bit, and it seems like it's not really happening on 3.6, but it is still an issue with 3.4, 3.5, etc. I've added a PR for 3.5 to resolve the issue. -- assignee: -> CuriousLearner title: Test Suite not working on 3.4, 3.5

[issue31783] Race condition in ThreadPoolExecutor when scheduling new jobs while the interpreter shuts down

2019-05-07 Thread Brian Quinlan
Brian Quinlan added the comment: Great report Steven! I was able to reproduce this with the attached patch (just adds some sleeps and prints) and this script: from threading import current_thread from concurrent.futures import ThreadPoolExecutor from time import sleep pool = ThreadPoolExecut

[issue36533] logging regression with threading + fork are mixed in 3.7.1rc2 (deadlock potential)

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue36836] Test Suite not working on 3.4, 3.5 on MacOS Mojave

2019-05-07 Thread Sanyam Khurana
Change by Sanyam Khurana : -- keywords: +patch pull_requests: +13083 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue14156] argparse.FileType for '-' doesn't work for a mode of 'rb'

2019-05-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: I've created PR13165 to address this bug. It's 99% test updates; the actual code changes to argparse.py are trivial and should be equally trivial to review. The only functional change beyond Moritz's proposal is that I added support for having accepting '-'

[issue35723] Add "time zone index" cache to datetime objects

2019-05-07 Thread Paul Ganssle
Change by Paul Ganssle : -- nosy: +fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue36395] Add deferred single-threaded/fake executor to concurrent.futures

2019-05-07 Thread Brian McCutchon
Brian McCutchon added the comment: No, I do not have such an example, as most of my tests try to fake the executors. -- ___ Python tracker ___ ___

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +13084 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset b35acc5b3a0148c5fd4462968b310fb436726d5a by Miss Islington (bot) (Romain Picard) in branch 'master': bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340) https://github.com/python/cpython/commit/b35acc5b3a0148c5fd

[issue31200] address sanitizer build fails

2019-05-07 Thread Julien Palard
Julien Palard added the comment: Tried to reproduce it again, on master, but this does no longer segfault nor report leakages (as long as I use __INSURE__ using make -j18 profile-opt CFLAGS='-D__INSURE__') nor fail at build time. There's still a few memory warnings while running tests (subin

[issue36836] Test Suite not working on 3.4, 3.5 on MacOS Mojave

2019-05-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi, I have discussed with @CuriousLearner and now he is aware that 3.5 and 3.6 are in security mode and not in bugfix mode. I remove 3.5 from the list, he is checking if there is an issue on 3.7 and master. -- nosy: +matrixise versions: +Python 3.8

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___

[issue36836] Test Suite not working on 3.4, 3.5 on MacOS Mojave

2019-05-07 Thread Sanyam Khurana
Sanyam Khurana added the comment: The issue does not seem to be on 3.7 and master branch, so I'm closing the bug as well as the pull request. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed versions: +Python 3.5, Python 3.6 -Python 3.8 __

[issue27639] UserList.__getitem__ doesn't account for slices

2019-05-07 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +13085 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35924] curses segfault resizing window

2019-05-07 Thread Toshio Kuratomi
Toshio Kuratomi added the comment: I'm still debugging this but it may be an off-by-one error in ncurses, wresize.c. I've found that if I modify the following section in ncurses, our problem goes away: /* * Dispose of unwanted memory. */ if (!(win->_flags & _SUBWIN))

[issue36533] logging regression with threading + fork are mixed in 3.7.1rc2 (deadlock potential)

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +13086 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue36823] shutil.copytree copies directories and files but fails with that same directory with '[Errno 1] Operation not permitted')

2019-05-07 Thread Ryan Avery
Ryan Avery added the comment: I'm actually not sure what the expected behavior would be, because I can use the os module to copy, rename, and remove files and folders in this mounted File Share. Before encountering this error, I would expect shutil to do the same. But since this error comes up

[issue31783] Race condition in ThreadPoolExecutor when scheduling new jobs while the interpreter shuts down

2019-05-07 Thread Brian Quinlan
Brian Quinlan added the comment: I think that ProcessPoolExecutor might have a similar race condition - but not in exactly this code path since it would only be with the queue management thread (which is only started once). -- ___ Python tracker

[issue31783] Race condition in ThreadPoolExecutor when scheduling new jobs while the interpreter shuts down

2019-05-07 Thread Brian Quinlan
Change by Brian Quinlan : -- pull_requests: +13087 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36813] QueueListener not calling task_done upon termination

2019-05-07 Thread Bar Harel
Bar Harel added the comment: Alright. Regression tests added, all tests pass. Patch ready for upload! -- nosy: +vinay.sajip ___ Python tracker ___

[issue36838] running 'make html' from the Doc tree emits an unwelcoming error message

2019-05-07 Thread Gregory P. Smith
New submission from Gregory P. Smith : Running make in the Doc directory does not install all necessary tooling on its own. This is a hurdle to getting beginners up to speed on making documentation changes (often their very first changes in the CPython project). ``` :~/oss/cpython/throwaway:

[issue35125] asyncio shield: remove inner callback on outer cancellation

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 299f69c24c5f0fcfea0b7385b0da661cda78df19 by Miss Islington (bot) in branch '3.7': bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340) https://github.com/python/cpython/commit/299f69c24c5f0fcfea0b7385b0da661cda78d

[issue36839] Support the buffer protocol in code objects

2019-05-07 Thread Dino Viehland
New submission from Dino Viehland : Many Python deployments involve large code based that are used in scenarios where processes are fork-and-exec'd. When running in these environments code objects can end up occupying a lot of memory. Because the code objects are on random pages and are ref

[issue36824] Refactor str tests to reflect that str and unicode are merged in Python 3

2019-05-07 Thread Daniel Fortunov
Daniel Fortunov added the comment: PS opened here: https://github.com/python/cpython/pull/13172 I've tried to break down the changes into individual steps, with justification in commit messages. Happy to collapse these down into fewer commits before merge if preferred. I haven't done the "Pr

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

2019-05-07 Thread Julien Palard
Julien Palard added the comment: The download links are now working, EWDurbin upgraded the servers and it solved a few issues, also now when a build fail we do no longer erase the old PDF, so the links should always work. Thanks for reporting and don't hesistate to open a new issue if proble

[issue36838] running 'make html' from the Doc tree emits an unwelcoming error message

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36840] Add stream.abort() async method

2019-05-07 Thread Andrew Svetlov
New submission from Andrew Svetlov : It should call underlying `transport.abort()`, then wait for closing event (`await self.wait_closed()`) -- components: asyncio messages: 341811 nosy: asvetlov, yselivanov priority: normal severity: normal status: open title: Add stream.abort() async

[issue36824] Refactor str tests to reflect that str and unicode are merged in Python 3

2019-05-07 Thread Daniel Fortunov
Change by Daniel Fortunov : -- keywords: +patch pull_requests: +13088 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue36830] Typo in collections.deque

2019-05-07 Thread Julien Palard
Julien Palard added the comment: I reopened the issue on the ja tracker: https://github.com/python/python-docs-ja/issues/20 and I'm closing it here. Thanks a lot keroru for reporting! -- stage: -> resolved status: pending -> closed ___ Python tra

[issue36840] Add stream.abort() async method

2019-05-07 Thread Yury Selivanov
Yury Selivanov added the comment: If we're just calling socket.close(), then what's the point of waiting for connection_lost? (I remember us discussing this, but I don't quite remember the details). Usually .abort() is a synchronous method, which kind of signals that "i want to close this

[issue36838] running 'make html' from the Doc tree emits an unwelcoming error message

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- keywords: +patch pull_requests: +13089 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue36829] CLI option to make PyErr_WriteUnraisable abort the current process

2019-05-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13090 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue32275] SSL socket methods don't retry on EINTR?

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- nosy: -mdk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue36533] logging regression with threading + fork are mixed in 3.7.1rc2 (deadlock potential)

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: The regression should be fixed. It'd be helpful if owners of applications that were running into this could test their applications with this specific change. -- resolution: -> fixed stage: patch review -> commit review status: open -> closed vers

[issue36841] Supporting customization of float encoding in JSON

2019-05-07 Thread Mitar
New submission from Mitar : Currently, there is only one argument which allows customization how float numbers are encoded in JSON: allow_nan. But this does not allow one to hook into the encoding of floating points really. The JSONEncoder is not called for float numbers. The motivation here

[issue36533] logging regression with threading + fork are mixed in 3.7.1rc2 (deadlock potential)

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 3b4b28efbde63502709bede7c5f9403ec6f37428 by Gregory P. Smith in branch '3.7': [3.7] bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) (GH-13170) https://github.com/python/cpython/commit/3b4b28efbde63502709bede7c5f9403ec6f37428 --

[issue36838] running 'make html' from the Doc tree emits an unwelcoming error message

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: I noted this at the mentored sprints this year when I suggested my mentee "cd Doc ; make html" to show them how to build the docs, check that they build and see what they look like. Once upon a time we used to auto-fetch and install sphinx (long ago?), thi

[issue36841] Supporting customization of float encoding in JSON

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- nosy: +ezio.melotti, rhettinger type: -> enhancement versions: +Python 3.8 ___ Python tracker ___ ___ Py

[issue20709] os.utime(path_to_directory): wrong documentation for Windows.

2019-05-07 Thread Julien Palard
Julien Palard added the comment: Closing this issue, it has been fixed a year ago, thanks Jan-Philip for reporting, Stéphane for fixing, and everybody! \o/ \o/ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Pytho

[issue36842] Implement PEP 578

2019-05-07 Thread Steve Dower
New submission from Steve Dower : Implement PEP 578 -- assignee: steve.dower messages: 341819 nosy: christian.heimes, steve.dower priority: normal pull_requests: 13091 severity: normal stage: patch review status: open title: Implement PEP 578 type: enhancement versions: Python 3.8, Pyth

[issue36801] Wait for connection_lost in StreamWriter.drain

2019-05-07 Thread miss-islington
miss-islington added the comment: New changeset 1cc0ee7d9f6a2817918fafd24c18d8bb093a85d3 by Miss Islington (bot) (Andrew Svetlov) in branch 'master': bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13098) https://github.com/python/cpython/commit/1cc0ee7d9f6a2817918

[issue36839] Support the buffer protocol in code objects

2019-05-07 Thread Dino Viehland
Change by Dino Viehland : -- keywords: +patch pull_requests: +13093 stage: needs patch -> patch review ___ Python tracker ___ ___ Py

[issue36801] Wait for connection_lost in StreamWriter.drain

2019-05-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +13092 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36843] AIX build fails with failure to get random numbers

2019-05-07 Thread Robert Boehne
New submission from Robert Boehne : build fails with: ./python -E ../../Python-3.7.3/setup.py build Fatal Python error: _Py_HashRandomization_Init: failed to get random numbers to initialize Python -- components: Build messages: 341821 nosy: Robert Boehne priority: normal severity: no

[issue34616] implement "Async exec"

2019-05-07 Thread Andrew Svetlov
Andrew Svetlov added the comment: Matthias, please use GH-13148 for pointing on github pull requests. # is for links to this tracker issues. -- stage: patch review -> ___ Python tracker

[issue35495] argparse does not honor default argument for nargs=argparse.REMAINDER argument

2019-05-07 Thread Michael Blahay
Michael Blahay added the comment: Ryan, what are the exact steps to reproduce the problem? This is what I get when I run the code you included: >>> import argparse >>> parser = argparse.ArgumentParser() >>> parser.add_argument('things', nargs=argparse.REMAINDER, default=['nothing']) _StoreAct

[issue36844] abiflag `m` is no longer showing when compiled with --enable-shared

2019-05-07 Thread Anthony Sottile
New submission from Anthony Sottile : This appears to be a regression between 3.8a3 and 3.8a4 -- though it may be intentional and I'm missing something? I noticed this while packaging 3.8 for deadsnakes https://github.com/deadsnakes/python3.8 I've created a minimal reproduction: $ git chec

[issue36838] running 'make html' from the Doc tree emits an unwelcoming error message

2019-05-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36674] "unittest.TestCase.debug" should honour "skip" (and other test controls)

2019-05-07 Thread Lisa Roach
Change by Lisa Roach : -- keywords: +patch pull_requests: +13094 stage: test needed -> patch review ___ Python tracker ___ ___ Pytho

[issue36838] running 'make html' from the Doc tree emits an unwelcoming error message

2019-05-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 3918ad6b45da31e05265de5a455102276717c659 by Gregory P. Smith in branch 'master': bpo-36838: Suggest 'make venv' when missing Doc/ tools. (GH-13173) https://github.com/python/cpython/commit/3918ad6b45da31e05265de5a455102276717c659 --

[issue36843] AIX build fails with failure to get random numbers

2019-05-07 Thread Robert Boehne
Robert Boehne added the comment: robb@nepal:/raid/checkouts-raid/robb/nepal/build-py37$ gmake xlc_r -c -DNDEBUG -O -q64 -qlanglvl=extc99 -IObjects -IInclude -IPython -I. -I../../Python-3.7.3/Include -I/raid/checkouts-raid/robb/Python-2.7.15/Modules/zlib -DPy_BUILD_CORE -o Modules/_ma

[issue36843] AIX build fails with failure to get random numbers

2019-05-07 Thread Jason Madden
Change by Jason Madden : -- nosy: +jmadden ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue35723] Add "time zone index" cache to datetime objects

2019-05-07 Thread Ivan Pozdeev
Ivan Pozdeev added the comment: > which unfortunately use `is` to determine whether two datetimes are in the > same zone or not This sounds like a bug. Whether a tzinfo is a constant from a predefined set or something with a smart comparison semantic is none of datetime's business.

[issue36843] AIX build fails with failure to get random numbers

2019-05-07 Thread Christian Heimes
Christian Heimes added the comment: Could you please use a debugger and step through _Py_HashRandomization_Init and pyurandom to see, where the initialization of the RNG is failing? -- nosy: +christian.heimes ___ Python tracker

[issue24712] Docs page's sidebar vibrates on mouse wheel scroll on Chrome.

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +13095 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list ma

[issue32393] nav menu jitter in old documentation

2019-05-07 Thread Julien Palard
Julien Palard added the comment: I'm closing this as a duplicate of https://bugs.python.org/issue24712, for which I opened a pull request. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Docs page's sidebar vibrates on mouse wheel scroll on Chro

[issue36843] AIX build fails with failure to get random numbers

2019-05-07 Thread STINNER Victor
STINNER Victor added the comment: Try to compress config.log to attach it. Or at least attach the output of "./configure" as a file. I'm looking for HAVE_GETRANDOM, HAVE_GETRANDOM_SYSCALL, HAVE_GETENTROPY defines that you can find in pyconfig.h. About /dev/urandom: does this device exist? I

[issue36839] Support the buffer protocol in code objects

2019-05-07 Thread Dino Viehland
Change by Dino Viehland : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue33948] doc truncated lines in PDF

2019-05-07 Thread Julien Palard
Julien Palard added the comment: We recentrly upgraded our PDF build toolchain and I don't see it happen again. Don't hesitate to reopen if you find another occurence of it. Thanks for reporting! -- resolution: -> fixed stage: -> resolved status: open -> closed ___

[issue36674] "unittest.TestCase.debug" should honour "skip" (and other test controls)

2019-05-07 Thread Lisa Roach
Change by Lisa Roach : -- pull_requests: +13096 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue36674] "unittest.TestCase.debug" should honour "skip" (and other test controls)

2019-05-07 Thread Lisa Roach
Change by Lisa Roach : -- pull_requests: -13094 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue36801] Wait for connection_lost in StreamWriter.drain

2019-05-07 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36015] streamhandler cannot represent streams with an integer as name

2019-05-07 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset ca87eebb22d202c33f3317cbf85059cadc64fa9f by Vinay Sajip (Riccardo Magliocchetti) in branch 'master': bpo-36015: Handle StreamHandler representaton of stream with an integer name (GH-11908) https://github.com/python/cpython/commit/ca87eebb22d202c33

<    1   2   3   >