[issue30126] CheckTraceCallbackContent of test_sqlite3 fails on OS X Tiger

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

[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-26 Thread Berker Peksag
Berker Peksag added the comment: 87c07fe9d908d0a2143fcc8369255c6ff3241503 should still be backported to 3.5 and 3.6 branches so please don't close it yet. -- resolution: fixed -> stage: resolved -> backport needed status: closed -> open

[issue29974] Change typing.TYPE_CHECKING doc example

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

[issue29974] Change typing.TYPE_CHECKING doc example

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

[issue18669] curses.chgat() moves cursor, documentation says it shouldn't

2017-04-26 Thread Berker Peksag
Berker Peksag added the comment: I think this is a documentation issue. curses.chgat() documentation tries to describe different signatures in one place and some of these signatures change the behavior of the function. For example, curses.chgat() calls mvwchgat() when users pass y and x to it

[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-26 Thread Berker Peksag
Berker Peksag added the comment: New changeset 271a289a03ad10c91c5326bde3020f1cdf6a1fff by Berker Peksag in branch '3.5': bpo-29974: Improve typing.TYPE_CHECKING example (GH-982) https://github.com/python/cpython/commit/271a289a03ad10c91c5326bde3020f

[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-26 Thread Berker Peksag
Berker Peksag added the comment: New changeset 04f389b8b357c8507b6c9642adcb8b956489e034 by Berker Peksag in branch '3.6': bpo-29974: Improve typing.TYPE_CHECKING example (GH-982) https://github.com/python/cpython/commit/04f389b8b357c8507b6c9642adcb8b

[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-26 Thread Berker Peksag
Berker Peksag added the comment: Now all backport PRs have been merged. Thanks for the PR, Mathias. > Thanks for making backport PRs! (and sorry for closing prematurely) No problem, thanks for the reviews! By the way, sorry I missed the typo in your last name while doing the initial me

[issue30179] Update Copyright to 2017

2017-04-27 Thread Berker Peksag
Changes by Berker Peksag : -- superseder: -> Update Python Software Foundation Copyright Year ___ Python tracker <http://bugs.python.org/issue30179> ___ ___ Py

[issue30052] URL Quoting page links to function Bytes instead of defintion

2017-04-27 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> backport needed type: -> behavior ___ Python tracker <http://bugs.python.org/issue30052> ___ ___ Pyth

[issue30163] argparse mx_group is required, when action value equal default will be ignore

2017-04-27 Thread Berker Peksag
Changes by Berker Peksag : -- superseder: -> argparse: default args in mutually exclusive groups ___ Python tracker <http://bugs.python.org/issue30163> ___ _

[issue27200] make doctest in CPython has failures

2017-04-27 Thread Berker Peksag
Berker Peksag added the comment: New changeset e65fcde85abf6617508f2d6b77020e24b8ca6f6b by Berker Peksag (Marco Buttu) in branch 'master': bpo-27200: Fix several doctests (GH-604) https://github.com/python/cpython/commit/e65fcde85abf6617508f2d6b77020e

[issue29621] telnetlib.Telnet.write gives confusing error message when a string is passed in

2017-05-04 Thread Berker Peksag
Berker Peksag added the comment: I agree with David. The documentation of the method starts with "Write a byte string to the socket [...]" and the example at https://docs.python.org/3/library/telnetlib.html#telnet-example is pretty clear. -- nosy: +berker.peksag

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-05-04 Thread Berker Peksag
Berker Peksag added the comment: Neil, can this issue be closed or do you want to backport to 3.6? -- nosy: +berker.peksag ___ Python tracker <http://bugs.python.org/issue30

[issue30190] unittest's assertAlmostEqual improved error message

2017-05-05 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker <http://bugs.python

[issue30119] (ftplib) A remote attacker could possibly attack by containing the newline characters

2017-05-05 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue30119> ___ ___ Python-bugs-list

[issue29920] Document cgitb.text and cgitb.html

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset c07b3a15be5e0a68a73b4c532861ed8de6932bd2 by Berker Peksag (masklinn) in branch 'master': bpo-29920: Document cgitb.text() and cgitb.html() functions (GH-849) https://github.com/python/cpython/commit/c07b3a15be5e0a68a73b4c532861ed

[issue30262] Don't expose sqlite3 Cache and Statement

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: Even if users somehow managed to create Cache and Statement objects themselves, they are basically implementation details of the module and there is no way to use them to mess with the internal state of the module via using the current API (e.g

[issue30192] hashlib module breaks with 64-bit kernel and 32-bit user space

2017-05-05 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> backport needed ___ Python tracker <http://bugs.python.org/issue30192> ___ ___ Python-bugs-list mai

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: I'd suggest marking them with @unittest.expectedFailure as an alternative way to move forward. -- nosy: +berker.peksag stage: -> patch review type: -> behavior ___ Python tracker <http://bugs.python.

[issue30272] distutils.version.LooseVersion's compare raises exception in corner-case

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. This is a duplicate of issue 14894. -- nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> distutils.LooseVersion fails to compare numbe

[issue30262] Don't expose sqlite3 Cache and Statement

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: > Someone somewhere may be using them for something, they've been around for a > long time. Well, you can use the same argument for every issue on the tracker. People can even rely on real bugs that are still open for 10 years, but that doesn&#

[issue30270] Remove sqlite3.Cache display method

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: FWIW, I agree with Brett and David. Did you try to use it? I prefer to fix it even if it's broken at the moment. -- ___ Python tracker <http://bugs.python.org/is

[issue29920] Document cgitb.text and cgitb.html

2017-05-10 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1626 ___ Python tracker <http://bugs.python.org/issue29920> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29920] Document cgitb.text and cgitb.html

2017-05-10 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1627 ___ Python tracker <http://bugs.python.org/issue29920> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-10 Thread Berker Peksag
Berker Peksag added the comment: > Is it to validate that we have bugs? :) More or less, yes. Since the problem is not in the library code and the tests are not completely useless, using @unittest.expectedFailure might be a better short term solution than skipping or removing them (at le

[issue29898] PYTHONLEGACYWINDOWSIOENCODING isn't implemented

2017-05-13 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1669 ___ Python tracker <http://bugs.python.org/issue29898> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29877] compileall hangs when accessing urandom even if number of workers is 1

2017-05-13 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +Claudiu.Popa, brett.cannon ___ Python tracker <http://bugs.python.org/issue29877> ___ ___ Python-bugs-list mailing list Unsub

[issue29895] Distutils blows up with an incorrect pypirc, should be caught

2017-05-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Tommy. I think the configparser exception is pretty descriptive here. You had a .pypirc file like the following: [distutils] index-servers = pypi global [pypi] username:spam password:eggs You passed -r

[issue30358] Profile documentation - include sort argument for runctx

2017-05-13 Thread Berker Peksag
New submission from Berker Peksag: For future reference, this was also reported by Chris Cummins on docs@p.o at https://mail.python.org/pipermail/docs/2017-May/031420.html -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.5, Python

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Berker Peksag added the comment: New changeset 99776296230ddd8429ebad2d07854b8c27ea10ab by Berker Peksag (csabella) in branch 'master': bpo-30358: Document sort argument of profile.runctx() (GH-1566) https://github.com/python/cpython/commit/99776296230ddd8429ebad2d07854b

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> backport needed ___ Python tracker <http://bugs.python.org/issue30358> ___ ___ Python-bugs-list mai

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1672 ___ Python tracker <http://bugs.python.org/issue30358> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1673 ___ Python tracker <http://bugs.python.org/issue30358> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Berker Peksag added the comment: New changeset 61b6e5cf929a80bb44500fb1a212facf66d7f45c by Berker Peksag in branch '3.6': bpo-30358: Document sort argument of profile.runctx() (GH-1566) https://github.com/python/cpython/commit/61b6e5cf929a80bb44500fb1a212fa

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Berker Peksag added the comment: New changeset f3291eeb90da2ddb37efea30dfc9406983b0f681 by Berker Peksag in branch '3.5': bpo-30358: Document sort argument of profile.runctx() (GH-1566) https://github.com/python/cpython/commit/f3291eeb90da2ddb37efea30dfc940

[issue30358] Profile documentation - include sort argument for runctx

2017-05-14 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue30370] IPython 5.3.0 debug mode breakpoint issue

2017-05-15 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, but IPython is not part of the Python standard library. Since downgrading IPython to 4.2.0 solved your problem, I'd suggest to report this to IPython developers. -- nosy: +berker.peksag resolution: -> third par

[issue29898] PYTHONLEGACYWINDOWSIOENCODING isn't implemented

2017-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 87fa8a780e9045a26c735f085c07bba4b2d0be60 by Berker Peksag in branch 'master': bpo-29898: Fix incorrect env variable name (GH-1576) https://github.com/python/cpython/commit/87fa8a780e9045a26c735f085c07bba4b2d0be60 -- nosy: +ber

[issue30323] concurrent.futures.Executor.map() consumes all memory when big generators are used

2017-05-16 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) superseder: -> Make Executor.map work with infinite/large inputs correctly ___ Python tracker <http://bugs.python.org/issu

[issue29898] PYTHONLEGACYWINDOWSIOENCODING isn't implemented

2017-05-16 Thread Berker Peksag
Changes by Berker Peksag : -- stage: test needed -> backport needed ___ Python tracker <http://bugs.python.org/issue29898> ___ ___ Python-bugs-list mai

[issue29898] PYTHONLEGACYWINDOWSIOENCODING isn't implemented

2017-05-16 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1700 ___ Python tracker <http://bugs.python.org/issue29898> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29898] PYTHONLEGACYWINDOWSIOENCODING isn't implemented

2017-05-16 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue29898] PYTHONLEGACYWINDOWSIOENCODING isn't implemented

2017-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0d267041c40a3ab655676b885c0ba35ed9685848 by Berker Peksag in branch '3.6': bpo-29898: Fix incorrect env variable name (GH-1576) https://github.com/python/cpython/commit/0d267041c40a3ab655676b885c0ba3

[issue30376] Curses documentation refers to incorrect type

2017-05-17 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1721 ___ Python tracker <http://bugs.python.org/issue30376> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-05-18 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1749 ___ Python tracker <http://bugs.python.org/issue28647> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26171] heap overflow in zipimporter module

2017-05-21 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: -1794 ___ Python tracker <http://bugs.python.org/issue26171> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30404] Make stdout and stderr truly unbuffered when using -u option

2017-05-24 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1881 ___ Python tracker <http://bugs.python.org/issue30404> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29920] Document cgitb.text and cgitb.html

2017-06-01 Thread Berker Peksag
Berker Peksag added the comment: Please don't close it yet. I agree with Serhiy's comments in msg293394, but I couldn't find time to address his comments yet (plus we still need to backport the documentation update to 3.5 a

[issue30606] Spam

2017-06-08 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: -Love resolution: -> not a bug stage: -> resolved status: open -> closed title: The reply's additional 'Re' is ok -> Spam ___ Python tracker <htt

[issue30606] Spam

2017-06-08 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg295480 ___ Python tracker <http://bugs.python.org/issue30606> ___ ___ Python-bugs-list m

[issue30606] Spam

2017-06-08 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg295479 ___ Python tracker <http://bugs.python.org/issue30606> ___ ___ Python-bugs-list m

[issue36113] Problem With SciPy Computation of sigma

2019-02-25 Thread Berker Peksag
Berker Peksag added the comment: This tracker is for issues with the Python programming language and its standard library. SciPy is not part of the standard library. Please use SciPy project's support channels to get help for your problem. Thank you! -- nosy: +berker.p

[issue35272] sqlite3 get the connected database url

2019-03-31 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue35272> ___ ___

[issue32531] gdb.execute can not put string value.

2019-03-31 Thread Berker Peksag
Change by Berker Peksag : -- hgrepos: -377 ___ Python tracker <https://bugs.python.org/issue32531> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32531] gdb.execute can not put string value.

2019-03-31 Thread Berker Peksag
Berker Peksag added the comment: gdb.execute() is part of GDB's Python API and maintained by GDB maintainers. This tracker is for issues with Python interpreter and its standard library. -- nosy: +berker.peksag resolution: -> not a bug stage: -> resolved status: ope

[issue32538] Multiprocessing Manager on 3D list - no change of the list possible

2019-03-31 Thread Berker Peksag
Berker Peksag added the comment: I'm a bit late to reply, but I think you are using the API wrong. Please try the following snippet: from multiprocessing import Manager manager = Manager() data = manager.list([manager.list([manager

[issue32538] Multiprocessing Manager on 3D list - no change of the list possible

2019-03-31 Thread Berker Peksag
Change by Berker Peksag : -- components: +Library (Lib) -Interpreter Core ___ Python tracker <https://bugs.python.org/issue32538> ___ ___ Python-bugs-list mailin

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-16 Thread Berker Peksag
Berker Peksag added the comment: I can also confirm that reverting 335ab5b66f432ae3713840ed2403a11c368f5406 fixes the problem. -- nosy: +berker.peksag type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue19961] MacOSX: Tkinter build failure when building without command-line tools

2019-04-16 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue19961> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36645] re.sub() library entry does not adequately document surprising change in behavior between versions

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5ebfa840a1c9967da299356733da41b532688988 by Berker Peksag (mollison) in branch 'master': bpo-36645: Fix ambiguous formatting in re.sub() documentation (GH-12879) https://github.com/python/cpython/commit/5ebfa840a1c9967da299356733da41

