[issue33086] pip: IndexError

2018-03-17 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: The OP has also asked this on Stack Overflow: https://stackoverflow.com/questions/49329079/distutils-indexerror-tuple-index-out-of-range The problem was that they were passing a tuple to the url field. -- nosy: +berker.

[issue27645] Supporting native backup facility of SQLite

2018-03-17 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: FYI, I will have some time to debug the test failure this weekend. If I (or Lele or someone else) can't find the problem by Monday, I'm going to revert the patch from 3.7 branch (and probably from mast

[issue28788] ConfigParser should be able to write config to a given filename, not only into file object

2018-03-11 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bu

[issue28788] ConfigParser should be able to write config to a given filename, not only into file object

2018-03-11 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: I agree with Serhiy and Terry. Also, PR 5999 does not accept pathlib.Path() objects at the moment. This and Serhiy's following comment are good examples of why it shouldn't be added to the standard library in my opinion: > I

[issue33045] SSL Dcumentation Error

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you, Matt (and welcome to Python development!) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: enhancement -> behavior ___ P

[issue33045] SSL Dcumentation Error

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 3f439d14ad48f5d4f6017fc814326fb1f6237b53 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-33045: Fix typos in SSL documentation (GH-6065) https://github.com/python/cpython/

[issue33045] SSL Dcumentation Error

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 17b6c19d39229619de649f5a9e28a46779ef1c51 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-33045: Fix typos in SSL documentation (GH-6065) https://github.com/python/cpython/

[issue33045] SSL Dcumentation Error

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 9cf8c42f3231d3f066670d087a997bd1278482a0 by Berker Peksag (Matt Eaton) in branch 'master': bpo-33045: Fix typos in SSL documentation (GH-6065) https://github.com/python/cpython/

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset c546a62c4d7b37ead10f986554a01d6d593227a1 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067) https://github.com/python/cpython/

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 7280a4eef5fbe17e8ac82afd71fe6e51843240a5 by Berker Peksag in branch 'master': bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067) https://github.com/python/cpython/

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Test also passed on my MBP with SQLite 3.22.0 and the following line rc = _pysqlite_seterror(bck_conn, NULL); returns 1 (SQLITE_ERROR) with "SQL logic error" Looging at https://www.sqlite.org

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- stage: resolved -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +5828 stage: resolved -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: AppVeyor: sqlite3.sqlite_version: 3.21.0 (passed) Travis CI: sqlite3.sqlite_version: 3.8.2 (passed) http://buildbot.python.org/all/#/builders/88/builds/799 sqlite3.sqlite_version: 3.8.2 (

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: >From test.pythoninfo: sqlite3.sqlite_version: 3.8.7.1 -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: >From http://buildbot.python.org/all/#/builders/13/builds/808 == FAIL: test_bad_target_in_transaction (sqlite3.test.backup.Ba

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thanks, Lele. Note that Ned gave his permission to get this into 3.7.0b3 at https://github.com/python/cpython/pull/4238#issuecomment-371947334 We can, of course, still revert it before 3.7.0 final. -- resolution: -&

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset e8a5a92037b1f27809806bb87c17976d2d48d3e9 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-27645: Add support for native backup facility of SQLite (GH-4238) https://github.com/python/cpython/

[issue27645] Supporting native backup facility of SQLite

2018-03-10 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset d7aed4102d2a40c74553240c7f03585624d27aea by Berker Peksag (Emanuele Gaifas) in branch 'master': bpo-27645: Add support for native backup facility of SQLite (GH-4238) https://github.com/python/cpython/

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

2018-03-06 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: -966 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue29623> ___

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

2018-03-06 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: -594 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue29623> ___

[issue32732] LoggingAdapter ignores extra kwargs of Logger#log()

2018-02-28 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +vinay.sajip ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32732> ___

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bu

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset b93a52b136fd2285f2891eef91c50e3d36ea6f36 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-27846: Delete incorrect note in base64 docs (GH-5666) https://github.com/python/cpython/

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 2e8d9003ed7a97955c36fa19a9ce7c43d9ec83e1 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-27846: Delete incorrect note in base64 docs (GH-5666) https://github.com/python/cpython/

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 88c38a4049ded0e1f197fec3e76be7c0c0e83d7a by Berker Peksag (Zackery Spytz) in branch 'master': bpo-27846: Delete incorrect note in base64 docs (GH-5666) https://github.com/python/cpython/

[issue21196] Name mangling example in Python tutorial

2018-02-13 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +5469 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue21196> ___

[issue32820] Add bits method to ipaddress

2018-02-13 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: -berker.peksag ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32820] Add bits method to ipaddress

