[issue35609] Improve of abc.py docstring

2018-12-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5c117dd227e1b4c4f0a62564d8592f1ba45c91eb by Serhiy Storchaka in branch 'master': bpo-35609: Remove examples for deprecated decorators in the abc module. (GH-11355)

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

2018-12-30 Thread mattip
mattip added the comment: > the original decision to exclude non 'C' views was deliberate Seems this is reflected in the code: ``` a = np.array([[0, 1, 2], [3, 4, 5]]) mv = memoryview(a.T) mv.f_contiguous # True mv.cast('i', (3, 2)) # TypeError: memoryview: casts are restricted to

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset efcf08d8ca9084d8248715f0634c21b705f02ca2 by Gregory P. Smith in branch '3.7': [3.7] bpo-35214: Annotate posix calls for clang MSan. (GH-11389) (GH-11391) https://github.com/python/cpython/commit/efcf08d8ca9084d8248715f0634c21b705f02ca2

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +fdrake, pitrou, serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10758 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10758, 10759 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10758, 10759, 10760 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-12-30 Thread Ned Deily
Ned Deily added the comment: If the failure has regularly shown up on 3.6 FreeBSD buildbots in the past, I would accept a backport of the test change to 3.6. -- nosy: +ned.deily ___ Python tracker

[issue35614] Broken help() on metaclasses

2018-12-30 Thread Nick Coghlan
Change by Nick Coghlan : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35614] Broken help() on metaclasses

2018-12-30 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset b539cef31c060c7eecc331d25a23b80ded0baf08 by Nick Coghlan (Sanyam Khurana) in branch 'master': bpo-35614: Fix pydoc help() on metaclasses (#11357) https://github.com/python/cpython/commit/b539cef31c060c7eecc331d25a23b80ded0baf08 --

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 1d300ce1d8238136595c8fea76266a4755cd73a2 by Gregory P. Smith in branch 'master': bpo-35214: Annotate posix calls for clang MSan. (#11389) https://github.com/python/cpython/commit/1d300ce1d8238136595c8fea76266a4755cd73a2 --

[issue35596] Fatal Python error: initfsencoding: unable to load the file system codec zipimport.ZipImportError: can't find module 'encodings'

2018-12-30 Thread Nick Coghlan
Nick Coghlan added the comment: Ah, you're right - I missed that the ForceASCII stuff was on the non-Windows side of an ifdef so it's literally impossible for that change to affect Windows, not just highly unlikely. It would be interesting to compare the output of `python -vv` between the

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10755, 10756 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10755, 10756, 10757 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10755 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread miss-islington
miss-islington added the comment: New changeset 5d2e4b1ff2f01b6aeac2f2f302f363d3eed225fa by Miss Islington (bot) in branch '3.7': bpo-35214: Skip test_io tests that'd cause a huge malloc under msan (GH-11385) https://github.com/python/cpython/commit/5d2e4b1ff2f01b6aeac2f2f302f363d3eed225fa

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: https://buildbot.python.org/all/#/builders/135/builds/1110 == Tests result: SUCCESS == 404 tests OK. 10 slowest tests: - test_tokenize: 3 min 43 sec - test_concurrent_futures: 3 min 28 sec - test_multiprocessing_spawn: 3 min 20 sec - test_tools: 2 min 59

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: Status on my upcoming buildbot host after today's changes: == Tests result: FAILURE == 375 tests OK. 11 tests failed: test_asyncio test_builtin test_code test_ctypes test_ioctl test_openpty test_os test_posix test_pty test_shutil test_uuid 32

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset e5796c42c687e1454e84dcc50e6f67db48ff69a0 by Gregory P. Smith in branch 'master': bpo-35214: Skip test_io tests that'd cause a huge malloc under msan (#11385) https://github.com/python/cpython/commit/e5796c42c687e1454e84dcc50e6f67db48ff69a0

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10749 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10749, 10750 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10749, 10750, 10751 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10745, 10746, 10747, 10748 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10745, 10746 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10745, 10746, 10748 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10745 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: my test skipping logic is somehow not detecting my ubsan buildbot https://buildbot.python.org/all/#/builders/135/builds/1108/steps/4/logs/stdio TODO: figure that out. otherwise the regex change fixed test_sigfpe. --

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10742, 10743 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10742, 10743, 10744 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Fish Wang
Fish Wang added the comment: Just checked weakref.py on different branches, I think this bug exists in Python 2.7, 3.4, 3.5, and 3.6 as well. -- ___ Python tracker ___

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10742 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Emmanuel Arias
Change by Emmanuel Arias : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Fish Wang
Fish Wang added the comment: Just submitted a PR against the master branch on GitHub. > This can be apply to 3.8? I think so. -- ___ Python tracker ___

[issue35550] Some define guards for Solaris are wrong

2018-12-30 Thread miss-islington
miss-islington added the comment: New changeset d82344378ad8e471b8ed12fb99807f68351c5412 by Miss Islington (bot) in branch '3.7': bpo-35550: Fix incorrect Solaris define guards (GH-11275) https://github.com/python/cpython/commit/d82344378ad8e471b8ed12fb99807f68351c5412 -- nosy:

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch, patch pull_requests: +10737, 10738, 10739, 10740 stage: -> patch review ___ Python tracker ___

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch pull_requests: +10737, 10738 stage: -> patch review ___ Python tracker ___

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch pull_requests: +10737, 10738, 10739 stage: -> patch review ___ Python tracker ___

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +10737 stage: -> patch review ___ Python tracker ___ ___

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35550] Some define guards for Solaris are wrong

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith resolution: -> fixed stage: patch review -> commit review versions: +Python 3.8 ___ Python tracker ___

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Fish Wang
Fish Wang added the comment: Thanks for your reply. I'm preparing a PR. However, I'm not sure how to write a reliable test case to trigger the crash outside my application. I will submit the PR for now, and see if anyone on the mailing list has a better idea of what a reliable test case

[issue35550] Some define guards for Solaris are wrong

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10735 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! Seems like a bug. Please provide a patch. This can be apply to 3.8? -- nosy: +eamanu ___ Python tracker ___

[issue35550] Some define guards for Solaris are wrong

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10735, 10736 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35550] Some define guards for Solaris are wrong

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 6f9bc72c79c3262e5d0f2c0e96b016477399cfb1 by Gregory P. Smith (Jakub Kulík) in branch 'master': bpo-35550: Fix incorrect Solaris define guards (GH-11275) https://github.com/python/cpython/commit/6f9bc72c79c3262e5d0f2c0e96b016477399cfb1

[issue35617] unittest discover does not work with implicit namespaces

2018-12-30 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! IMO its a good propose. You will have to modify some tests. -- nosy: +eamanu versions: +Python 3.8 ___ Python tracker ___

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10733 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10733, 10734 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23057] [Windows] asyncio: support signal handlers on Windows (feature request)

2018-12-30 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: I'm going to close this as 3.7 and 3.8 are good now, but if someone wants to see the same thing done in 2.7 it should be possible for them make a PR. This is primarily just a configure.ac change. -- resolution: -> fixed stage: commit review ->

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset a144feeb7ec501aaf30072d50e70d54b200e5ef0 by Gregory P. Smith (Miss Islington (bot)) in branch '3.7': bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373) (GH-11376)

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 01b9664740307b39c2907bd84cbb0b2c35be9df4 by Gregory P. Smith (Miss Islington (bot)) in branch '3.7': bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375) (GH-11378)

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Stephan Hohe
Stephan Hohe added the comment: Actually the segfault is in Objects/listobject.c:2301 in that test since it doesn't use tuples. But the takeaway is the same: `i` overflows to a negative number and causes an invalid memory access. -- ___ Python

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: These are all related to the output of the child process containing sanitizer stuff so the stdout/stderr based tests are failing. i skipped two of these for memory sanitizers, the third looks easy enough to fix via the regex. PR attached. --

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- keywords: +patch, patch pull_requests: +10730, 10731 stage: -> patch review ___ Python tracker ___

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- keywords: +patch pull_requests: +10730 stage: -> patch review ___ Python tracker ___ ___

[issue35225] test_faulthandler fails under ubsan

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- keywords: +patch, patch, patch pull_requests: +10730, 10731, 10732 stage: -> patch review ___ Python tracker ___

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Stephan Hohe
Change by Stephan Hohe : -- keywords: +patch, patch, patch pull_requests: +10727, 10728, 10729 stage: -> patch review ___ Python tracker ___

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Stephan Hohe
Change by Stephan Hohe : -- keywords: +patch pull_requests: +10727 stage: -> patch review ___ Python tracker ___ ___

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Stephan Hohe
Change by Stephan Hohe : -- keywords: +patch, patch pull_requests: +10727, 10728 stage: -> patch review ___ Python tracker ___ ___

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi, I think this is indeed a bug, `copy()` is expected to succeed. I was able to reproduce the issue in an interpreter but did not succeed to write a test case that triggers the race-condition. I think the fix you suggested is the right solution. --

[issue35623] Segfault in test_bigmem.ListTest.test_sort

2018-12-30 Thread Stephan Hohe
New submission from Stephan Hohe : When running test_bigmem with -M 30G the interpreter crashes in list_sort_impl() in Objects/listobject.c:2290 due to an integer overflow in `i`. -- components: Interpreter Core messages: 332780 nosy: sth priority: normal severity: normal status:

[issue31122] SSLContext.wrap_socket() throws OSError with errno == 0

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31122] SSLContext.wrap_socket() throws OSError with errno == 0

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: -Python 3.5, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue31122] SSLContext.wrap_socket() throws OSError with errno == 0

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue31122] SSLContext.wrap_socket() throws OSError with errno == 0

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: This flakiness just caused a PR merge to be blocked by AppVeyor for me: == ERROR: test_with_statement (test.test_nntplib.NetworkedNNTP_SSLTests)

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset b474e6774d60fa67d5373e361a0ed53c18b24f53 by Gregory P. Smith in branch 'master': bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375) https://github.com/python/cpython/commit/b474e6774d60fa67d5373e361a0ed53c18b24f53

[issue35606] Add prod() function to the math module

2018-12-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: > I am not sure that a simple one-line function is worth it. FWIW, it is often the one liners that turn out to be the most useful building blocks. In this case the one-liner is inconvenient (two imports), not as fast we would like, and a little opaque:

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10722 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10723 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Cheryl Sabella added the comment: PR11377 is the first refactor. It moves translate_key to the module level and also moves the definitions of the key tuples to the module level since they are used in more than one place (and they don't change). As a side note, I'll do the refactoring over

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10721, 10722, 10723 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10721 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10721, 10722 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: As this is internal only rather than a feature, i'll bring this into 3.7 as well. -- versions: +Python 3.7 ___ Python tracker ___

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10718 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 387512c7ecde6446f2e29408af2e16b9fc043807 by Gregory P. Smith in branch 'master': bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373) https://github.com/python/cpython/commit/387512c7ecde6446f2e29408af2e16b9fc043807

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10718, 10719 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +10718, 10719, 10720 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10715, 10716, 10717 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10715, 10716 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35214] Get the test suite passing with clang Memory Sanitizer enabled

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10715 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35620] asyncio test failure on appveyor

2018-12-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: My position is that tests that are known to occasionally fail independently of any changes in particular PRs should not be allowed to block merging. In the context of CI, the failure is a lie. One solution, and the easiest, is to disable the test. That is

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10712, 10713, 10714 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10712, 10713 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +10712 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35622] Add support for Linux SCHED_DEADLINE

2018-12-30 Thread Michael Büsch
New submission from Michael Büsch : Are there plans to support Linux SCHED_DEADLINE in the os module? If not, would changes to add such support be welcome? Support for SCHED_DEADLINE would also need support for sched_setattr/sched_getattr. -- components: Library (Lib) messages: 332772

[issue35621] asyncio.create_subprocess_exec() only works with main event loop

2018-12-30 Thread Stephan Hohe
New submission from Stephan Hohe : `asyncio.create_subprocess_exec()` accepts a `loop` parameter, but doesn't use it to watch the child process. Instead uses `get_event_loop_policy().get_child_watcher()`, which doesn't doesn't know about `loop` but tries to use the current default event

[issue35617] unittest discover does not work with implicit namespaces

2018-12-30 Thread Simon Fagerholm
Simon Fagerholm added the comment: Martin: Yeah, they same to be same! Can't believe I didn't find it -- ___ Python tracker ___

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28503] [Patch] '_crypt' module: fix implicit declaration of crypt(), use crypt_r() where available

2018-12-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list

[issue23057] [Windows] asyncio: support signal handlers on Windows (feature request)

2018-12-30 Thread Jeremy Kloth
Jeremy Kloth added the comment: GH-11274 desperately needs to be addressed! The 2 Windows 7 buildbots have been failing on 3.x since the merge of GH-11135 on 12-18. Either that or the commit b5c8cfa needs to be reverted. Being the holiday season and all I can see the extra time needed for

[issue35617] unittest discover does not work with implicit namespaces

2018-12-30 Thread Martin Panter
Martin Panter added the comment: Is this related to Issue 23882? That one is about making discovery work when “__init__.py” files are removed. -- nosy: +martin.panter ___ Python tracker

[issue32419] Add unittest support for pyc projects

2018-12-30 Thread Martin Panter
Martin Panter added the comment: Seems to be a lot of overlap with Issue 26859 by Xavier. Looks like Xavier included a test case, but Bassemʼs changes on Git Hub seem more thorough in the impementation and doc strings. -- nosy: +martin.panter ___

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

2018-12-30 Thread Laurent Gautier
Laurent Gautier added the comment: Wait. Isn't a `memoryview` memerely a Python object for a buffer inferface, whatever its valid attributes or flags might be ? The perceived oddness that lead to the addition of the keyword 'shape' was a good initial instinct that something was off, but

[issue35620] asyncio test failure on appveyor

2018-12-30 Thread Andrew Svetlov
Andrew Svetlov added the comment: Do you mean an environment modification? 1 test altered the execution environment: test_asyncio -- ___ Python tracker ___

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-12-30 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I think is missing a manual backport to 3.6, but now that we are in security fixes only I am not sure of what to do. -- ___ Python tracker

  1   2   >