[issue36645] re.sub() library entry does not adequately document surprising change in behavior between versions

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior versions: +Python 3.8 ___ Python tracker <https://bugs.python

[issue24011] Add error checks to PyInit_signal()

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: Thank you, Joannah. There's no need to backport PR 12765 to maintenance branches, so I'm closing this issue as 'fixed'. -- resolution: -> fixed stage: patch review -> resolved status: open ->

[issue24011] Add error checks to PyInit_signal()

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 9541bd321a94f13dc41163a5d7a1a847816fac84 by Berker Peksag (Joannah Nanjekye) in branch 'master': bpo-24011: Use PyModule_Add{Object,IntMacro} in PyInit__signal() (GH-12765) https://github.com/python/cpyt

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 9b21856b0fcda949de239edc7aa6cf3f2f4f77a3 by Berker Peksag (Xtreak) in branch 'master': bpo-23078: Add support for {class,static}method to mock.create_autospec() (GH-11613) https://github.com/python/cpyt

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2019-04-21 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: -11349 ___ Python tracker <https://bugs.python.org/issue23078> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2019-04-21 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12829 ___ Python tracker <https://bugs.python.org/issue23078> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 15a57a3cadb992bb1752302333ff593e7eab284c by Berker Peksag in branch '3.7': bpo-23078: Add support for {class,static}method to mock.create_autospec() (GH-11613) https://github.com/python/cpython/commit/15a57a3cadb992bb1752302333ff59

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2019-04-21 Thread Berker Peksag
Berker Peksag added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: New changeset d59b662e490d3fae662c5f81fa5248f0445d2158 by Berker Peksag (周家未) in branch 'master': bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903) https://github.com/python/cpython/commit/d59b662e490d3fae662c5f81fa5248f0445d2158 -

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5407aaf18b8d33d0a327991db366457ac6fead2d by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903) https://github.com/python/cpython/commit/5407aaf18b8d33d0a327991db36645

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue28113] Remove Py_CreateSymbolicLinkW