2018-02-13 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Eric, please delete the previous message when you reply by email. Keeping the previous message makes your comment harder to read. See https://bugs.python.org/issue32820#msg312050 on browser for example. -- nosy: +berker.

[issue29248] os.readlink fails on Windows

2018-02-12 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you, Craig and SSE4. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker <rep...@bugs.

[issue29248] os.readlink fails on Windows

2018-02-12 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset a1d33f742515dc70ae99bc3ea1c851729522afc3 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-29248: Fix os.readlink() on Windows (GH-5577) https://github.com/python/cpython/

[issue29248] os.readlink fails on Windows

2018-02-12 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- versions: -Python 3.5 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue29248] os.readlink fails on Windows

2018-02-12 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 3c34aad4e7a95913ec7db8e5e948a8fc69047bf7 by Berker Peksag (SSE4) in branch 'master': bpo-29248: Fix os.readlink() on Windows (GH-5577) https://github.com/python/cpython/commit/3c34aad4e7a95913ec7db8e5e948a8fc69

[issue32664] Connector "|" missing between ImportError and LookupError

2018-01-25 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- keywords: +easy stage: -> needs patch versions: +Python 3.7 ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32299] unittest.mock.patch.dict.__enter__ should return the dict

2018-01-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +michael.foord, rbcollins versions: -Python 3.6, Python 3.8 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue29344] sock_recv not detected a coroutine

2018-01-22 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Well, the current status quo has already confused a user (see msg286011) > (so that people don't write code that expects them to be not coroutines in > 3.6) Even if people expect these methods to be coroutines, t

[issue29344] sock_recv not detected a coroutine

2018-01-22 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: > We only fixed it in 3.7 and the doc was updated. 3.6 stays as is. I'm not talking about fixing code in 3.6. In 3.6, sock_* methods still documented as coroutines but they are normal functions: * https://docs.python.org/3.

[issue29344] sock_recv not detected a coroutine

2018-01-22 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Andrew, shouldn't we fix 3.6 documentation? sock_* methods still documented as coroutines. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue25095] test_httpservers hangs on 3.5.0, win 7

2018-01-04 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you for tracking down the problem, William! I just took a quick look at your patch and it seems reasonable to me. Setting protocol_version to 'HTTP/1.1' means setting the close_connection attribute of BaseHTTPRequestH

[issue32437] UnicodeError: 'IDNA does not round-trip'

2017-12-28 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: There is an open issue about adding IDNA 2008 support: Issue 17305. Closing this one as a duplicate of that issue. -- nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -> cl

[issue29247] Document return value of epoll.poll

2017-12-11 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- versions: -Python 2.7, Python 3.5 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue29247] Document return value of epoll.poll

2017-12-11 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4697 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue29247> ___

[issue8722] Documentation for __getattr__

2017-12-09 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- keywords: +patch ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue8722> ___ _

[issue32186] io.FileIO hang all threads if fstat blocks on inaccessible NFS server

2017-12-08 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: This has been fixed in all active branches (2.7, 3.6 and master) so I think we can close it as 'fixed'. Thanks, Nir! -- nosy: +berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -&

[issue32208] Improve semaphore documentation

2017-12-08 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: According to the discussion at https://github.com/python/cpython/pull/4709#issuecomment-350055732 it was decided to not backport this to 2.7. Closing this as 'fixed'. Thank you, all! -- nosy: +berker.peksag reso

[issue32245] OSError: raw write() returned invalid length on latest Win 10 Consoles

2017-12-08 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +steve.dower ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32245> ___

[issue32237] test_xml_etree leaked [1, 1, 1] references, sum=3

2017-12-08 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: I can confirm that Neil's PR (11cc289490b7b275fc0a033e2b376a8d4c780d9b) fixed the regression: $ ./python -m test -R 3:3 test_xml_etree Run tests sequentially 0:00:00 load avg: 0.66 [1/1] test_xml_etree beginning 6 repetitions

[issue32215] sqlite3 400x-600x slower depending on formatting of an UPDATE statement in a string

2017-12-05 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32215> ___

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-12-04 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you for fixing this, Neil. Can we close this issue now? -- priority: release blocker -> normal ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32218] add __iter__ to enum.Flag members

2017-12-04 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +ethan.furman ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32218> ___

[issue27240] 'UnstructuredTokenList' object has no attribute '_fold_as_ew'

