[issue28185] Tabs in C source code

2016-09-16 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue28168] Use _winapi.WaitForMultipleObjects in Popen.wait()

2016-09-16 Thread STINNER Victor
STINNER Victor added the comment: Oh nice, you implemented the PEP 475 for _winapi.WaitForMultipleObjects()! I missed this function when implementing this PEP :-) -- nosy: +haypo ___ Python tracker ___

[issue28168] Use _winapi.WaitForMultipleObjects in Popen.wait()

2016-09-16 Thread STINNER Victor
STINNER Victor added the comment: > I decided to make it an error to pass an empty sequence It makes sense since the original WaitForMultipleObjects() also requires at least one object: https://msdn.microsoft.com/en-us/library/windows/desktop/ms687025(v=vs.85).aspx nCount [in] The number

[issue26149] Suggest PyCharm Community as an editor for Unix platforms

2016-09-16 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks for the feedback :) As suggested, I removed all other IDEs and just link to the wiki. -- Added file: http://bugs.python.org/file44705/docupdate2.patch ___ Python tracker __

[issue26149] Suggest PyCharm Community as an editor for Unix platforms

2016-09-16 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hmm.. not sure if I did this correctly. I uploaded another patch file, is this right? Or, how can I edit my original patch? Thanks. -- ___ Python tracker

[issue27806] 2.7 32-bit builds fail on future releases of OS X due to dependency on deleted header file

2016-09-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4030300fcb18 by sashk in branch '2.7': Issue #27806: Fix 32-bit builds on macOS Sierra 10.12 broken by removal of https://hg.python.org/cpython/rev/4030300fcb18 -- nosy: +python-dev ___ Python tracker

[issue26149] Suggest PyCharm Community as an editor for Unix platforms

2016-09-16 Thread Guido van Rossum
Guido van Rossum added the comment: You did the right thing. Check out the "review" link. -- ___ Python tracker ___ ___ Python-bugs-li

[issue27806] 2.7 32-bit builds fail on macOS 10.12 Sierra due to dependency on deleted header file QuickTime/QuickTime.h

2016-09-16 Thread Ned Deily
Ned Deily added the comment: Thanks, Alexander and especially Jeremy, for the reviews and suggestions. Thanks again sashk for the patches. Committed for release in 2.7.13. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed title: 2.7 32-bit builds fail on f

[issue28185] Tabs in C source code

2016-09-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Misleading Indentation in C source code nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue28145] Fix whitespace in C source code

2016-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue15550 and issue8912. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bu

[issue28184] Trailing whitespace in C source code

2016-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Modules/expat/expat.h and Modules/expat/expat_external.h are external files. They should left unchanged. -- nosy: +ned.deily, serhiy.storchaka ___ Python tracker ___

[issue27761] Private _nth_root function loses accuracy

2016-09-16 Thread Tim Peters
Tim Peters added the comment: Let me give complete code for the last idea, also forcing the scaling multiplication to use the correct context: import decimal c = decimal.DefaultContext.copy() c.prec = 25 c.Emax = decimal.MAX_EMAX c.Emin = decimal.MIN_EMIN def erootn(x,

[issue28184] Trailing whitespace in C source code

2016-09-16 Thread Francisco Couzo
Changes by Francisco Couzo : Added file: http://bugs.python.org/file44706/trailing_whitespace2.patch ___ Python tracker ___ ___ Python-bugs-li

[issue28165] The 'subprocess' module leaks roughly 4 KiB of memory per call

2016-09-16 Thread Xavion
Changes by Xavion : Removed file: http://bugs.python.org/file44672/Output.log ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue27979] Remove bundled libffi

2016-09-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset d4981c76a8b9 by Zachary Ware in branch 'default': Closes #27979: Remove bundled copy of libffi https://hg.python.org/cpython/rev/d4981c76a8b9 -- nosy: +python-dev resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue28186] Autogenerated tabs / trailing whitespace

2016-09-16 Thread Francisco Couzo
New submission from Francisco Couzo: Fix some auto generated whitespace issues (tabs and trailing whitespace) -- files: autogenerated_whitespace.patch keywords: patch messages: 276774 nosy: franciscouzo priority: normal severity: normal status: open title: Autogenerated tabs / trailing w

<    1   2