[issue24464] "sqlite3_enable_shared_cache" deprecation warning when compiling with macOS system SQLite3

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset ddb5e11683c8db9d2095f2f9406701443c4dc9b3 by Erlend Egeberg Aasland in branch 'master': bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008) https://github.com/python/cpython/commit/ddb5e11683c8db9d2095f2f9406701

[issue24464] "sqlite3_enable_shared_cache" deprecation warning when compiling with macOS system SQLite3

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: It's now deprecated in 3.10. -- components: +Extension Modules -Build, macOS resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement versions: +Python

[issue24464] "sqlite3_enable_shared_cache" deprecation warning when compiling with macOS system SQLite3

2021-01-05 Thread Berker Peksag
Change by Berker Peksag : -- components: +macOS ___ Python tracker <https://bugs.python.org/issue24464> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40959] Remove unused and unneeded function declaration from sqlite3 header files

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset 203b2493ae6fd7c1f039f3f906f087d67d9100d5 by Erlend Egeberg Aasland in branch 'master': bpo-40959: Remove unused declarations from sqlite3 headers (GH-20828) https://github.com/python/cpython/commit/203b2493ae6fd7c1f039f3f906f087

[issue40959] Remove unused and unneeded function declaration from sqlite3 header files

2021-01-05 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

[issue14014] codecs.StreamWriter.reset contract not fulfilled

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset 1a9f51ed12feb4d95ad6d0faf610a030c05b9f5e by Berker Peksag in branch 'master': bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716) https://github.com/python/cpython/commit/1a9f51ed12feb4d95ad6d0faf610a030c05b9f5e -

[issue14014] codecs.StreamWriter.reset contract not fulfilled

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset a3ca6747f50efa2fe59caf516a26b0fd1912b8e8 by Miss Islington (bot) in branch '3.9': bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716) https://github.com/python/cpython/commit/a3ca6747f50efa2fe59caf516a26b0

[issue14014] codecs.StreamWriter.reset contract not fulfilled

2021-01-05 Thread Berker Peksag
Change by Berker Peksag : -- assignee: lemburg -> components: +Documentation nosy: +vstinner resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10 -Python 3.8 ___ Python tra

[issue14014] codecs.StreamWriter.reset contract not fulfilled

2021-01-05 Thread Berker Peksag
Change by Berker Peksag : -- assignee: -> docs@python components: -Unicode nosy: +docs@python -vstinner ___ Python tracker <https://bugs.python.org/issu

[issue38413] Remove or change "Multithreading" section

2021-01-06 Thread Berker Peksag
Berker Peksag added the comment: New changeset 49c150f1f16398a4e77e051244f27adc5ac7b47b by Vladimir in branch '3.9': bpo-38413: Remove outdated section about multithreading in sqlite3 (GH-23159) https://github.com/python/cpython/commit/49c150f1f16398a4e77e051244f27a

[issue38413] Remove or change "Multithreading" section

2021-01-06 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed type: -> behavior ___ Python tracker <https://bugs.python.org/issue38413> ___ ___ Python-bugs-list

[issue40823] Don't use obsolete unittest.makeSuite() in sqlite3 tests

2021-01-06 Thread Berker Peksag
Berker Peksag added the comment: New changeset 849e339a925fb398be31e566c31b99ce6cdb6006 by Erlend Egeberg Aasland in branch 'master': bpo-40823: Use loadTestsFromTestCase() iso. makeSuite() in sqlite3 tests (GH-20538) https://github.com/python/cpyt

[issue40823] Don't use obsolete unittest.makeSuite() in sqlite3 tests

2021-01-06 Thread Berker Peksag
Berker Peksag added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker <https://bugs.python

[issue42847] Normalise file encodings in Lib/sqlite3/test/