2017-12-04 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: All three examples in test2.py correctly folded (doesn't hit the ``except Exception as e:`` branch anymore) in current master. Can this issue be closed now? -- nosy: +berker.

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-12-02 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: > Filed a bug https://github.com/simplejson/simplejson/issues/198 for > simplejson. I've opened https://github.com/simplejson/simplejson/pull/197 to make CLASSIFIERS a list. I've also opened https://github.com/ianare/exi

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-12-02 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: (Sorry, I messed up fields in the issue.) -- nosy: +ned.deily priority: normal -> release blocker ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-12-02 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Classifiers were always documented as lists (msg214915) and passing a non-list type was raised a cryptic exception message as already reported in my first message, https://github.com/pypa/setuptools/issues/1163 and

[issue32132] Android5

2017-11-30 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- stage: -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bugs.

[issue32145] Wrong ExitStack Callback recipe

2017-11-30 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +ncoghlan type: crash -> behavior ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32155] Fix flake8 warning F841: local variable ... is assigned to but never used

2017-11-28 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: I don't think distutils changes are correct. ('realm', self.DEFAULT_REALM) 'realm' is the config name and 'self.DEFAULT_REALM' is its default value. In the 'for key, default in ...:' loop, 1. It checks if it's alrea

[issue31854] Add mmap.ACCESS_DEFAULT to namespace

2017-11-27 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: PR 4093 has been merged. Closing this as 'fixed'. Thank you for the PR, Justus. -- nosy: +berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue32051] Possible issue in multiprocessing doc

2017-11-26 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bu

[issue32051] Possible issue in multiprocessing doc

2017-11-26 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 8a957534f5182022ee8ac2dbaac4b4900dc98159 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-32051: Fix name shadowing in multiprocessing docs (GH-4469) https://github.com/python/cpython/

[issue32051] Possible issue in multiprocessing doc

2017-11-26 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset c172fc5031a4035986bef0b2fcef906706d7abf3 by Berker Peksag (Jason Yang) in branch 'master': bpo-32051: Fix name shadowing in multiprocessing docs (GH-4469) https://github.com/python/cpython/

[issue10231] SimpleHTTPRequestHandler directory bugs

2017-11-26 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Note that the macpath module has been deprecated in Python 3.7 in issue 9850 and it's going to be removed in Python 3.8 (and Python 3.6 is the only Python 3 release that accepts bug fixes at the moment) Perhaps it's not worth

[issue32132] Android5

2017-11-25 Thread Berker Peksag
New submission from Berker Peksag <berker.pek...@gmail.com>: Android is not yet a fully supported platform. It's not clear what are you reporting here. Could you give us more information? -- nosy: +berker.peksag ___ Python tracke

[issue31233] socketserver.ThreadingMixIn leaks running threads after server_close()

2017-11-25 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- components: -Build nosy: -Tu madre type: security -> resource usage ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue28334] netrc does not work if $HOME is not set

2017-11-25 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thanks, Dimitri. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker <rep.

[issue28334] netrc does not work if $HOME is not set

2017-11-25 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 8d9bb11d8fcbf10cc9b1eb0a647bcf3658a4e3dd by Berker Peksag in branch 'master': bpo-28334: netrc() now uses expanduser() to find .netrc file (GH-4537) https://github.com/python/cpython/

[issue12239] msilib VT_EMPTY SummaryInformation properties raise an error (suggest returning None)

2017-11-24 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thanks for the patch, Mark. I updated the test code and commit it to 3.6 and master branches. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7 -Pyt

[issue12239] msilib VT_EMPTY SummaryInformation properties raise an error (suggest returning None)

2017-11-24 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 412f00b839eae2bc07ca08a8e615c3d7dc870646 by Berker Peksag in branch '3.6': [3.6] bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539) https://github.com/python/cpython/

[issue12239] msilib VT_EMPTY SummaryInformation properties raise an error (suggest returning None)

2017-11-24 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4476 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue12239> ___

[issue12239] msilib VT_EMPTY SummaryInformation properties raise an error (suggest returning None)

2017-11-24 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 19fb134185ce155bc53f517116fca73093ba55e9 by Berker Peksag in branch 'master': bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539) https://github.com/python/cpython/

[issue12239] msilib VT_EMPTY SummaryInformation properties raise an error (suggest returning None)

2017-11-24 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4473 stage: needs patch -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue12382] [msilib] Obscure exception message when trying to open a non-existent MSI database

2017-11-24 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you for your patch, William. I added a test case, a NEWS entry and committed it to 3.6 and master branches. -- components: +Library (Lib) nosy: +paul.moore, steve.dower, zach.ware resolution: -> fixed stage: pat

[issue12382] [msilib] Obscure exception message when trying to open a non-existent MSI database

2017-11-24 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset bfa89b21e119bac7fed4a5decc26f1fff8ec359e by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528) https://github.com/python/cpython/

[issue30987] Support for ISO-TP protocol in SocketCAN

2017-11-24 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bu

[issue12382] [msilib] Obscure exception message when trying to open a non-existent MSI database

2017-11-24 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 4864a619dc1cc9092780ccf5a6327e8abf66133d by Berker Peksag in branch 'master': bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528) https://github.com/python/cpython/

