[issue26944] android: test_posix fails

2016-05-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See more information in comments in issue26932. Since the id tool looks fixed in Android 6.x we should skip the test on Android <6.x. -- components: +Tests -Cross-Build, Library (Lib) dependencies: +android: add platform.android_ver() nosy:

[issue26943] Datetime.strptime crash

2016-05-04 Thread Jens de Bruijn
New submission from Jens de Bruijn: Datetime crashes while running script from the command line. When running the same date string from the interpreter (Ubuntu 16.04) it does not crash. date = datetime.datetime.strptime('May 01 23:59:59 + 2016', '%b %d %H:%M:%S + %Y') --

[issue26922] build from fresh checkout fails

2016-05-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le 04/05/2016 05:10, Nick Coghlan a écrit : > > Does strace give any potentially useful hints? > > For me: > > $ strace -e trace=file ./python -c "pass" Ah, thanks. It seems this was failing due to a pyvenv.cfg in the parent directory, which I removed.

[issue26923] asyncio.gather drops cancellation

2016-05-04 Thread Mathias Arens
Changes by Mathias Arens : -- nosy: +tatellos ___ Python tracker ___ ___ Python-bugs-list

[issue26929] android: test_strptime fails

2016-05-04 Thread Xavier de Gaye
Xavier de Gaye added the comment: Here is the result of running on android:

[issue26932] RTLD_* macros are not defined on Android

2016-05-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge, pitrou stage: -> patch review title: android: test_posix fails -> RTLD_* macros are not defined on Android ___ Python tracker

[issue26932] RTLD_* macros are not defined on Android

2016-05-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Chi Hsuan Yen. Please open separate issue for "id -G". -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue26932] RTLD_* macros are not defined on Android

2016-05-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 811ccdee6f87 by Serhiy Storchaka in branch 'default': Issue #26932: Fixed support of RTLD_* constants defined as enum values, https://hg.python.org/cpython/rev/811ccdee6f87 -- nosy: +python-dev ___

[issue26765] Factor out common bytes and bytearray implementation

2016-05-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 41969033eb9d by Serhiy Storchaka in branch 'default': Issue #26765: Moved common code and docstrings for bytes and bytearray methods https://hg.python.org/cpython/rev/41969033eb9d -- nosy: +python-dev

[issue26958] Suggestion to imporve queue.full reliability

2016-05-04 Thread Sudharsan R
New submission from Sudharsan R: I was browsing through the code for queue.full and queue.put methods. The queue.full method claims it is not a reliable one. But, the same internal implementation - _qsize is used for put as well as full. "put" is thread safe and reliable and "full" is not.

[issue26855] android: add platform.android_ver()

2016-05-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Several questions on implementation: 1. Should Android 4.1 supported? If not pass_fds and logics for deriving it can be removed. 2. I can't find ro.build.version.full on any device/emulator I have access to. Maybe it should be removed due to low popularity?

[issue26958] Suggestion to imporve queue.full reliability

2016-05-04 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +rhettinger ___ Python tracker ___

[issue26855] android: add platform.android_ver()

2016-05-04 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 04.05.2016 21:47, Chi Hsuan Yen wrote: > 1. Should Android 4.1 supported? If not pass_fds and logics for deriving it > can be removed. According to http://www.droid-life.com/tag/distribution/ the Jelly Bean versions (4.1, 4.2 and 4.3) still have a

[issue26918] android: test_pipes fails

2016-05-04 Thread Xavier de Gaye
Xavier de Gaye added the comment: The attached patch fixes this. -- keywords: +patch Added file: http://bugs.python.org/file42722/no_tr_skipped.patch ___ Python tracker

[issue26958] Suggestion to imporve queue.full reliability

2016-05-04 Thread Sudharsan R
Sudharsan R added the comment: Just add on to it.. q=queue.Queue() with q.not_full: q.put_nowait(1) this will hang. So if we acquire the not_full while computing size, all puts will wait. Same is the case for q.empty() and q.not_empty method and condition respectively. --

[issue26855] android: add platform.android_ver()

2016-05-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Version 2 attached. Removed ro.build.version.full. -- Added file: http://bugs.python.org/file42723/android_ver.patch ___ Python tracker

[issue26932] RTLD_* macros are not defined on Android

2016-05-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Xavier, please check that issues with ctypes and threading are not gone. -- ___ Python tracker ___

[issue26926] Large files are not supported on Android

2016-05-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- title: android: test_io fails -> Large files are not supported on Android ___ Python tracker ___

[issue26932] android: test_posix fails

2016-05-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Version 2. -- Added file: http://bugs.python.org/file42705/rtld_constants.patch ___ Python tracker ___

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Rohit Jamuar
Changes by Rohit Jamuar : Removed file: http://bugs.python.org/file42642/msvc_respect_env_flags.patch ___ Python tracker ___

[issue26949] IDLE restarts when one debugs code raising SystemExit

2016-05-04 Thread Terry J. Reedy
New submission from Terry J. Reedy: To be more specific: if one runs a file, the shell is restarted (with the file name). In the file, raise SystemExit is normally the same as running off the end of the file, and a prompt is printed. If one runs a file with debugger on, [DEBUG ON] is

[issue26956] About Idle-x version not updated for 1.13

2016-05-04 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> resolved ___ Python tracker ___ ___

[issue26956] About Idle-x version not updated for 1.13

2016-05-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is the wrong tracker for this report. Idle-X is a 3rd party IDLE extension maintained elsewhere. -- resolution: -> third party status: open -> closed ___ Python tracker

[issue26949] IDLE restarts when one debugs code raising SystemExit

2016-05-04 Thread ppperry
ppperry added the comment: Terry, Your `how to reproduce` is more complicated than necessary. This bug can be reproduced by just turning on the debugger in a python shell and typing `raise SystemExit` then pressing step in the debugger. -- versions: +Python 2.7

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Rohit Jamuar
Changes by Rohit Jamuar : -- versions: +Python 3.6 -Python 2.7 Added file: http://bugs.python.org/file42725/distutils_patch_master.patch ___ Python tracker

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Rohit Jamuar
Changes by Rohit Jamuar : -- versions: +Python 2.7 -Python 3.5, Python 3.6 Added file: http://bugs.python.org/file42726/distutils_patch_27.patch ___ Python tracker

[issue26876] Extend MSVCCompiler class to respect environment variables

2016-05-04 Thread Zachary Ware
Zachary Ware added the comment: (The version field is for the whole issue, not per patch.) -- versions: +Python 3.5, Python 3.6 ___ Python tracker ___

<    1   2