[issue27122] Hang with contextlib.ExitStack and subprocess.Popen (regression)

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset c6d2f498142c29ed62241ab6d89cb7b5e38f2fca by Berker Peksag in branch '3.5': bpo-27122: Fix comment to point to correct issue number (#50) https://github.com/python/cpython/commit/c6d2f498142c29ed62241ab6d89cb7b5e38f2fca -- nosy

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset fe70d924bb6106d4c21eb414f4a1ba1324e8f46a by Berker Peksag in branch 'master': bpo-29121: Remove outdated documentation about transactions (#313) https://github.com/python/cpython/commit/fe70d924bb6106d4c21eb414f4a1ba1324e8f46a

[issue28518] execute("begin immediate") throwing OperationalError

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 76995cab69d5ef83d31d8a5754cbad11be4038cb by Berker Peksag in branch '3.6': bpo-28518: Start a transaction implicitly before a DML statement (#245) (#318) https://github.com/python/cpython/commit/76995cab69d5ef83d31d8a5754cbad11be4038cb

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset fe70d924bb6106d4c21eb414f4a1ba1324e8f46a by Berker Peksag in branch 'master': bpo-29121: Remove outdated documentation about transactions (#313) https://github.com/python/cpython/commit/fe70d924bb6106d4c21eb414f4a1ba1324e8f46a

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6b81003bdbd9375886bae54f876650bcdccfe6c7 by Berker Peksag in branch '3.6': bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) (#323) https://github.com/python/cpython/commit

[issue28961] unittest.mock._Call ignores `name` parameter

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5aa3856b4f325457e8ec1ccf669369f543e1f6b5 by Berker Peksag in branch 'master': bpo-28961: Address my comments from earlier code review (#305) https://github.com/python/cpython/commit/5aa3856b4f325457e8ec1ccf669369f543e1f6b5

[issue28961] unittest.mock._Call ignores `name` parameter

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset fae59e1aa87ee9598d032e0bd697969a5784025f by Berker Peksag in branch '3.6': bpo-28961: Address my comments from earlier code review (#306) https://github.com/python/cpython/commit/fae59e1aa87ee9598d032e0bd697969a5784025f

[issue28518] execute("begin immediate") throwing OperationalError

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 4a926caf8e5fd8af771b2c34bfb6e91c732331fe by Berker Peksag in branch 'master': bpo-28518: Start a transaction implicitly before a DML statement (#245) https://github.com/python/cpython/commit/4a926caf8e5fd8af771b2c34bfb6e91c732331fe

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 893e86e9d3c0caeb878ccb1120c7259e022f3b68 by Berker Peksag in branch '3.6': bpo-29121: Remove outdated documentation about transactions (#313) (#319) https://github.com/python/cpython/commit/893e86e9d3c0caeb878ccb1120c7259e022f3b68

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset d5c11f7ace48701bb950c6345deee88c35c66e26 by Berker Peksag (Sayan Chowdhury) in branch 'master': bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) https://github.com/python/cpython/commit

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0dadf56737f591c83d18db5e445960d39448583e by Berker Peksag in branch '3.5': bpo-29655: Fixed possible reference leaks in `import *`. (#301) (#349) https://github.com/python/cpython/commit/0dadf56737f591c83d18db5e445960d39448583e

[issue28598] RHS not consulted in `str % subclass_of_str` case.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 53039ad3814a8918c5311f37bd654428b9843fcc by Berker Peksag (Martijn Pieters) in branch '3.6': bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#95) https://github.com/python/cpython/commit

[issue27788] platform module's version number doesn't match its docstring

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset bb59d89ceeb1abfb4d73c7fc60b534e4464adf35 by Berker Peksag in branch '3.6': bpo-27788 : synchronise platform.py version number (#246) (#341) https://github.com/python/cpython/commit/bb59d89ceeb1abfb4d73c7fc60b534e4464adf35

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 7accf2033d03025cc5324f8b9d22582bca3623e9 by Berker Peksag in branch '3.6': bpo-29655: Fixed possible reference leaks in `import *`. (#301) (#348) https://github.com/python/cpython/commit/7accf2033d03025cc5324f8b9d22582bca3623e9

[issue28598] RHS not consulted in `str % subclass_of_str` case.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset bc144f0abff2b36595171377ee847c0266596ab2 by Berker Peksag (Martijn Pieters) in branch '3.5': bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#94) https://github.com/python/cpython/commit

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 370f7a956cef5895c93ca5a53fc26b04df973aaf by Berker Peksag in branch 'master': bpo-24241: Add versionchanged directive to the documentation (#342) https://github.com/python/cpython/commit/370f7a956cef5895c93ca5a53fc26b04df973aaf -- nosy

[issue27200] make doctest in CPython has failures

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset b2a7c2f9862b28cf5db11ef837646ef0c589955c by Berker Peksag (Marco Buttu) in branch 'master': bpo-27200: fix configparser, copyreg and ctypes doctests (#240) https://github.com/python/cpython/commit/b2a7c2f9862b28cf5db11ef837646ef0c589955c

[issue9303] Migrate sqlite3 module to _v2 API to enhance performance

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 86a670543ff97d52fd9b8ca0477f8b6d27ee946d by Berker Peksag (Aviv Palivoda) in branch 'master': bpo-9303: Migrate sqlite3 module to _v2 API to enhance performance (#359) https://github.com/python/cpython/commit

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 85b8d01c916b482dac937b93ede1e53b1db0361c by Berker Peksag (David Ellis) in branch 'master': bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) https://github.com/python/cpython/commit/85b8d01c916b482dac937b93ede1e53b1db0361c

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 21ce65aa67f0dc63002ab0a5fb21ef921cf5279e by Berker Peksag in branch '3.6': [3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) (#432) https://github.com/python/cpython/commit/21ce65aa67f0dc63002ab0a5fb21ef921cf5279e

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 3f2155ffe683080f2a1b28408fa48d43ba92f943 by Berker Peksag (Marco Buttu) in branch 'master': bpo-16355: Clarify when inspect.getcomments() returns None (#428) https://github.com/python/cpython/commit/3f2155ffe683080f2a1b28408fa48d43ba92f943

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 41b4a2189f29daae008e57f799a30890643d191f by Berker Peksag in branch '3.5': bpo-16355: Clarify when inspect.getcomments() returns None (#428) (#691) https://github.com/python/cpython/commit/41b4a2189f29daae008e57f799a30890643d191f

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 948171bf999cf8b3e12048851041d2e04ae3a78c by Berker Peksag in branch '3.6': bpo-16355: Clarify when inspect.getcomments() returns None (#428) (#690) https://github.com/python/cpython/commit/948171bf999cf8b3e12048851041d2e04ae3a78c

[issue27200] make doctest in CPython has failures

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 909a6f626ff343937cd3f06fda996870e7890724 by Berker Peksag (Marco Buttu) in branch 'master': bpo-27200: Fix doctests in programming.rst and datetime.rst (#401) https://github.com/python/cpython/commit/909a6f626ff343937cd3f06fda996870e7890724

[issue29788] tarfile: Add absolute_path option to tarfile, disabled by default

2017-03-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29788> ___

[issue29779] New environment variable PYTHONHISTORY

2017-03-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- components: +Library (Lib) nosy: +berker.peksag stage: -> patch review type: -> enhancement ___ Python tracker <rep...@bugs.python.org> <http://bugs.

[issue29694] race condition in pathlib mkdir with flags parents=True

2017-03-18 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- components: +Library (Lib) nosy: +berker.peksag stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-17 Thread Berker Peksag
Berker Peksag added the comment: Now all PRs have been merged: * master: https://github.com/python/cpython/commit/3f2155ffe683080f2a1b28408fa48d43ba92f943 * 3.6: https://github.com/python/cpython/commit/948171bf999cf8b3e12048851041d2e04ae3a78c * 3.5: https://github.com/python/cpython/commit

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-17 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +567 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue16355> ___

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-17 Thread Berker Peksag
Berker Peksag added the comment: Please don't close an issue while there are still open backport PRs on GitHub. -- resolution: fixed -> stage: resolved -> status: closed -> open ___ Python tracker <rep...@bugs.python.org> <http

[issue7283] test_site failure when .local/lib/pythonX.Y/site-packages hasn't been created yet

2017-03-17 Thread Berker Peksag
Berker Peksag added the comment: I just saw a similar failure on AppVeyor: == FAIL: test_s_option (test.test_site.HelperFunctionsTests) -- Traceback (most

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-17 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +565 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue16355> ___

[issue28230] tarfile does not support pathlib

2017-03-15 Thread Berker Peksag
Berker Peksag added the comment: PR 512 has been merged and backported to 3.6 branch. I think this can be closed now. Thanks, Ethan and Serhiy! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tra

[issue29726] test_xmlrpc raises DeprecationWarnings

2017-03-15 Thread Berker Peksag
Berker Peksag added the comment: Thanks, Dillon! I went ahead and backported PR 481 to 3.5 and 3.6 branches. -- nosy: +berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tra

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-03-15 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue4851] xml.dom.minidom.Element.cloneNode fails with AttributeError

2017-03-15 Thread Berker Peksag
Berker Peksag added the comment: Thanks for your detective work, Craig. MvL is correct that those classes should be created via a Document object. I'm marking issue 15290 as a duplicate of this. Note that we can reopen this if you'd like to propose a documentation patch or PR to make

[issue15290] setAttribute() can fail

2017-03-15 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: not a bug -> duplicate stage: patch review -> resolved superseder: -> xml.dom.minidom.Element.cloneNode fails with AttributeError ___ Python tracker <rep...@bugs

[issue29725] sqlite3.Cursor doesn't properly document "arraysize"

2017-03-15 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- keywords: +easy nosy: +berker.peksag stage: -> needs patch type: -> enhancement versions: +Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <rep...@bugs.python.org> <h

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- stage: test needed -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +358 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29623> ___

[issue16355] inspect.getcomments() does not work in the interactive shell

2017-03-03 Thread Berker Peksag
Berker Peksag added the comment: I think David's comment about tests was for the second patch. Looking at msg199395 and msg199397, my understanding is that tests are still needed. -- nosy: +berker.peksag versions: +Python 3.5, Python 3.6, Python 3.7 -Python 3.3, Python 3.4

[issue9303] Migrate sqlite3 module to _v2 API to enhance performance

2017-03-03 Thread Berker Peksag
Berker Peksag added the comment: I will add commit information manually: https://github.com/python/cpython/commit/86a670543ff97d52fd9b8ca0477f8b6d27ee946d Thanks! -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Berker Peksag
Berker Peksag added the comment: It would be nice to add a test case to https://github.com/python/cpython/blob/86a670543ff97d52fd9b8ca0477f8b6d27ee946d/Lib/sqlite3/test/hooks.py#L204 before closing this. -- nosy: +berker.peksag stage: -> test needed versions: +Python 3.7 -Python

[issue9303] Migrate sqlite3 module to _v2 API to enhance performance

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: postponed -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://b

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-02-27 Thread Berker Peksag
Berker Peksag added the comment: I ignored 2.7 because you know... it's 2.7 :) And you said [1] that it doesn't have a big effect on real applications. [1] https://github.com/python/cpython/pull/301#issuecomment-282789185 -- nosy: +berker.peksag

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue28231] zipfile does not support pathlib

2017-02-27 Thread Berker Peksag
Berker Peksag added the comment: Note that Ned gave us a permission to get this into 3.6.1. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +301 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29655> ___

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +300 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29655> ___

[issue28598] RHS not consulted in `str % subclass_of_str` case.

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- versions: -Python 2.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28598] RHS not consulted in `str % subclass_of_str` case.

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue22594] Add a link to the regex module in re documentation

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue29414] Change 'the for statement is such an iterator' in Tutorial

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- stage: -> patch review type: -> enhancement ___ Python tracker <rep...@bugs.python.org> <http://bugs.

[issue29455] Mention coverage.py in trace module documentation

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- stage: -> patch review versions: +Python 3.6, Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +296 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24241> ___

[issue27788] platform module's version number doesn't match its docstring

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +295 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27788> ___

[issue29665] how to edit or delete issues created by me in bug tracker ?!

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue27840] functools.partial: don't copy keywoard arguments in partial_call()?

2017-02-27 Thread Berker Peksag
Berker Peksag added the comment: PR 253 has been merged. -- nosy: +berker.peksag resolution: -> rejected status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28911] Clarify the behaviour of assert_called_once_with

2017-02-27 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- nosy: -153957 resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Sayan! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue28230] tarfile does not support pathlib

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: Serhiy's patch looks good to me, but it would be nice to document the support for PathLike objects in the tarfile documentation. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +284 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28624> ___

[issue28231] zipfile does not support pathlib

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: PR 322 should make the example in msg284754 work: >>> import pathlib, zipfile >>> f = pathlib.Path('spam.zip') >>> with zipfile.ZipFile(f) as zf: ... zf.namelist() ... ['LICENSE'] It doesn't implement full PathLike support, but

[issue28231] zipfile does not support pathlib

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +283 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28231> ___

[issue29098] document minimum sqlite version

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Carl! The patch for issue 28518 has been lifted the requirement for sqlite3_stmt_readonly() so you can now use and compile Python 3.6.1 without a warning at compile time. -- resolution: -> out of date stage: -> resolved

[issue29355] sqlite3: remove sqlite3_stmt_readonly()

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: The patch for issue 28518 has been merged and it doesn't contain any use of sqlite3_stmt_readonly(). Closing this as 'out of date'. Thanks again Ma! -- resolution: -> out of date stage: -> resolved status: open -&g

[issue28518] execute("begin immediate") throwing OperationalError

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: Thank you everyone! This should be fixed now. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-02-26 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Aviv! -- assignee: -> docs@python components: +Documentation nosy: +docs@python resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior ___ Pyth

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +280 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29121> ___

[issue28518] execute("begin immediate") throwing OperationalError

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +279 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28518> ___

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +274 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29121> ___

[issue28961] unittest.mock._Call ignores `name` parameter

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue28961] unittest.mock._Call ignores `name` parameter

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +270 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28961> ___

[issue28961] unittest.mock._Call ignores `name` parameter

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +269 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28961> ___

[issue27788] platform module's version number doesn't match its docstring

2017-02-23 Thread Berker Peksag
Berker Peksag added the comment: Perhaps it's now time to drop that __version__ attribute in 3.7? We've removed the __version__ attribute from the email module in issue 22508. -- nosy: +berker.peksag stage: -> patch review ___ Python tracker &

[issue29627] configparser.ConfigParser.read() has undocumented/unexpected behaviour when given a bytestring path.

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +lukasz.langa ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29627> ___

[issue29355] sqlite3: remove sqlite3_stmt_readonly()

2017-02-22 Thread Berker Peksag
Berker Peksag added the comment: > - if (!sqlite3_stmt_readonly(self->statement->st)) { > + if (self->statement->is_dml) { Ah, yes now I understand what do you mean! :) I agree and this is already in my local branch

[issue29355] sqlite3: remove sqlite3_stmt_readonly()

2017-02-22 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Ma. > We can use the old way in here, the old way is even better IMO. What do you mean by the old way? The use of switch statement? -- dependencies: +execute("begin immediate") throwing Ope

[issue29098] document minimum sqlite version

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- dependencies: +sqlite3: remove sqlite3_stmt_readonly() type: -> enhancement versions: +Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue28518] execute("begin immediate") throwing OperationalError

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +210 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28518> ___

[issue20438] inspect: Deprecate getfullargspec?

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +207 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue20438> ___

[issue20438] inspect: Deprecate getfullargspec?

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +209 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue20438> ___

[issue28814] Deprecation notice on inspect.getargvalues() is incorrect

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +208 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28814> ___

[issue28814] Deprecation notice on inspect.getargvalues() is incorrect

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +206 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28814> ___

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29623] configparser.ConfigParser.read() does not accept Pathlib path as a single argument.

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29623> ___

[issue28814] Deprecation notice on inspect.getargvalues() is incorrect

2017-02-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0899b9809547ec2894dcf88cf4bba732c5d47d0d by Berker Peksag in branch 'master': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) https://github.com/python/cpython/commit/0899b9809547ec2894dcf88cf4bba732c5d47d0d

[issue20438] inspect: Deprecate getfullargspec?

2017-02-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0899b9809547ec2894dcf88cf4bba732c5d47d0d by Berker Peksag in branch 'master': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) https://github.com/python/cpython/commit/0899b9809547ec2894dcf88cf4bba732c5d47d0d

[issue16011] "in" should be consistent with return value of __contains__

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag stage: needs patch -> patch review versions: +Python 3.5, Python 3.6, Python 3.7 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <rep...@bugs.pytho

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset b067a5eef7fdf69264d3578654996fc3755df4ea by GitHub in branch '3.6': bpo-29554: Improve docs for pstat module and profile. (#88) (#227) https://github.com/python/cpython/commit/b067a5eef7fdf69264d3578654996fc3755df4ea

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bu

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6336f0d156feec0f109a8d01da108cf96e3d9c60 by GitHub in branch '3.5': bpo-29554: Improve docs for pstat module and profile. (#88) (#228) https://github.com/python/cpython/commit/6336f0d156feec0f109a8d01da108cf96e3d9c60

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +191 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29554> ___

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +190 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29554> ___

[issue29575] doc 17.2.1: basic Pool example is too basic

2017-02-21 Thread Berker Peksag
Berker Peksag added the comment: I agree with and Davin and Inada. Note that multiprocessing documentation is already too long and we'd like to be careful before adding another example. If you could create a "multiprocessing cookbook" on wiki.python.org I'm pretty sure we'

[issue28814] Deprecation notice on inspect.getargvalues() is incorrect

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag stage: needs patch -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue29609] Receiving messages from subprocess does not work on Mac OS X

2017-02-20 Thread Berker Peksag
Berker Peksag added the comment: Please use Stack Overflow or python-list for usage questions (and please do not reopen this issue again) -- nosy: +berker.peksag resolution: works for me -> not a bug status: open -> closed ___ Python tracke

[issue10938] Provide links to system specific strftime/ptime docs

2017-02-20 Thread Berker Peksag
Berker Peksag added the comment: I agree with Jim's review comment at https://github.com/python/cpython/pull/155#pullrequestreview-22646534 Those links will quickly get outdated and I'm sure that we will get reports like "this link doesn't work for my $PLATFORM $PLATFORM_VERSION".

[issue11572] bring Lib/copy.py to 100% coverage

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag <berker.pek...@gmail.com>: -- stage: needs patch -> patch review ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

<    6   7   8   9   10   11   12   13   14   15   >