[issue32029] cgi: TypeError when no argument string is found

2017-11-14 Thread Berker Peksag
Berker Peksag added the comment: Thank you for your report. This looks like a duplicate of issue 2. You might workaround this by passing ``headers={"Content-Disposition": "inline"}`` to cgi.FieldStorage() (untested) -- nosy: +berker.peksag resolution:

[issue32044] pip3 install 3.6.3 crashes on startup; 3.5.4 works; on OS X 10.13.1

2017-11-15 Thread Berker Peksag
Berker Peksag added the comment: Thank you for your report. This is a problem with setuptools: https://github.com/pypa/setuptools/issues/885 I suggest upgrading both setuptools and pip: $ pip install -U setuptools pip -- nosy: +berker.peksag resolution: -> third party st

[issue32027] argparse allow_abbrev option also controls short flag combinations

2017-11-16 Thread Berker Peksag
Berker Peksag added the comment: Thank you for the report and for the PR. I think this is a duplicate of issue 26967. > This issue is either a doc issue only or an unintended combination of > long option shortening and (the way more common) flag combinations. This is indeed a bug so it

[issue32044] pip3 install 3.6.3 crashes on startup; 3.5.4 works; on OS X 10.13.1

2017-11-16 Thread Berker Peksag
Berker Peksag added the comment: 1) Don't reopen a closed issue. 2) Please use python-list or StackOverflow for usage questions. You need to replace 'pip' with 'pip3' in your case. If you get a similar error with 'pip3', try 'sudo pip3 in

[issue32051] Possible issue in multiprocessing doc

2017-11-16 Thread Berker Peksag
Berker Peksag added the comment: The example itself works fine, but I agree that it would be better to use a better name. We could replace ``('foo.bar.org', 5)`` in the following examples with ``('', 5)`` too. Would you like to send a PR? The documentation fil

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

2017-11-18 Thread Berker Peksag
Change by Berker Peksag : -- keywords: +patch pull_requests: +4396 ___ Python tracker <https://bugs.python.org/issue1102> ___ ___ Python-bugs-list mailin

[issue32064] python msilib view.fetch is not returning none

2017-11-18 Thread Berker Peksag
Berker Peksag added the comment: Issue 1102 is still open so this bug is not fixed yet. I've just opened PR 4459 to fix it. -- nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Add support for _msi.Recor

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

2017-11-18 Thread Berker Peksag
Berker Peksag added the comment: I've opened PR 4459 to fix this. Here's a simple reproducer I adapted from the script uploaded by uday kiran in issue 32064. -- nosy: +berker.peksag, uday kiran versions: +Python 3.6, Python 3.7 -Python 3.4,

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

2017-11-18 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue12239> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1104] msilib.SummaryInfo.GetProperty() truncates the string by one character

2017-11-18 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue1104> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-11-18 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue12382> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-11-18 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue12202> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-11-20 Thread Berker Peksag
Berker Peksag 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 would be a new feature

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

2017-11-21 Thread Berker Peksag
New submission from Berker Peksag : 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 one item ``[a]`` *and* a list with

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

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