2019-04-22 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12834 ___ Python tracker <https://bugs.python.org/issue28113> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28113] Remove Py_CreateSymbolicLinkW

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: Py_CreateSymbolicLinkW() has been removed in bpo-31512. PR 12907 updates tests to use support.TESTN. -- ___ Python tracker <https://bugs.python.org/issue28

[issue29734] os.stat handle leak

2019-04-22 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12835 ___ Python tracker <https://bugs.python.org/issue29734> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29734] os.stat handle leak

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6ef726af3ec106013c7c4261ddb306854f2b1778 by Berker Peksag in branch 'master': bpo-29734: Cleanup test_getfinalpathname_handles test (GH-12908) https://github.com/python/cpython/commit/6ef726af3ec106013c7c4261ddb306854f2b1778 -

[issue29183] Unintuitive error handling in wsgiref when a crash happens in write() or close()

2019-04-22 Thread Berker Peksag
Change by Berker Peksag : -- keywords: +patch pull_requests: +12840 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue29183> ___ ___ Py

[issue36701] module 'urllib' has no attribute 'request'

2019-04-23 Thread Berker Peksag
Berker Peksag added the comment: What about other packages in the stdlib? For example, you can see the same behavior in the email package: >>> import email >>> email.message.EmailMessage() Traceback (most recent call last): File "", line 1, in Attribute