2021-01-06 Thread Berker Peksag
Berker Peksag added the comment: New changeset deab1e54ff1695cdbe87f8db3d2c382d8e78330f by Erlend Egeberg Aasland in branch 'master': bpo-42847: Normalise Lib/sqlite3/test/* file encodings (GH-24147) https://github.com/python/cpython/commit/deab1e54ff1695cdbe87f8db3d2c38

[issue42847] Normalise file encodings in Lib/sqlite3/test/

2021-01-06 Thread Berker Peksag
Berker Peksag added the comment: iso-8859-1 is still commonly used in some parts of Nordic countries, but I don't see a reason not to change it here :) Thank you, Erlend! -- components: +Tests -Library (Lib) type: -> enhancement __

[issue24464] "sqlite3_enable_shared_cache" deprecation warning when compiling with macOS system SQLite3

2021-01-09 Thread Berker Peksag
Berker Peksag added the comment: New changeset d16f6176abdecbb7ab231dc78beccfaa095beff6 by Erlend Egeberg Aasland in branch 'master': bpo-24464: Fix sqlite3.enable_shared_cache() deprecation wrapper (GH-24170) https://github.com/python/cpython/commit/d16f6176abdecbb7ab231dc78beccf

[issue42862] Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module

2021-01-12 Thread Berker Peksag
Berker Peksag added the comment: I don't see any reason to merge GH-24135 if we are going to remove cache.[ch] in this issue. I was -0 before but since Raymond gave his +1, you can count me as +1 too. -- ___ Python tracker &

[issue42862] Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module

2021-01-12 Thread Berker Peksag
Berker Peksag added the comment: We can always reopen GH-24135 and merge it even if we revert this one for some reason :) -- ___ Python tracker <https://bugs.python.org/issue42

[issue40956] Use Argument Clinic in sqlite3

2021-01-13 Thread Berker Peksag
Berker Peksag added the comment: New changeset a330365ca5ae836075f306334ab648bf23471481 by Erlend Egeberg Aasland in branch 'master': bpo-40956: Fix sqlite3.Cursor.fetchmany() default value (GH-24214) https://github.com/python/cpython/commit/a330365ca5ae836075f306334ab648

[issue42916] Support for DICOM image file format in imghdr module

2021-01-24 Thread Berker Peksag
Berker Peksag added the comment: Copying my comment from GitHub: > I think DICOM is too specific to be added to the stdlib. I'd prefer > improving documentation of imghdr.tests to make adding custom file > types clearer. -- nosy:

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: New changeset e60344364245a23a7a1b25d5ebce6833652a656c by L in branch 'master': bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364) https://github.com/python/cpython/commit/e60344364245a23a7a1b25d5ebce68

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: New changeset 926ca51be4b9b80c41a647bbc2fb9c40ff108ff0 by Miss Islington (bot) in branch '3.9': bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364) https://github.com/python/cpython/commit/926ca51be4b9b80c41a647bbc2fb9c

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: New changeset de76ce540ed013a31d4c80bca2587a2dd7c23652 by Miss Islington (bot) in branch '3.8': bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364) https://github.com/python/cpython/commit/de76ce540ed013a31d4c80bca2587a

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: Yes, version attributes should be deprecated and properly documented in Doc/whatsnew/3.10.rst before removal. I remember we broke Mailman when we removed a dunder attribute from the mail package. Thank you for the PR! -- resolution: -> fixed st

[issue43094] sqlite3 signature discrepancies between documentation and implementation

2021-02-10 Thread Berker Peksag
Berker Peksag added the comment: The problem is that sqlite3 isn't the only module where there are discrepancies between documentation and implementation. If we are going to change public sqlite3 APIs in to be positional-only, I'd prefer writing a PEP and fix all modules once a

[issue40956] Use Argument Clinic in sqlite3

2021-02-10 Thread Berker Peksag
Berker Peksag added the comment: New changeset ea46579067fd2d4e164d6605719ffec690c4d621 by Erlend Egeberg Aasland in branch 'master': bpo-40956: Fix segfault when Connection.backup is called without target (GH-24503) https://github.com/python/cpyt

[issue28179] Segfault in test_recursionlimit_fatalerror

2021-02-17 Thread Berker Peksag
Berker Peksag added the comment: Yes, this indeed seems to be fixed by issue 42500 and can be closed now. Nice detective work, thank you! -- stage: needs patch -> resolved status: pending -> closed ___ Python tracker <https://bugs.p

[issue43249] sqlite3_column_bytes() should be called after sqlite3_column_blob()

2021-02-18 Thread Berker Peksag
Berker Peksag added the comment: Good catch! Sounds good to me but I'd say designing APIs relying on call order is bad too :) -- ___ Python tracker <https://bugs.python.org/is

[issue43249] sqlite3_column_bytes() should be called after sqlite3_column_blob()

2021-02-18 Thread Berker Peksag
Berker Peksag added the comment: New changeset 47feb1feb28631b6647699b7633109aa85340966 by Erlend Egeberg Aasland in branch 'master': bpo-43249: sqlite3_column_bytes() must follow sqlite_column_blob() (GH-24562) https://github.com/python/cpyt

[issue43249] sqlite3_column_bytes() should be called after sqlite3_column_blob()

2021-02-18 Thread Berker Peksag
Berker Peksag added the comment: New changeset cc96231f0a59cc7393943064800ecb6c18892662 by Erlend Egeberg Aasland in branch 'master': bpo-43249: Improve scoping in _pysqlite_fetch_one_row() (GH-24565) https://github.com/python/cpython/commit/cc96231f0a59cc7393943064800ecb

[issue43249] sqlite3_column_bytes() should be called after sqlite3_column_blob()

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

[issue43258] Prevent needless allocation of sqlite3 aggregate function context

2021-02-19 Thread Berker Peksag
Berker Peksag added the comment: New changeset 979b23cbe44071b056ff524c0aa20e5d9794b5b0 by Erlend Egeberg Aasland in branch 'master': bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569) https://github.com/python

[issue43258] Prevent needless allocation of sqlite3 aggregate function context

2021-02-19 Thread Berker Peksag
Berker Peksag added the comment: New changeset 2bb0bf4dd8c0bd4d23eb04afce1a58e07982 by Erlend Egeberg Aasland in branch 'master': bpo-43258: Make sqlite3 callback functions static (GH-24574) https://github.com/python/cpython/commit/2bb0bf4dd8c0bd4d23eb04afce1a5e

[issue43258] Prevent needless allocation of sqlite3 aggregate function context

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

[issue43265] Improve sqlite3 backup error handling

2021-02-19 Thread Berker Peksag
Berker Peksag added the comment: I'm not sure about 1) because if target == source it means a user error. OperationalError is usually used for non-user errors. 3) sounds good to me if that part is already covered by tests and they p

[issue43265] [sqlite3] Improve backup error handling

2021-02-20 Thread Berker Peksag
Berker Peksag added the comment: I'd even consider a cryptic error message a minor usability bug and backport it to at least 3.10. -- ___ Python tracker <https://bugs.python.org/is

[issue43265] [sqlite3] Improve backup error handling

2021-02-20 Thread Berker Peksag
Berker Peksag added the comment: > 3.9, I presume? Yes, I was going too fast :) -- ___ Python tracker <https://bugs.python.org/issue43265> ___ ___ Python-

[issue43265] [sqlite3] Improve backup error handling

2021-02-20 Thread Berker Peksag
Change by Berker Peksag : Removed file: https://bugs.python.org/file49823/DOC-20200420-WA ___ Python tracker <https://bugs.python.org/issue43265> ___ ___ Python-bug

[issue43269] [sqlite3] Clean up function scoping

2021-02-20 Thread Berker Peksag
Berker Peksag added the comment: New changeset bf838a6e7eec2063a17c7c33dfa94afeef116f36 by Erlend Egeberg Aasland in branch 'master': bpo-43269: Clean up sqlite3 file scope (GH-24578) https://github.com/python/cpython/commit/bf838a6e7eec2063a17c7c33dfa94a

[issue43269] [sqlite3] Clean up function scoping

2021-02-21 Thread Berker Peksag
Berker Peksag added the comment: New changeset 38b6c2acd4bba666bd64779c42b9d91cbee19274 by Erlend Egeberg Aasland in branch 'master': bpo-43269: Remove redundant extern keywords (GH-24605) https://github.com/python/cpython/commit/38b6c2acd4bba666bd64779c42b9d9

[issue43269] [sqlite3] Clean up function scoping

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

[issue43290] [sqlite3] remove legacy code from pysqlite_step

2021-02-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset 91ea37c84af2dd5ea92802a4c2adad47861ac067 by Erlend Egeberg Aasland in branch 'master': bpo-43290: Remove workaround from pysqlite_step() (GH-24638) https://github.com/python/cpython/commit/91ea37c84af2dd5ea92802a4c2adad

[issue43290] [sqlite3] remove legacy code from pysqlite_step

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

[issue43314] [sqlite3] remove pre SQLite 3.7.7 support code

2021-02-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset 3150754f91fc1d15e3888e22c065672838a9c069 by Erlend Egeberg Aasland in branch 'master': bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637) https://github.com/python/cpython/commit/3150754f91fc1d15e3888e22c06567

[issue43314] [sqlite3] remove pre SQLite 3.7.7 support code

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

[issue43294] [sqlite3] unused variables in Connection begin, commit, and rollback

2021-02-26 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5e48e836883ac577acd69c7b9bdfe5c439cef47f by Erlend Egeberg Aasland in branch 'master': bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658) https://github.com/python/cpython/commit/5e48e836883ac577acd69c7b9bdfe5

[issue43294] [sqlite3] unused variables in Connection begin, commit, and rollback

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

[issue43251] [sqlite3] sqlite3_column_name() failures should raise MemoryError

2021-02-28 Thread Berker Peksag
Berker Peksag added the comment: New changeset 2183d06bc8a481098d62a4ebed8d6982b3d1602a by Erlend Egeberg Aasland in branch 'master': bpo-43251: sqlite3_column_name() failures now raise MemoryError (GH-24609) https://github.com/python/cpython/commit/2183d06bc8a481098d62a4ebed8d69

[issue43251] [sqlite3] sqlite3_column_name() failures should raise MemoryError

2021-02-28 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker <https://bugs.python

[issue43368] Empty bytestrings are not longer returned on SQLite.

2021-03-03 Thread Berker Peksag
Berker Peksag added the comment: New changeset 3b4b2cf418707c79f96689e401e3c703c0fdd4d2 by Mariusz Felisiak in branch 'master': bpo-43368: Fix fetching empty bytes in sqlite3 (GH-24706) https://github.com/python/cpython/commit/3b4b2cf418707c79f96689e401e3c7

[issue43368] Empty bytestrings are not longer returned on SQLite.

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

[issue43369] [sqlite3] Handle out-of-memory errors in sqlite3_column_*()

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: New changeset e161ec5dd7ba9355eb06757b9304019ac53cdf69 by Erlend Egeberg Aasland in branch 'master': bpo-43369: sqlite3_column_{text,blob} failures now raise MemoryError (GH-24723) https://github.com/python/cpyt

[issue43369] [sqlite3] Handle out-of-memory errors in sqlite3_column_*()

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

[issue43396] Non-existent method sqlite3.Connection.fetchone() used in docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: Could you please post the full snippet? c is already set to a cursor at https://github.com/python/cpython/blame/e161ec5dd7ba9355eb06757b9304019ac53cdf69/Doc/library/sqlite3.rst#L56: c = conn.cursor() And the following example works fine: >>&g

[issue43396] Non-existent method sqlite3.Connection.fetchone() used in docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: https://github.com/python/cpython/blame/e161ec5dd7ba9355eb06757b9304019ac53cdf69/Doc/library/sqlite3.rst#L74-L76 is not a standalone snippet. It uses the cursor object created at https://github.com/python/cpython/blame/e161ec5dd7ba9355eb06757b9304019ac53cdf69

[issue43396] Non-existent method sqlite3.Connection.fetchone() used in docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: No problem and thank you for taking time to report! I'd be happy to merge a PR that renames c to cur in the documentation (I counted four instances.) We can then reopen and retarget this isssue. -- resolution: -> n

[issue43396] Use more descriptive variable names in sqlite3 docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: LGTM! -- resolution: not a bug -> stage: resolved -> needs patch status: closed -> open title: Non-existent method sqlite3.Connection.fetchone() used in docs -> Use more descriptive variable names in sqlite3 docs type: -> enhan

[issue43396] Use more descriptive variable names in sqlite3 docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: New changeset 40d1b831ecd1b5b6a4fce9a908a6e61b50b360a0 by Erlend Egeberg Aasland in branch 'master': bpo-43396: Normalise naming in sqlite3 doc examples (GH-24746) https://github.com/python/cpython/commit/40d1b831ecd1b5b6a4fce9a908a6e6

[issue43396] Use more descriptive variable names in sqlite3 docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: New changeset 374ee449331bc95d18c37f5032aaea1448462e58 by Miss Islington (bot) in branch '3.9': bpo-43396: Normalise naming in sqlite3 doc examples (GH-24746) https://github.com/python/cpython/commit/374ee449331bc95d18c37f5032aaea

[issue43396] Use more descriptive variable names in sqlite3 docs

2021-03-04 Thread Berker Peksag
Berker Peksag added the comment: New changeset 213c155a460b8dd9e43901e4d61aa088cbac4221 by Miss Islington (bot) in branch '3.8': bpo-43396: Normalise naming in sqlite3 doc examples (GH-24746) https://github.com/python/cpython/commit/213c155a460b8dd9e43901e4d61aa0

[issue43396] Use more descriptive variable names in sqlite3 docs

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

[issue43446] Wrong character in footnote

2021-03-09 Thread Berker Peksag
Berker Peksag added the comment: New changeset 62a03cd490f81c0fb01eaceb31aa8a4c7800ed0e by Kamil Turek in branch 'master': bpo-43446: Fix markup in sqlite3 footnote (GH-24806) https://github.com/python/cpython/commit/62a03cd490f81c0fb01eaceb31aa8a4c7800ed0e -- nosy: +ber

[issue43446] Wrong character in footnote

2021-03-09 Thread Berker Peksag
Berker Peksag added the comment: New changeset e89380765df8f0f02c90ad417e164d1597bd0b05 by Miss Islington (bot) in branch '3.8': bpo-43446: Fix markup in sqlite3 footnote (GH-24806) https://github.com/python/cpython/commit/e89380765df8f0f02c90ad417e164d

[issue43446] Wrong character in footnote

2021-03-09 Thread Berker Peksag
Berker Peksag added the comment: New changeset da602560a4816c88dcf4d75b3e4eea56c8d3bbc2 by Miss Islington (bot) in branch '3.9': bpo-43446: Fix markup in sqlite3 footnote (GH-24806) https://github.com/python/cpython/commit/da602560a4816c88dcf4d75b3e4eea

[issue43446] Wrong character in footnote

2021-03-09 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.or

[issue40810] sqlite3 test CheckTraceCallbackContent fails for sqlite v3.7.3 through 3.7.14.1

2020-05-28 Thread Berker Peksag
Berker Peksag added the comment: +1 for dropping support for < 3.7.15 in master. We should fix or skip tests in maintenance branches. -- stage: -> needs patch type: -> enhancement ___ Python tracker <https://bugs.python.or

[issue40784] test_sqlite: CheckFuncDeterministic() fails with SQLite 3.32

2020-05-28 Thread Berker Peksag
Berker Peksag added the comment: New changeset c610d970f5373b143bf5f5900d4645e6a90fb460 by Erlend Egeberg Aasland in branch 'master': bpo-40784: Fix sqlite3 deterministic test (GH-20448) https://github.com/python/cpython/commit/c610d970f5373b143bf5f5900d4645e6a90fb460 -

[issue40784] test_sqlite: CheckFuncDeterministic() fails with SQLite 3.32

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

[issue31844] HTMLParser: undocumented not implemented method

2020-07-15 Thread Berker Peksag
Berker Peksag added the comment: New changeset e34bbfd61f405eef89e8aa50672b0b25022de320 by Berker Peksag in branch 'master': bpo-31844: Remove _markupbase.ParserBase.error() (GH-8562) https://github.com/python/cpython/commit/e34bbfd61f405eef89e8aa50672b0b

[issue31844] HTMLParser: undocumented not implemented method

2020-07-15 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +20644 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/21504 ___ Python tracker <https://bugs.python.org/issu

[issue31844] HTMLParser: undocumented not implemented method

2020-07-15 Thread Berker Peksag
Berker Peksag added the comment: New changeset d4d127f1c6e586036104e4101f5af239fe7dc156 by Berker Peksag in branch 'master': bpo-31844: Move whatsnew note to 3.10.rst (GH-21504) https://github.com/python/cpython/commit/d4d127f1c6e586036104e4101f5af2

[issue31844] HTMLParser: undocumented not implemented method

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

[issue40456] Complete adding silent mode for py_compile

2020-07-25 Thread Berker Peksag
Berker Peksag added the comment: This is a duplicate of issue 38731. The inline patch in msg373791 is incorrect. I'll fix the error in maintenance releases by partially reverting commit 2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1. -- nosy: +berker.peksag resolution: -> duplica

[issue38731] bad input crashes py_compile library

2020-07-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset daff39070e7ea71b0ba49d9150ac7a210a125682 by Gregory Schevchenko in branch 'master': bpo-38731: Add --quiet option to py_compile CLI (GH-17134) https://github.com/python/cpython/commit/daff39070e7ea71b0ba49d9150ac7a

[issue38731] bad input crashes py_compile library

2020-07-25 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +20759 pull_request: https://github.com/python/cpython/pull/21617 ___ Python tracker <https://bugs.python.org/issue38

[issue38731] bad input crashes py_compile library

2020-07-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset 2024d7aca100c3faa9c6730aba3de5f0528750be by Berker Peksag in branch '3.9': bpo-38731: Fix NameError in command-line interface of py_compile (GH-21617) https://github.com/python/cpython/commit/2024d7aca100c3faa9c6730aba3de5

[issue38731] bad input crashes py_compile library

2020-07-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset 949cf93f8ee27c37650483458f0aa3e295011ef6 by Miss Islington (bot) in branch '3.8': bpo-38731: Fix NameError in command-line interface of py_compile (GH-21617) https://github.com/python/cpython/commit/949cf93f8ee27c37650483458f0aa3

[issue38731] bad input crashes py_compile library

2020-07-25 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.9 ___ Python tracker <https://bugs.python.or

[issue13588] Change name of internal closure functions in importlib

2012-01-15 Thread Berker Peksag
Berker Peksag added the comment: Hi Brett, did you have a chance to review the patch I submitted? -- ___ Python tracker <http://bugs.python.org/issue13

[issue13641] decoding functions in the base64 module could accept unicode strings

2012-01-16 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file24252/issue13641_v3_with_tests.diff ___ Python tracker <http://bugs.python.org/issue13641> ___ ___ Pytho

[issue13165] Integrate stringbench in the Tools directory

2012-01-16 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berkerpeksag ___ Python tracker <http://bugs.python.org/issue13165> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11695] Improve argparse usage/help customization

2012-01-16 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berkerpeksag ___ Python tracker <http://bugs.python.org/issue11695> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12702] shutil.copytree() should use os.lutimes() to copy the metadata of symlinks

2012-02-19 Thread Berker Peksag
Berker Peksag added the comment: I think this issue fixed in changeset 74194:cf57ef65bcd0. See: http://hg.python.org/cpython/rev/cf57ef65bcd0#l2.75 -- nosy: +berkerpeksag ___ Python tracker <http://bugs.python.org/issue12

[issue11698] Improve repr for structseq objects to show named, but unindexed fields

2012-02-19 Thread Berker Peksag
Berker Peksag added the comment: I'd like to work on this issue. I found the Objects/structseq.c [1] file. Am I on the right path? Thanks! [1] http://hg.python.org/cpython/file/5b4b70bd2b6f/Objects/structseq.c#l157 -- nosy: +berker.p

[issue5626] misleading comment in socket.gethostname() documentation

2012-03-01 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +patch Added file: http://bugs.python.org/file24698/issue5626_v1.diff ___ Python tracker <http://bugs.python.org/issue5

[issue5626] misleading comment in socket.gethostname() documentation

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

[issue14312] Convert PEP 7 to reStructuredText for readability purposes

2012-03-14 Thread Berker Peksag
Changes by Berker Peksag : -- assignee: docs@python components: Documentation files: pep-0007_v1.diff keywords: patch nosy: berker.peksag, docs@python priority: normal severity: normal status: open title: Convert PEP 7 to reStructuredText for readability purposes type: enhancement Added

[issue14316] Broken link in grammar.html

2012-03-15 Thread Berker Peksag
New submission from Berker Peksag : In the rationale section: http://docs.python.org/devguide/grammar.html#rationale This link is not working: http://docs.python.org/devguide/HowtoChangePython%27sGrammar -- components: Devguide messages: 155888 nosy: berker.peksag, ezio.melotti

[issue14316] Broken link in grammar.rst

2012-03-15 Thread Berker Peksag
Changes by Berker Peksag : -- title: Broken link in grammar.html -> Broken link in grammar.rst ___ Python tracker <http://bugs.python.org/issue14316> ___ ___ Py

[issue14481] trivial formatting error in subprocess docs

2012-04-03 Thread Berker Peksag
Berker Peksag added the comment: Attached a patch. -- keywords: +patch nosy: +berker.peksag Added file: http://bugs.python.org/file25106/issue14481.diff ___ Python tracker <http://bugs.python.org/issue14

[issue14503] docs:Code not highlighted

2012-04-05 Thread Berker Peksag
Berker Peksag added the comment: I can reproduce. See screenshot.png. -- nosy: +berker.peksag Added file: http://bugs.python.org/file25135/screenshot.png ___ Python tracker <http://bugs.python.org/issue14

[issue13959] Re-implement parts of imp in pure Python

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

[issue36567] DOC: manpage directive doesn't create hyperlink

2019-05-18 Thread Berker Peksag
Berker Peksag added the comment: New changeset eab99650799699f766c2660f4cfa8ff3f9e8457f by Berker Peksag (Batuhan Taşkaya) in branch 'master': bpo-36567: Use manpages_url to create links for man pages (GH-13339) https://github.com/python/cpython/commit/eab99650799699f766c2660f4cfa8f

[issue36962] Cant sort ModuleInfo instances

2019-05-19 Thread Berker Peksag
Berker Peksag added the comment: I agree with Eric that this use case can be easily covered by using sorted(..., key=...). I suggest closing this as 'rejected'. -- nosy: +berker.peksag ___ Python tracker <https://bugs.python.o

[issue36948] NameError in urllib.request.URLopener.retrieve

2019-05-19 Thread Berker Peksag
Berker Peksag added the comment: New changeset c661b30f89ffe7a7995538d3b1649469b184bee4 by Berker Peksag (Xtreak) in branch 'master': bpo-36948: Fix NameError in urllib.request.URLopener.retrieve (GH-13389) https://github.com/python/cpython/commit/c661b30f89ffe7a7995538d3b16494

[issue36567] DOC: manpage directive doesn't create hyperlink

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

[issue36948] NameError in urllib.request.URLopener.retrieve

2019-05-19 Thread Berker Peksag
Berker Peksag added the comment: Thanks! Apparently, backport to 3.7 isn't needed, so I just closed PR 13422. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.pyth

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

2019-05-19 Thread Berker Peksag
Berker Peksag added the comment: New changeset 7c59362a15dfce538512ff1fce4e07d33a925cfb by Berker Peksag in branch 'master': bpo-29183: Fix double exceptions in wsgiref.handlers.BaseHandler (GH-12914) https://github.com/python/cpython/commit/7c59362a15dfce538512ff1fce4e07

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

2019-05-19 Thread Berker Peksag
Berker Peksag added the comment: New changeset f393e8eb463d60ce559982613429568c518ab8d9 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-29183: Fix double exceptions in wsgiref.handlers.BaseHandler (GH-12914) https://github.com/python/cpyt

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

2019-05-19 Thread Berker Peksag
Change by Berker Peksag : -- components: +Library (Lib) resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___ Python tracke

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