[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 added the comment: Thanks for the ping and for the review! I will open a PR this week. -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue19

[issue32120] python 3.6.0 is not importing sqlite3

2017-11-23 Thread Berker Peksag
Berker Peksag 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 Modules -Build nosy: +berker.peksag

[issue32120] python 3.6.0 is not importing sqlite3

2017-11-23 Thread Berker Peksag
Berker Peksag 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. -- ___ Python trac

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

2017-11-23 Thread Berker Peksag
Change by Berker Peksag : -- stage: patch review -> backport needed versions: -Python 2.7 ___ Python tracker <https://bugs.python.org/issue1102> ___ ___ Py

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

2017-11-23 Thread Berker Peksag
Berker Peksag 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/commit/bdb8315c21825487b54852ff0

[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 : -- pull_requests: +4456 ___ Python tracker <https://bugs.python.org/issue19610> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-11-23 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4457 stage: backport needed -> patch review ___ Python tracker <https://bugs.python.org/issue1102> ___ ___ Python-

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

2017-11-23 Thread Berker Peksag
Berker Peksag 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/pe

[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 added the comment: Éric and Henk-Jaap: I've now opened PR 4519. -- ___ Python tracker <https://bugs.python.org/issue19610> ___ ___ Pytho

[issue32120] python 3.6.0 is not importing sqlite3

2017-11-23 Thread Berker Peksag
Berker Peksag 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 3.6.3, not 3.6.0) should

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

2017-11-23 Thread Berker Peksag
Berker Peksag 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/commit/4b3042900e7e8dc120408bab8

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

2017-11-23 Thread Berker Peksag
Berker Peksag 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 ___ Python tracke

[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 : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[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 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/commit/dcaed6b2d954786eb5369ec2e8dfde

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

2017-11-23 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4464 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue12382> ___ ___ Python-bugs-list mai

[issue31325] req_rate is a namedtuple type rather than instance

2017-11-23 Thread Berker Peksag
Change by Berker Peksag : -- keywords: +patch pull_requests: +4465 ___ Python tracker <https://bugs.python.org/issue31325> ___ ___ Python-bugs-list mailin

[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 : -- keywords: +patch pull_requests: +4466 stage: backport needed -> patch review ___ Python tracker <https://bugs.python.org/issu

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

2017-11-23 Thread Berker Peksag
Berker Peksag 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/commit/a645b23ffc76073a2eb4e77b88cb76

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

2017-11-23 Thread Berker Peksag
Berker Peksag 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 2.7, Python 3.5 ___

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

2017-11-24 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4471 ___ Python tracker <https://bugs.python.org/issue28334> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-11-24 Thread Berker Peksag
Berker Peksag 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/commit/4864a619dc1cc9092780ccf5a6327e

[issue30987] Support for ISO-TP protocol in SocketCAN

2017-11-24 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

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

2017-11-24 Thread Berker Peksag
Berker Peksag 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/cpyt

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

2017-11-24 Thread Berker Peksag
Berker Peksag 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: patch review -> resolved status

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

2017-11-24 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4473 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue12239> ___ ___ Python-

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

2017-11-24 Thread Berker Peksag
Berker Peksag 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/commit/19fb134185ce155bc53f517116fca7

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

2017-11-24 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4476 ___ Python tracker <https://bugs.python.org/issue12239> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-11-24 Thread Berker Peksag
Berker Peksag 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/commit/412f00b839eae2bc07ca08a8e615c3

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

2017-11-24 Thread Berker Peksag
Berker Peksag 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 -Python 3.4, P

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

2017-11-25 Thread Berker Peksag
Berker Peksag 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/commit/8d9bb11d8fcbf10cc9b1eb0a647bcf

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

2017-11-25 Thread Berker Peksag
Berker Peksag 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 <https://bugs.python.or

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

2017-11-25 Thread Berker Peksag
Change by Berker Peksag : -- components: -Build nosy: -Tu madre type: security -> resource usage ___ Python tracker <https://bugs.python.org/issue31233> ___ _

[issue32132] Android5

2017-11-25 Thread Berker Peksag
New submission from Berker Peksag : 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 tracker <https://bugs.python.org/is

[issue10231] SimpleHTTPRequestHandler directory bugs

2017-11-26 Thread Berker Peksag
Berker Peksag 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 to fix the macpath c

[issue32051] Possible issue in multiprocessing doc

2017-11-26 Thread Berker Peksag
Berker Peksag 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/commit/c172fc5031a4035986bef0b2fcef90

[issue32051] Possible issue in multiprocessing doc

2017-11-26 Thread Berker Peksag
Berker Peksag 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/commit/8a957534f5182022ee8ac2dbaac4b4

[issue32051] Possible issue in multiprocessing doc

2017-11-26 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue31854] Add mmap.ACCESS_DEFAULT to namespace

2017-11-27 Thread Berker Peksag
Berker Peksag 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 ___ Pyt

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

2017-11-28 Thread Berker Peksag
Berker Peksag 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

[issue32145] Wrong ExitStack Callback recipe

2017-11-30 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +ncoghlan type: crash -> behavior ___ Python tracker <https://bugs.python.org/issue32145> ___ ___ Python-bugs-list mai

[issue32132] Android5

2017-11-30 Thread Berker Peksag
Change by Berker Peksag : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue32132> ___ ___ Python-bugs-list

[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 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 https://reinbach.com/blog/setuptools

[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 added the comment: (Sorry, I messed up fields in the issue.) -- nosy: +ned.deily priority: normal -> release blocker ___ Python tracker <https://bugs.python.org/issu

[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 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/exif-py/pull/80 to cre

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

2017-12-04 Thread Berker Peksag
Berker Peksag 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.peksag ___ Python tracker &

[issue32218] add __iter__ to enum.Flag members

2017-12-04 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +ethan.furman ___ Python tracker <https://bugs.python.org/issue32218> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 added the comment: Thank you for fixing this, Neil. Can we close this issue now? -- priority: release blocker -> normal ___ Python tracker <https://bugs.python.org/issu

[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 : -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue32215> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-12-08 Thread Berker Peksag
Berker Peksag 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 123456 .. 1 test OK.

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

2017-12-08 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +steve.dower ___ Python tracker <https://bugs.python.org/issue32245> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32208] Improve semaphore documentation

2017-12-08 Thread Berker Peksag
Berker Peksag 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 resolution: -> fixed stage:

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

2017-12-08 Thread Berker Peksag
Berker Peksag 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 -> closed

[issue8722] Documentation for __getattr__

2017-12-09 Thread Berker Peksag
Change by Berker Peksag : -- keywords: +patch ___ Python tracker <https://bugs.python.org/issue8722> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29247] Document return value of epoll.poll

2017-12-11 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4697 ___ Python tracker <https://bugs.python.org/issue29247> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29247] Document return value of epoll.poll

2017-12-11 Thread Berker Peksag
Change by Berker Peksag : -- versions: -Python 2.7, Python 3.5 ___ Python tracker <https://bugs.python.org/issue29247> ___ ___ Python-bugs-list mailing list Unsub

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

2017-12-28 Thread Berker Peksag
Berker Peksag 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 -> closed superseder: -> IDNA2008 enco

[issue25095] test_httpservers hangs on 3.5.0, win 7

2018-01-04 Thread Berker Peksag
Berker Peksag 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 BaseHTTPRequestHandler to False which i

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 4af6110f77e141779492995fd168d4f027fcf3cf by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-32384: Skip test when _testcapi isn't available (GH-4940) https://github.com/python/cpython/commit/4af6110f77e141779492995fd

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5e8c52680450b67a116d3d555db8416c40576fdb by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-32384: Skip test when _testcapi isn't available (GH-4940) https://github.com/python/cpython/commit/5e8c52680450b67a116d3d555

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32463] problems with shutil.py and os.get_terminal_size

2018-05-18 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. I agree with Eryk. os.get_terminal_size() is a low-level function. shutil.get_terminal_size() should be used as documented at https://docs.python.org/3/library/os.html#os.get_terminal_size shutil.get_terminal_size() is the high

[issue32519] venv API docs - symlinks default incorrect

2018-05-18 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue32519> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32282] When using a Windows XP compatible toolset, `socketmodule.c` fails to build

2018-05-18 Thread Berker Peksag
Berker Peksag added the comment: New changeset 09eb6fe8fdd2515546b933902aef36b72d417ace by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-32282: Remove unnecessary check for `VersionHelpers.h` in `socketmodule.c` on Windows (GH-5120) https://github.com/python/cpyt

[issue32282] When using a Windows XP compatible toolset, `socketmodule.c` fails to build

2018-05-18 Thread Berker Peksag
Berker Peksag added the comment: It looks like we need to backport this manually for 3.5 (if Larry approves) -- stage: patch review -> backport needed versions: -Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issu

[issue28167] remove platform.linux_distribution()

2018-05-20 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: -6650 ___ Python tracker <https://bugs.python.org/issue28167> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-05-30 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: -1099 ___ Python tracker <https://bugs.python.org/issue24241> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33754] f-strings should be part of the Grammar

2018-06-03 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +eric.smith ___ Python tracker <https://bugs.python.org/issue33754> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32392] subprocess.run documentation does not have **kwargs

2018-06-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset af1ec97a6d1dde68b2dc0ee9b78965eb219061a8 by Berker Peksag (Tobias Kunze) in branch 'master': bpo-32392: Document env keyword argument of subprocess.run() (GH-7289) https://github.com/python/cpython/commit/af1ec97a6d1dde68b2dc0ee9b78965

[issue33795] Memory leak in X509StoreContext class.

2018-06-07 Thread Berker Peksag
Berker Peksag added the comment: Thank you for your report, but OpenSSL/crypto.py is not part of the standard library. I think the correct place to report this is https://github.com/pyca/pyopenssl There is a X509StoreContext class at https://github.com/pyca/pyopenssl/blob

[issue33795] Memory leak in X509StoreContext class.

2018-06-07 Thread Berker Peksag
Berker Peksag added the comment: > Is there a quick way for me to evaluate in the future wither a > particular file belongs to the standard library? If a Python file or package is located in the site-packages/ directory, it's not part of the standard library. -- resolu

[issue32392] subprocess.run documentation does not have **kwargs

2018-06-07 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +7114 ___ Python tracker <https://bugs.python.org/issue32392> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32392] subprocess.run documentation does not have **kwargs

2018-06-07 Thread Berker Peksag
Berker Peksag added the comment: New changeset 279564431e8e2fa4c20e8850420caea484a5d20b by Berker Peksag in branch '3.6': [3.6] bpo-32392: Document env keyword argument of subprocess.run() (GH-7289) https://github.com/python/cpython/commit/279564431e8e2fa4c20e8850420cae

[issue32392] subprocess.run documentation does not have **kwargs

2018-06-07 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32400] inspect.isdatadescriptor false negative

2018-06-10 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect

[issue31378] Missing documentation for sqlite3.OperationalError

2018-06-13 Thread Berker Peksag
Berker Peksag added the comment: New changeset 71ede00f140fa6b67a8ac17df68b80079efa8dc2 by Berker Peksag (Zackery Spytz) in branch 'master': bpo-31378: Document sqlite3.OperationalError exception (GH-7677) https://github.com/python/cpython/commit/71ede00f140fa6b67a8ac17df68b80

[issue31378] Missing documentation for sqlite3.OperationalError

2018-06-13 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue27777] cgi.FieldStorage can't parse simple body with Content-Length and no Content-Disposition

2018-06-13 Thread Berker Peksag
Berker Peksag added the comment: Thank you for the ping, Chris. I will try to combine Bert's and Julien's patches and prepare a PR this weekend. -- versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.o

[issue27777] cgi.FieldStorage can't parse simple body with Content-Length and no Content-Disposition

2018-06-13 Thread Berker Peksag
Berker Peksag added the comment: That's even better! :) Please submit your work as a pull request. Did you take a look at https://github.com/Pylons/webob/pull/300 as well? Can we use the test in the PR? Is it possible to adapt it solve both this and WebOb i

[issue11697] Unsigned type in mmap_move_method

2018-06-20 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-06 Thread Berker Peksag
Change by Berker Peksag : -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue34041> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34061] Document sqlite3.NotSupportedError exception

2018-07-06 Thread Berker Peksag
New submission from Berker Peksag : Most of the exceptions in sqlite3 module were documented in issue 6057 (https://github.com/python/cpython/commit/ed789f9cf9586d94e85115bb516a2ab6b9a2f668) Unfortunately, I noticed that I missed NotSupportedError while reviewing PR 8086. I think it should

[issue19072] classmethod doesn't honour descriptor protocol of wrapped callable

2018-07-07 Thread Berker Peksag
Berker Peksag added the comment: > Berker, do you mind to create a PR? I will submit a PR tomorrow. Do you have specific ideas for a micro-benchmark in mind or do you want to me just run the Python benchmark suite against the pa

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-08 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0830858aeedecc9ece60349f8c31c2690d1a99f8 by Berker Peksag (Sergey Fedoseev) in branch 'master': bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) https://github.com/python/cpyt

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-08 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34061] Document sqlite3.NotSupportedError exception

2018-07-08 Thread Berker Peksag
Berker Peksag added the comment: New changeset bc9aa813a34474e517af8999565ff6151559d42f by Berker Peksag (Marcin Niemira) in branch 'master': bpo-34061: Document sqlite3.NotSupportedError (GH-8172) https://github.com/python/cpython/commit/bc9aa813a34474e517af8999565ff6

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