[issue28334] netrc does not work if $HOME is not set

2017-11-24 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4471 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue28334> ___

[issue30456] 2to3 docs: example of fix for duplicates in second argument of isinstance has superfluous parentheses

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Looks like I forgot to backport this 3.6 branch. Now it's done. Thanks, Eli. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python

[issue30456] 2to3 docs: example of fix for duplicates in second argument of isinstance has superfluous parentheses

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset a645b23ffc76073a2eb4e77b88cb7648cfc6ef77 by Berker Peksag in branch '3.6': bpo-30456: Clarify example for duplicates in second argument of isinstance (GH-1699) https://github.com/python/cpython/

[issue30456] 2to3 docs: example of fix for duplicates in second argument of isinstance has superfluous parentheses

2017-11-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- keywords: +patch pull_requests: +4466 stage: backport needed -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue31325] req_rate is a namedtuple type rather than instance

2017-11-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- keywords: +patch pull_requests: +4465 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue12382] [msilib] Obscure exception message when trying to open a non-existent MSI database

2017-11-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4464 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset dcaed6b2d954786eb5369ec2e8dfdeefe3cdc6ae by Berker Peksag in branch 'master': bpo-19610: setup() now raises TypeError for invalid types (GH-4519) https://github.com/python/cpython/

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

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

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you, Anthony. I added a test case and committed your patch to 3.6 and master branches. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset 4b3042900e7e8dc120408bab86642c09c9d25a5a by Berker Peksag in branch '3.6': bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459) https://github.com/python/cpython/

[issue32120] python 3.6.0 is not importing sqlite3

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: pysqlite2 only works in Python 2: https://github.com/ghaering/pysqlite/blob/e728ffbcaeb7bfae1d6b7165369bd0ae16cabf95/setup.py#L25-L28 You don't need to install pysqlite2 in Python 3. The latest release of Python 3.6 (which is

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Éric and Henk-Jaap: I've now opened PR 4519. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: > Will it be added to 3.6 also? Yes, I've created a backport PR: PR 4520 > And when it will be available in the windows installations you release? The dates for 3.6.4 release is listed at https://www.python.org/dev/peps/p

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4457 stage: backport needed -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.py

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-11-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- pull_requests: +4456 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue19610> ___

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: New changeset bdb8315c21825487b54852ff0511fb4881ea2181 by Berker Peksag in branch 'master': bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459) https://github.com/python/cpython/

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2017-11-23 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- stage: patch review -> backport needed versions: -Python 2.7 ___ Python tracker <rep...@bugs.python.org> <https://bugs.py

[issue32120] python 3.6.0 is not importing sqlite3

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: > Could you please let me know if we build latest python_v363 then sqlite > will be work right. It should build fine with Python 3.6.3. Let us know if you can't get it working. -- __

[issue32120] python 3.6.0 is not importing sqlite3

2017-11-23 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: 3.6.0 was required sqlite 3.7.4 but the requirement was lifted in Python 3.6.1. 3.6.3 is the latest release of Python 3.6. Please try Python 3.6.3. Also, this is a duplicate of issue 29098. -- components: +Extension M

[issue19610] Give clear error messages for invalid types used for setup.py params (e.g. tuple for classifiers)

2017-11-22 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thanks for the ping and for the review! I will open a PR this week. -- versions: -Python 3.6 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32109] Separated square brackets will generate a tuple instead of a list.

2017-11-22 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: That's why I mentioned ``[a], [a, b, c]`` in my earlier message. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32109] Separated square brackets will generate a tuple instead of a list.

2017-11-21 Thread Berker Peksag
New submission from Berker Peksag <berker.pek...@gmail.com>: Thank you for your report and for the PR, but I think you misunderstood documentation: Using square brackets, separating items with commas: [a], [a, b, c] The comma is used to show two different lists: a list with on

[issue32083] sqlite3 Cursor.description can't return column types

2017-11-20 Thread Berker Peksag
Berker Peksag <berker.pek...@gmail.com> added the comment: Thank you for your report. According to https://github.com/python/cpython/blob/04dee2720851ec39e831beaa3edc0c59f228f461/Modules/_sqlite/cursor.c#L573 we always set the 'type_code' field described in PEP 249 to None. Setting it

[issue12202] Check status returns in msilib.SummaryInformation.GetProperty()

2017-11-18 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue12202> ___

[issue12382] [msilib] Obscure exception message when trying to open a non-existent MSI database

2017-11-18 Thread Berker Peksag
Change by Berker Peksag <berker.pek...@gmail.com>: -- nosy: +berker.peksag ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue12382> ___

<    2   3   4   5   6   7   8   9   10   11   >