[issue18099] wsgiref sets Content-Length: 0 on 304 Not Modified

2019-04-25 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12881 ___ Python tracker <https://bugs.python.org/issue18099> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17349] wsgiref.simple_server.demo_app is not PEP-3333 compatible

2019-04-25 Thread Berker Peksag
Berker Peksag added the comment: Closing this as 'not a bug' since examples in both branches are correct. Thank you for the report! -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed ___ Pyt

[issue31525] require sqlite3_prepare_v2

2019-04-26 Thread Berker Peksag
Berker Peksag added the comment: New changeset ad0daf5b374dc43540d4ffcf32ca30e5c5147b90 by Berker Peksag (Charles Pigott) in branch 'master': bpo-31525: Increase minimum sqlite version number check (GH-12923) https://github.com/python/cpython/commit/ad0daf5b374dc43540d4ffcf32ca30

[issue8138] wsgiref.simple_server.SimpleServer claims to be multithreaded

2019-04-27 Thread Berker Peksag
Berker Peksag added the comment: It's not easy to write a test for this, so I might merge PR 12977 without a test. -- versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/i

[issue36735] minimize disk size of cross-compiled python3.6

2019-04-27 Thread Berker Peksag
Berker Peksag added the comment: Replying your second question: I think most Linux distributions strip the Lib/test/ directory, so it should be safe to just remove it. We don't refer to it from the standard library. The helpers documented at https://docs.python.org/3/library/test.htm

