[issue15999] Using new 'bool' format character

2019-09-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1f21eaa15e8a0d2b0f78d0e3f2b9e5b458eb0a70 by Serhiy Storchaka in branch 'master': bpo-15999: Clean up of handling boolean arguments. (GH-15610) https://github.com/python/cpython/commit/1f21eaa15e8a0d2b0f78d0e3f2b9e5b458eb0a70 --

[issue15999] Using new 'bool' format character

2019-09-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5eca7f3f3836cc734dfe8dc5ec669f3b4e9333fe by Serhiy Storchaka in branch 'master': bpo-15999: Always pass bool instead of int to socket.setblocking(). (GH-15621) https://github.com/python/cpython/commit/5eca7f3f3836cc734dfe8dc5ec669f3b4e9333fe

[issue15999] Using new 'bool' format character

2019-09-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset eb8974616bc58f44b2a3c3e4ca2326894ae42c8f by Serhiy Storchaka in branch 'master': bpo-15999: Always pass bool instead of int to the expat parser. (GH-15622) https://github.com/python/cpython/commit/eb8974616bc58f44b2a3c3e4ca2326894ae42c8f ---

[issue15999] Using new 'bool' format character

2019-08-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15290 pull_request: https://github.com/python/cpython/pull/15622 ___ Python tracker ___

[issue15999] Using new 'bool' format character

2019-08-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15289 pull_request: https://github.com/python/cpython/pull/15621 ___ Python tracker ___

[issue15999] Using new 'bool' format character

2019-08-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15284 pull_request: https://github.com/python/cpython/pull/15610 ___ Python tracker ___

[issue15999] Using new 'bool' format character

2019-08-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15283 pull_request: https://github.com/python/cpython/pull/15609 ___ Python tracker ___

[issue15999] Using new 'bool' format character

2015-10-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file40810/accept_bool.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue15999] Using new 'bool' format character

2015-10-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: No, it is orthogonal to Argument Clinic. Usually converting to Argument Clinic didn't change semantic. However these changes conflicted with proposed patch. Rebased patch is splitted on two patches. bool_cleanup.patch. It almost doesn't change the behavior.

[issue15999] Using new 'bool' format character

2015-10-10 Thread Chris Angelico
Chris Angelico added the comment: Has this been entirely superseded by Argument Clinic? -- nosy: +Rosuav ___ Python tracker ___ ___ Py

[issue15999] Using new 'bool' format character

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15999] Using new 'bool' format character

2012-10-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue15999] Using new 'bool' format character

2012-09-21 Thread Larry Hastings
Larry Hastings added the comment: Patch looks fine in principle, though I'd want someone to go over the individual cases to make sure they make sense. Also, I have something up my sleeve regarding argument parsing for 3.4, and if it gets accepted we might be touching all this code anyway. I m

[issue15999] Using new 'bool' format character

2012-09-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Issue14705 added 'bool' format character to PyArg_ParseTuple for using it for parsing multiple boolean arguments in os module. The proposed patch uses this format character for other boolean arguments. This makes the sources simpler, clearer and more relia