[issue29133] Minor inaccuracy in shlex.shlex punctuation_chars example

2017-01-06 Thread Berker Peksag
Berker Peksag added the comment: I'd probably write it without the for loop: text = "a && b; c && d || e; f >'abc'; (def \"ghi\")" result = shlex.shlex(text) print(f"Old behavior: {list(result)}") result = sh

[issue28647] python --help: -u is misdocumented as binary mode

2017-01-06 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review type: -> behavior versions: +Python 3.6, Python 3.7 ___ Python tracker <http://bugs.python.org/i

[issue29180] skip tests that raise PermissionError in test_os (non-root user on Android)

2017-01-07 Thread Berker Peksag
Berker Peksag added the comment: Are you planning to use test.support.os_link() to fix other tests in near future? If test_os is the only user of the helper, I'd say let's keep it in Lib/test/test_os.py for now. test.support is already big enough and it would be better not to

[issue9338] argparse optionals with nargs='?', '*' or '+' can't be followed by positionals

2017-01-07 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue9338> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2017-01-07 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue9182> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29228] sqlite3 OperationalError on changing into WAL transaction mode

2017-01-10 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. This is a duplicate of issue 28518. -- components: +Library (Lib) nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> execute("begin immediate") throwing

[issue29246] typing.Union raises RecursionError when comparing Union to other type

2017-01-12 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +gvanrossum stage: -> patch review ___ Python tracker <http://bugs.python.org/issue29246> ___ ___ Python-bugs-list mai

[issue29274] Change “tests cases” → “test cases”

2017-01-14 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue29274> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29316] Can we keep typing.py provisional for the duration of the Python 3.6 release cycle?

2017-01-18 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue29316> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28735] Mock is equal to ANY but MagicMock is not

2017-01-20 Thread Berker Peksag
Berker Peksag added the comment: Serhiy's patch looks pretty good to me, thanks! Also, thanks for the report, Rafael. I definitely forgot to fix this case after fixing issue 25195. -- stage: patch review -> commit review ___ Python tracke

[issue29332] Uniform SelectSelector._select behavior

2017-01-20 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report! This is a duplicate of issue 27634. Since we got multiple reports [1][2] about the same problem on selectors34 (backport of selector module) and use of Gevent is very popular, I think we should reconsider the idea of wrapping

[issue29332] Uniform SelectSelector._select behavior

2017-01-20 Thread Berker Peksag
Berker Peksag added the comment: Great! Since this is no longer an issue on Python 3.4+, I'm going to close this as a duplicate of issue 27634 and merge https://github.com/berkerpeksag/selectors34/pull/4. -- resolution: -> duplicate stage: -> resolved status: ope

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

2017-01-23 Thread Berker Peksag
Berker Peksag added the comment: > 1. Should we add the VACUUM with a explicit commit? Maybe there should > be an implicit commit before VACUUM? VACUUM is often an expensive operation so I think people should need to explicitly handle it anyway. > 2. Should a SELECT start a trans

[issue29361] bug in pyserial: serialposix.py

2017-01-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, but pyserial is not part of the Python stdlib. Please open your bug report on https://github.com/pyserial/pyserial. -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status: open -> closed ty

[issue29283] duplicate README in site-packages

2017-01-29 Thread Berker Peksag
Berker Peksag added the comment: Good catch and thanks for the report! Renaming was done in issue 24633. It looks like it was added back in a merge commit: https://github.com/python/cpython/commit/ebe304e919b56d889313a2d15fb5c52189a32ef7 I will delete Lib/site-packages/README shortly

[issue29248] os.readlink fails on Windows