[issue22640] Add silent mode for py_compile

2019-04-27 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +brett.cannon ___ Python tracker <https://bugs.python.org/issue22640> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8138] wsgiref.simple_server.SimpleServer claims to be multithreaded

2019-04-27 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12903 ___ Python tracker <https://bugs.python.org/issue8138> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1613500] Write mode option for fileinput module.

2019-04-27 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12909 ___ Python tracker <https://bugs.python.org/issue1613500> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2091] file accepts 'rU+' as a mode

2019-04-27 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +12910 ___ Python tracker <https://bugs.python.org/issue2091> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36025] Breaking change in PyDate_FromTimeStamp API

2019-04-27 Thread Berker Peksag
Berker Peksag added the comment: New changeset 4d8c8c0ad6163c24136d3419eb04f310b31f7e64 by Berker Peksag (Paul Ganssle) in branch 'master': bpo-36025: Fix PyDate_FromTimestamp API (GH-11922) https://github.com/python/cpython/commit/4d8c8c0ad6163c24136d3419eb04f310b31f7e64 -

[issue2091] file accepts 'rU+' as a mode

2019-04-27 Thread Berker Peksag
Berker Peksag added the comment: New changeset 21a9ba1992775b5a833da28bfa0a9f028d1b6761 by Berker Peksag in branch 'master': bpo-2091: Fix typo in exception message (GH-12987) https://github.com/python/cpython/commit/21a9ba1992775b5a833da28bfa0a9f028d1b6761 -- nosy: +ber

[issue36025] Breaking change in PyDate_FromTimeStamp API

2019-04-27 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker <https://bugs.python

[issue2091] file accepts 'rU+' as a mode

2019-04-27 Thread Berker Peksag
Berker Peksag added the comment: New changeset f5972cc0c9a8e3315207e2d67534f330d619af4e by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-2091: Fix typo in exception message (GH-12987) https://github.com/python/cpython/commit/f5972cc0c9a8e3315207e2d67534f3

[issue15388] SAX parse (ExpatParser) leaks file handle when given filename input

2019-04-27 Thread Berker Peksag
Berker Peksag added the comment: I just tested the snippet in msg165779 under Windows with Python 2.7.16. I didn't get WindowsError after I called os.unlink(path) and verified that path is removed from the file system. I think we can close this issue as 'out of date'.

[issue23297] Clarify error when ‘tokenize.detect_encoding’ receives text

2019-04-28 Thread Berker Peksag
Berker Peksag added the comment: The original problem has already been solved by making tokenize.generate_tokens() public in issue 12486. However, the same exception can be raised when tokenize.open() is used with tokenize.tokenize(), because it returns a text stream: https

[issue36747] Tools/scripts/setup.py is missing

2019-04-28 Thread Berker Peksag
Berker Peksag added the comment: IMO, it would be better if we just remove the scriptsinstall target. -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.org/issue36

[issue36730] Change outdated references to macOS

2019-04-28 Thread Berker Peksag
Berker Peksag added the comment: Thank you for the report! This is already reported by Ned at https://github.com/python/pythondotorg/issues/1254 Closing this as 'third party'. -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status

[issue1613500] Write mode option for fileinput module.

2019-04-29 Thread Berker Peksag
Berker Peksag added the comment: New changeset be6dbfb43b89989ccc83fbc4c5234f50f44c47ad by Berker Peksag in branch 'master': bpo-1613500: Don't hardcode output file mode in fileinput.FileInput (GH-12986) https://github.com/python/cpython/commit/be6dbfb43b89989ccc83fbc4c

[issue1613500] Write mode option for fileinput module.

2019-04-29 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/

[issue26493] Bad formatting in WinError 193 when using subprocess.check_call

2019-04-29 Thread Berker Peksag
Berker Peksag added the comment: FYI, in msg261315, Eryk has mentioned about possible improvement of the exception message on POSIX. The filename has been added to the exception message in 8621bb5d93239316f97281826461b85072ff6db7: >>> import subprocess, os >>> os.access(

[issue36345] Deprecate Tools/scripts/serve.py in favour of python -m http.server -d

2019-04-30 Thread Berker Peksag
Berker Peksag added the comment: Please revert 360e1e4c519cfc139de707bcdd1e6c871eec79ee. It's not a good example to put into the documentation. It uses different naming convention. It would only confuse users relatively new to the wsgiref module and WSGI protocol. FileWrapper was sup

[issue36329] use the right python "make -C Doc/ serve"

2019-04-30 Thread Berker Peksag
Berker Peksag added the comment: Personally, I'd prefer removing the 'serve' target completely. make -C Doc htmlview should already cover most of its use cases. There is no deprecation period needed and there is already a replacement (and IMO better) for it. -- nosy:

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