2017-01-29 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch. I think it would be better to use the existing framework in Win32SymlinkTests to create a test file instead of using a hardcoded path like 'C:\Users\All Users' (e.g. use Win32SymlinkTests.filelink and Win32SymlinkTests.filelink

[issue29247] Document return value of epoll.poll

2017-01-30 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Nathaniel. I agree that the documentation could be improved. Here is a patch. I also moved the constant table to epoll.register() documentation (it's already done in https://docs.python.org/3.7/library/select.html#polling-objects

[issue29283] duplicate README in site-packages

2017-01-30 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue29283> ___

[issue29283] duplicate README in site-packages

2017-01-30 Thread Berker Peksag
Changes by Berker Peksag : -- components: -Installation ___ Python tracker <http://bugs.python.org/issue29283> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29344] sock_recv not detected a coroutine

2017-01-31 Thread Berker Peksag
Berker Peksag added the comment: I'm not really familiar with asyncio terminology, but it looks like it returns a future: >>> asyncio.isfuture(loop.sock_recv(sock, 1024)) True There is a also a test in test_selector_events: f = self.loop.sock_r

[issue29407] Remove redundant ensure_future() calls in factorial example

2017-01-31 Thread Berker Peksag
New submission from Berker Peksag: Unless I'm missing something, ensure_future() calls at https://docs.python.org/3.6/library/asyncio-task.html#example-parallel-execution-of-tasks are redundant and can be removed. Off-topic: Can we use the async/await keywords in asyncio doc

[issue29218] distutils: Remove unused install_misc class

2017-01-31 Thread Berker Peksag
Berker Peksag added the comment: Thanks! Since Greg has given his LGTM and I couldn't find any usage of it in the wild, I've committed the patch with a NEWS entry. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status

[issue29364] msilib Fetch raises MSIError rather than return None

2017-02-01 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Jason. I think this is a duplicate of issue 1102. The second patch (_msi_fetch.patch.txt) there should fix your problem (if I read MSDN correctly, 103 is ERROR_NO_MORE_ITEMS.) I don't have access to a Windows box at the moment so

[issue29364] msilib Fetch raises MSIError rather than return None

2017-02-01 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> resolved superseder: -> Add support for _msi.Record.GetString() and _msi.Record.GetInteger() ___ Python tracker <http://bugs.python.org/i

[issue29407] Remove redundant ensure_future() calls in factorial example

2017-02-01 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the review, Guido. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue29344] sock_recv not detected a coroutine

2017-02-01 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch. sock_connect() wrapped by @coroutine in Lib/asyncio/selector_events.py so I left it as-is. Let me know if it still needs to be updated: @coroutine def sock_connect(self, sock, address): """Connect to a remo

[issue2771] Test issue

2017-02-02 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: fixed -> stage: resolved -> status: closed -> ___ Python tracker <http://bugs.python.org/issue2771> ___ ___ P

[issue2771] Test issue

2017-02-02 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: -> resolved status: -> closed ___ Python tracker <http://bugs.python.org/issue2771> ___ ___ P

[issue29430] zipfile: invalid link

2017-02-03 Thread Berker Peksag
Berker Peksag added the comment: > "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";> I think that HTML output suggests that their server configuration is broken. If you look at further down the page there is this error message: Something has triggered missing webpage on

[issue29441] Update examples to use async and await keywords in asyncio-task.rst

2017-02-03 Thread Berker Peksag
New submission from Berker Peksag: Attached patch converts all examples that use @coroutine decorator in Doc/library/asyncio-task.rst. I also removed the generator example at https://docs.python.org/3/library/asyncio-task.html#example-coroutine-displaying-the-current-date See issue 29407 for

[issue29198] AsyncGenerator is missing from typing

2017-02-03 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patches, Jelle :) -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> enhancement versions: +Python 3.5 ___ Python tracker <http://

[issue29411] Option --executable for entry_points

2017-02-03 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Michal. Note that both [1] and [2] point to the same patch. Perhaps you meant to paste a link to a separate patch for distutils? (I removed 3.3 and 3.4 from the versions field since they are in security-fix-only mode now. I don't

[issue28489] Fix comment in tokenizer.c

2017-02-04 Thread Berker Peksag
Berker Peksag added the comment: I've applied Ryan's patch since it's been sitting in the 'commit review' queue. Thanks! -- nosy: +berker.peksag resolution: -> fixed stage: commit review -> resolved status: op

[issue24905] Allow incremental I/O to blobs in sqlite3

2017-02-05 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue24905> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue968063] Add fileinput.islastline()

2017-02-05 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the updated patch, but I'm not sure FileInput class needs a islastline() method. I couldn't find any similar or duplicate feature requests on the tracker after this opened in 2004 (which is a sign that the need for this method is low.)

[issue29405] improve csv.Sniffer().sniff() behavior

2017-02-05 Thread Berker Peksag
Berker Peksag added the comment: > [...] but I want to make the change small so others won't get unfamiliar with > the new code. :-) Assuming it doesn't cause any behavior changes, I find Milt's patch simple enough and easier to understand than the version uses

[issue26355] Emit major version based canonical URLs for docs

2017-02-05 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue26355> ___ ___ Python-

[issue24459] Mention PYTHONFAULTHANDLER in the man page

2017-02-06 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch and sorry for my late response. I did some tweaks and am planning to commit the tweaked version of your patch this week. -- Added file: http://bugs.python.org/file46540/issue24459_cleanup.diff

[issue24459] Mention PYTHONFAULTHANDLER in the man page

2017-02-06 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file46541/issue24459_cleanup_2.diff ___ Python tracker <http://bugs.python.org/issue24459> ___ ___ Python-bug

[issue26355] Emit major version based canonical URLs for docs

2017-02-06 Thread Berker Peksag
Berker Peksag added the comment: Patch looks good to me too, thanks! Just left a super minor comment on Rietveld. You might want to commit this to 3.5+ because we don't daily build 3.4 docs anymore: https://github.com/python/docsbuild-scripts/blob/master/build_docs.py#L30 I didn'

[issue29441] Update examples to use async and await keywords in asyncio-task.rst

2017-02-07 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the reviews! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue29256] Windows select() errors out when given no fds to select on, which breaks SelectSelector

2017-02-07 Thread Berker Peksag
Berker Peksag added the comment: See http://bugs.python.org/issue25680#msg255116 for Guido's comment on platform differences. -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/is

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report and for the patch, Jim! I agree with Inada. global_gitignore is a better way to achieve this. > Maybe a better solution would be to add something to the devguide about > excluding IDE settings files, with a link to the Github instru

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-10 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +jason.coombs ___ Python tracker <http://bugs.python.org/issue29523> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset 89b1824e693419b20b6a9113e5293f1c1a78065f by GitHub in branch '3.6': bpo-27122: Fix comment to point to correct issue number (#48) https://github.com/python/cpython/commit/89b1824e693419b20b6a9113e5293f1c1a78065f -- nosy: +ber

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

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

[issue29538] bugs.python.org does not redirect to HTTPS

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue29538> ___ ___

[issue29542] python -m spacy.en.download undefined symbol: _ZSt24__throw_out_of_range_fmtPKcz

2017-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, but spacy is not part of the Python standard library. Please report your problem to spacy developers. -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status: open -&g

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> needs patch type: compile error -> enhancement versions: +Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue26213] Document BUILD_*_UNPACK opcodes

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue26213> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29543] Allow login to bugs.python.org with email address

2017-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. Feature requests about bugs.python.org should be reported to http://psf.upfronthosting.co.za/roundup/meta/ -- nosy: +berker.peksag stage: -> resolved status: open -> closed ___ Python t

[issue29544] Allow login to bugs.python.org with Google account

2017-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. Feature requests about bugs.python.org should be reported to http://psf.upfronthosting.co.za/roundup/meta/ -- nosy: +berker.peksag stage: -> resolved status: open -> closed ___ Python t

[issue29403] mock's autospec's behavior on method-bound builtin functions is broken

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag, michael.foord stage: -> patch review versions: -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue26467] Add async magic method support to unittest.mock.Mock

2017-02-14 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag versions: +Python 3.7 ___ Python tracker <http://bugs.python.org/issue26467> ___ ___ Python-bugs-list mailin

[issue29540] Add compact=True flag to json.dump/dumps

2017-02-14 Thread Berker Peksag
Berker Peksag added the comment: I'm +1 on the idea. Currently, a user needs to find this information in a wall of text: "To get the most compact JSON representation, you should specify (',', ':') to eliminate whitespace." It's easy to miss the lack of

[issue29557] binhex documentation claims unknown bug

2017-02-14 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6de2b7817fa9403e81dc38f13f3690f0bbf3d064 by Berker Peksag in branch 'master': bpo-29557: Remove ambiguous line in binhex docs (#90) https://github.com/python/cpython/commit/6de2b7817fa9403e81dc38f13f3690f0bbf3d064 -- nosy: +ber

[issue29557] binhex documentation claims unknown bug

2017-02-14 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review type: -> behavior versions: +Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/i

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

2017-02-18 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) -Tests stage: needs patch -> patch review versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-19 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue29520> ___ ___ Python-bugs-list mailing list Un

[issue29599] Github organization link is secret and not accessible from core-dev guide

2017-02-19 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. I agree that the link can be removed. We have a separate issue tracker for devguide at https://github.com/python/devguide/issues Please report this there. -- nosy: +berker.peksag resolution: -> third party stage: -> re

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2017-02-19 Thread Berker Peksag
Berker Peksag added the comment: FWIW, I also prefer PR 120 over PR 117. However, if Steven prefers PR 120 we probably should merge it only in master. -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.5, Python 3.7 ___ Pyt

[issue29574] python-3.6.0.tgz permissions borked

2017-02-19 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue29574> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29594] implementation of __or__ in enum.auto

2017-02-19 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +ethan.furman ___ Python tracker <http://bugs.python.org/issue29594> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-19 Thread Berker Peksag
Berker Peksag added the comment: All changes to Lib/test/test_copy.py have already been committed. Perhaps the following hunks from the latest patch can still be useful: -try: -d[types.CodeType] = _deepcopy_atomic -except AttributeError: -pass +d[types.CodeType] = _deepcopy_atomic

[issue29608] pip_gui

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag : -- components: -Tkinter ___ Python tracker <http://bugs.python.org/issue29608> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29608] pip_gui

2017-02-20 Thread Berker Peksag
Berker Peksag added the comment: pip_gui is not part of the Python standard library. Please use https://github.com/upendra-k14/pip_gui/issues to report your problem. -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status: open -&g

[issue29608] pip_gui

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag : -- type: performance -> ___ Python tracker <http://bugs.python.org/issue29608> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue29554] profile/pstat doc clariification

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review type: -> behavior versions: +Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue29554] profile/pstat doc clariification

2017-02-20 Thread Berker Peksag
Berker Peksag added the comment: New changeset 8fb1f6e039cbdeb333d83b7a62f0f37af4ce6e02 by Berker Peksag in branch 'master': bpo-29554: Improve docs for pstat module and profile. (#88) https://github.com/python/cpython/commit/8fb1f6e039cbdeb333d83b7a62f0f3

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

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +176 ___ Python tracker <http://bugs.python.org/issue11572> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-20 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue11572> ___ ___ Python-bugs-list mailing list Un

[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_

[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 tracker

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

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

[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 s

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +190 ___ Python tracker <http://bugs.python.org/issue29554> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +191 ___ Python tracker <http://bugs.python.org/issue29554> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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/6336f0d156feec0f109a8d01da108c

[issue29554] profile/pstat doc clariification

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[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/b067a5eef7fdf69264d3578654996f

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

2017-02-21 Thread Berker Peksag
Changes by Berker Peksag : -- 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 <http://bugs.python.org/issu

[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/0899b9809547ec2894dcf88cf4bba7

[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/0899b9809547ec2894dcf88cf4bba7

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

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue29623> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue29623> ___ ___ Python-bugs-list mailing list Unsubscrib

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

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +206 ___ Python tracker <http://bugs.python.org/issue28814> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +208 ___ Python tracker <http://bugs.python.org/issue28814> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20438] inspect: Deprecate getfullargspec?

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +207 ___ Python tracker <http://bugs.python.org/issue20438> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20438] inspect: Deprecate getfullargspec?

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +209 ___ Python tracker <http://bugs.python.org/issue20438> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +210 ___ Python tracker <http://bugs.python.org/issue28518> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29098] document minimum sqlite version

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

[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

[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

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

2017-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +lukasz.langa ___ Python tracker <http://bugs.python.org/issue29627> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 t

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

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +269 ___ Python tracker <http://bugs.python.org/issue28961> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +270 ___ Python tracker <http://bugs.python.org/issue28961> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +274 ___ Python tracker <http://bugs.python.org/issue29121> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-02-26 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +279 ___ Python tracker <http://bugs.python.org/issue28518> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    14   15   16   17   18   19   20   21   22   23   >