Change by Erlend E. Aasland :
--
Removed message: https://bugs.python.org/msg393339
___
Python tracker
<https://bugs.python.org/issue44092>
___
___
Python-bug
Erlend E. Aasland added the comment:
The effect of PR 26026 is that InterfaceError is no longer raised for fetch
across rollback; instead it is up to SQLite how to handle this:
- for some cases, SQLITE_ABORT or SQLITE_ABORT_ROLLBACK may be returned, which
will result in an OperationalError
Erlend E. Aasland added the comment:
I've crafted a number of rollback tests, but it occurred to me that they are
simply just testing SQLite behaviour; not sqlite3 behaviour. I had to adjust
the tests according to which version of SQLite was used (for example 3.8.7.2
introduce
Erlend E. Aasland added the comment:
I'm unable to reproduce this on 3.8 though 3.11a0. It's unclear to me if this
even was an issue. (I have no ancient Python versions to test with.)
Closing as out-of-date in a day or two, unless someone disagrees.
--
nosy: +erlendaasl
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue9924>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
Regarding the maximum length of an SQL string, quoting from
https://sqlite.org/limits.html:
"The current implementation will only support a string or BLOB length up to
2^31-1 or 2147483647. And some built-in functions such as hex() might fail well
b
Erlend E. Aasland added the comment:
Regarding the maximum length of an SQL string, quoting from
https://sqlite.org/limits.html:
"The current implementation will only support a string or BLOB length up to
2^31-1 or 2147483647. And some built-in functions such as hex() might fail well
b
Change by Erlend E. Aasland :
--
Removed message: https://bugs.python.org/msg393977
___
Python tracker
<https://bugs.python.org/issue44165>
___
___
Python-bug
Erlend E. Aasland added the comment:
SQLITE_TOOBIG is currently mapped to sqlite3.DataError. In order to keep the
current behaviour, DataError must be raised.
--
___
Python tracker
<https://bugs.python.org/issue44
Erlend E. Aasland added the comment:
See also bpo-42376
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44099>
___
___
Python-bug
Erlend E. Aasland added the comment:
How will you differentiate which types should be added to the module dict and
which not to add. How will you map the instantiated type objects to the
respective module state members?
--
___
Python tracker
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44184>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
FWIW, I'm also unable to reproduce on macOS (so far).
--
___
Python tracker
<https://bugs.python.org/issue44184>
___
___
Erlend E. Aasland added the comment:
> Crash related to AST in interpreter_clear() remains me bpo-41796.
Well remembered, Victor!
Bisecting using Pablo's reproducer:
fd957c124c1d9c5eaf61f7af8cf266bafcb1 is the first bad commit
commit fd957c124c1d9c5eaf61f7af8cf266bafcb
Erlend E. Aasland added the comment:
Using Pablo's (or Victor's) reproducer from bpo-44184, I'm getting a crash,
apparently because _PyThreadState_PushLocals() is called after
PyThreadState_Clear().
In Python/pystate.c interpreter_clear(), we're first calling
PyThrea
Erlend E. Aasland added the comment:
cc. Pablo, Victor
--
nosy: +pablogsal, vstinner
___
Python tracker
<https://bugs.python.org/issue44032>
___
___
Python-bug
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44203>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
FYI, the pending release log of the upcoming SQLite 3.36.0 now mentions that
these API's are enabled by default:
https://sqlite.org/releaselog/3_36_0.html
--
___
Python tracker
<https://bugs.py
Change by Erlend E. Aasland :
--
nosy: +berker.peksag
versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue30
Change by Erlend E. Aasland :
--
keywords: +patch
nosy: +erlendaasland
nosy_count: 9.0 -> 10.0
pull_requests: +24908
pull_request: https://github.com/python/cpython/pull/26309
___
Python tracker
<https://bugs.python.org/issu
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44112>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Erlend E. Aasland :
--
status: open -> pending
___
Python tracker
<https://bugs.python.org/issue30757>
___
___
Python-bugs-list mailing list
Un
Erlend E. Aasland added the comment:
Closing as not-a-bug. Feel free to reopen if we've missed anything.
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.pyth
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue40068>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
> The smiley emoji 😀 is U+1F600 which is outside of the Unicode Basic
> Multilingual Plane (BMP).
Correct, and this is documented:
https://docs.python.org/3/library/idle.html#user-output-in-shell
Suggesting to close this as not-a-bug.
-
Change by Erlend E. Aasland :
--
status: pending -> open
title: [IDLE] Weird behaviour in IDLE while dealing with non-ASCII characters
-> [IDLE] Weird behaviour in IDLE when printing non-BMP unicode characters
___
Python tracker
Change by Erlend E. Aasland :
--
status: open -> pending
___
Python tracker
<https://bugs.python.org/issue44217>
___
___
Python-bugs-list mailing list
Un
Erlend E. Aasland added the comment:
> What about closing this as third party? (Tcl/Tk is a dependency but still
> it's a third party right?)
Sure. I'll leave that for Terry or any of the other IDLE devs. We can adjust
the resolution after close if needed.
> Also what&
Erlend E. Aasland added the comment:
STM like the most reasonable thing to do is to enhance the docs, as Terry
suggested.
--
___
Python tracker
<https://bugs.python.org/issue44
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44206>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44207>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
Ronald, do you still wish to apply this? It should be easy to rebase this patch
onto main.
If not, we should perhaps close this issue.
--
nosy: +erlendaasland
versions: +Python 3.11 -Python 3.4
___
Python
Erlend E. Aasland added the comment:
The affected branch is exercised by the following tests:
- test_aggr_check_param_blob
- test_aggr_check_param_float
- test_aggr_check_param_int
- test_aggr_check_param_none
- test_aggr_check_param_str
- test_aggr_check_params_int
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue40092>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
> I'm not fully sure that the both use cases can be combined.
I'm fully sure they can :) Did I miss anything in msg393942? AFAICS, there is
no need for the weak ref list anymore.
--
___
Python tr
New submission from Erlend E. Aasland :
See https://github.com/python/cpython/pull/26104/checks?check_run_id=2662511684
==
ERROR: test_get_server_certificate (test.test_ssl.SimpleBackgroundTests
Change by Erlend E. Aasland :
--
title: test_get_server_certificate fails on macOS ->
test_get_server_certificate fails intermittently on macOS
___
Python tracker
<https://bugs.python.org/issu
Change by Erlend E. Aasland :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue44229>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Erlend E. Aasland :
--
pull_requests: +24941
pull_request: https://github.com/python/cpython/pull/26351
___
Python tracker
<https://bugs.python.org/issue43
New submission from Erlend E. Aasland :
I propose to remove the undocumented function _PyTuple_FromArray from the
public API, by using the extern keyword iso. PyAPI_FUNC. _PyTuple_FromArray was
introduced by bpo-36030 in GH-11954 during the Python 3.8 alpha phase. In the
stdlib, it is used
New submission from Erlend E. Aasland :
I propose to remove the undocumented function _PyTuple_FromArray from the
public API, by using the extern keyword iso. PyAPI_FUNC. _PyTuple_FromArray was
introduced by bpo-36030 in GH-11954 during the Python 3.8 alpha phase. In the
stdlib, it is used
Change by Erlend E. Aasland :
--
Removed message: https://bugs.python.org/msg394328
___
Python tracker
<https://bugs.python.org/issue44231>
___
___
Python-bug
Change by Erlend E. Aasland :
--
keywords: +patch
pull_requests: +24942
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/26352
___
Python tracker
<https://bugs.python.org/issu
Erlend E. Aasland added the comment:
I’ll see if I can provoke it on my Mac.
What’s the preferred solution?
1. Catch the connection failure and skip the test?
2. Retry connection?
3. Find the root cause and make sure it never ever happens :)
Maybe 2. is acceptable
Erlend E. Aasland added the comment:
I feared that ;)
--
___
Python tracker
<https://bugs.python.org/issue44229>
___
___
Python-bugs-list mailing list
Unsub
Erlend E. Aasland added the comment:
Getting there. The error message is similar:
$ ./python.exe -m test test_ssl -m test_get_server_certificate -u all -F
...
0:02:11 load avg: 2.10 [328] test_ssl
test test_ssl failed -- Traceback (most recent call last):
File "/Users/erlendaaslan
Erlend E. Aasland added the comment:
Got it:
0:02:29 load avg: 2.81 [389] test_ssl
test test_ssl failed -- Traceback (most recent call last):
File "/Users/erlendaasland/src/cpython-ssl/Lib/test/test_ssl.py", line 2132,
in test_get_server_certificate
_test_get_server_certif
Erlend E. Aasland added the comment:
$ git diff
diff --git a/Lib/ssl.py b/Lib/ssl.py
index 2b131de043..9c281d8028 100644
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -257,8 +257,9 @@ class _TLSMessageType:
if sys.platform == "win32":
from _ssl import enum_certificates, enum_cr
Erlend E. Aasland added the comment:
Yes, sorry ‘bout the cryptic messages :)
This is against current main branch (I’m not at my computer right now, so I
don’t have the git ref). The first two failures came after 328 and 389 runs.
Increasing the timeout (using test.support.SHORT_TIMEOUT
Change by Erlend E. Aasland :
--
pull_requests: +24954
pull_request: https://github.com/python/cpython/pull/26363
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: +24957
pull_request: https://github.com/python/cpython/pull/26368
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
Christian, I've got a PR ready for Modules/_ssl.c, but I won't submit it if
you'd rather do it yourself. I'll stay off the sha/md5 types unless you approve
:)
--
nosy: +christian.heimes
__
Change by Erlend E. Aasland :
--
pull_requests: +24959
pull_request: https://github.com/python/cpython/pull/26370
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: +24960
pull_request: https://github.com/python/cpython/pull/26371
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
nosy_count: 4.0 -> 5.0
pull_requests: +24961
pull_request: https://github.com/python/cpython/pull/26372
___
Python tracker
<https://bugs.python.org/issu
Change by Erlend E. Aasland :
--
pull_requests: +24962
pull_request: https://github.com/python/cpython/pull/26373
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: +24963
pull_request: https://github.com/python/cpython/pull/26372
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: -24961
___
Python tracker
<https://bugs.python.org/issue42792>
___
___
Python-bugs-list mailing list
Unsub
Change by Erlend E. Aasland :
--
pull_requests: -24962
___
Python tracker
<https://bugs.python.org/issue42792>
___
___
Python-bugs-list mailing list
Unsub
Change by Erlend E. Aasland :
--
pull_requests: +24964
pull_request: https://github.com/python/cpython/pull/26373
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: +24965
pull_request: https://github.com/python/cpython/pull/26373
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
Thanks! Hashlib PR comin' up.
--
___
Python tracker
<https://bugs.python.org/issue42972>
___
___
Python-bugs-list m
Change by Erlend E. Aasland :
--
pull_requests: +24966
pull_request: https://github.com/python/cpython/pull/26374
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44237>
___
___
Python-bugs-list mailing list
Unsubscribe:
Erlend E. Aasland added the comment:
Berker, does this look ok to you?
--
title: [sqlite3] consider removing special rollback handling -> [sqlite3]
Remove special rollback handling
___
Python tracker
<https://bugs.python.org/issu
Erlend E. Aasland added the comment:
New failure in CI:
https://github.com/python/cpython/runs/2669949777?check_suite_focus=true
==
ERROR: test_msg_callback_deadlock_bpo43577 (test.test_ssl.TestSSLDebug
Erlend E. Aasland added the comment:
Build info for macOS CI attached.
--
Added file: https://bugs.python.org/file50063/5_Display build info.txt
___
Python tracker
<https://bugs.python.org/issue44
Change by Erlend E. Aasland :
--
pull_requests: +24968
pull_request: https://github.com/python/cpython/pull/26376
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
I've opened PR's to fix most of the heap types converted during the 3.10 alpha
phase. What's missing (of the 3.10 batch) is:
- _thread types (this needs special care)
- winapi__overlapped.Overlapped (I currently don't have a Win dev e
Change by Erlend E. Aasland :
--
pull_requests: +24985
pull_request: https://github.com/python/cpython/pull/26392
___
Python tracker
<https://bugs.python.org/issue43
Change by Erlend E. Aasland :
--
pull_requests: +24987
pull_request: https://github.com/python/cpython/pull/26394
___
Python tracker
<https://bugs.python.org/issue43
Erlend E. Aasland added the comment:
Hm, I'm unable to reproduce it w/addr sanitiser on macOS (FWIW).
$ ./python.exe -m test test_ssl -F -u all -m test_pha_required_nocert
Passing 1000 successful runs now. I'll see if I can get a Win dev env set
Erlend E. Aasland added the comment:
I believe we can close this now, Victor. Please reopen if you disagree :)
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Erlend E. Aasland added the comment:
> Lib/test/test_tcl.py might use it [...]
Absolutely.
> Serhiy suggested to write an unit test for curses.ncurses_version:
> https://bugs.python.org/issue43916#msg391936
>
> This work can be done in bpo-43
Erlend E. Aasland added the comment:
GH 26411, run id 2687367477 also failed with an access violation:
https://github.com/python/cpython/pull/26411/checks?check_run_id=2687367477
Not in test_pha_required_nocert, but test_local_bad_hostname.
May be related
Change by Erlend E. Aasland :
--
pull_requests: +25006
pull_request: https://github.com/python/cpython/pull/26412
___
Python tracker
<https://bugs.python.org/issue43
Erlend E. Aasland added the comment:
I can't contribute to that discussion, as it is on the committers ml, but I'll
keep an eye on it. I'll refrain from further development on this issue until
there's a consensus a
Change by Erlend E. Aasland :
--
pull_requests: +25018
pull_request: https://github.com/python/cpython/pull/26423
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
This looks useful: https://lldb.llvm.org/use/python.html
--
___
Python tracker
<https://bugs.python.org/issue38768>
___
___
Change by Erlend E. Aasland :
--
pull_requests: +25046
pull_request: https://github.com/python/cpython/pull/26452
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
Here's the output when with test.support.verbose = True:
test_ssl: testing with 'OpenSSL 1.1.1k 25 Mar 2021' (1, 1, 1, 11, 15)
under Mac ('11.3.1
Erlend E. Aasland added the comment:
> It could be, but the same thing happens on Windows
Are you sure? All the reports are from macOS CI. Christian mentioned that it
could be similar to another ssl test failure that also happen on Windows, but
those tracebacks do not match the ones in t
Erlend E. Aasland added the comment:
See also bpo-43855.
--
___
Python tracker
<https://bugs.python.org/issue44229>
___
___
Python-bugs-list mailing list
Unsub
Erlend E. Aasland added the comment:
See also bpo-44229
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue43855>
___
___
Python-bug
Erlend E. Aasland added the comment:
FWIW:
1st shell:
$ ./python.exe -m test test_ssl -u all -m test_get_server_certificate -F
$ ps
[...]
1271 ttys0040:01.00 ./python.exe -m test test_ssl -u all -m
test_get_server_certificate -F
2nd shell:
$ sudo errinfo -p 1271
The syscall trace
Change by Erlend E. Aasland :
--
pull_requests: +25057
pull_request: https://github.com/python/cpython/pull/26462
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44263>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Erlend E. Aasland :
--
pull_requests: +25070
pull_request: https://github.com/python/cpython/pull/26475
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
Also, note that if identical SQL statements are created in multiple cursors
belonging to the same connection, they will currently _not_ be added to the
connection weak ref list. See the if (self->statement->in_use) in the mid
Change by Erlend E. Aasland :
--
pull_requests: +25080
pull_request: https://github.com/python/cpython/pull/26484
___
Python tracker
<https://bugs.python.org/issue44
Erlend E. Aasland added the comment:
> Erlend, check out
> https://github.com/python/cpython/pull/26206#discussion_r643910263. After
> that we can close this issue
See msg393857: I'll add a PR for _pysqlite_connection_begin as well. After
that, we
Change by Erlend E. Aasland :
--
pull_requests: +25081
pull_request: https://github.com/python/cpython/pull/26485
___
Python tracker
<https://bugs.python.org/issue44
Erlend E. Aasland added the comment:
See also bpo-13299
--
___
Python tracker
<https://bugs.python.org/issue39170>
___
___
Python-bugs-list mailing list
Unsub
Erlend E. Aasland added the comment:
See also bpo-39170
--
___
Python tracker
<https://bugs.python.org/issue13299>
___
___
Python-bugs-list mailing list
Unsub
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue44290>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Erlend E. Aasland :
--
nosy: +erlendaasland
___
Python tracker
<https://bugs.python.org/issue42514>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Erlend E. Aasland :
--
pull_requests: +25108
pull_request: https://github.com/python/cpython/pull/26512
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: +25110
pull_request: https://github.com/python/cpython/pull/26515
___
Python tracker
<https://bugs.python.org/issue42
Change by Erlend E. Aasland :
--
pull_requests: +25112
pull_request: https://github.com/python/cpython/pull/26517
___
Python tracker
<https://bugs.python.org/issue42
Erlend E. Aasland added the comment:
Global module state has been established by
f461a7fc3f8740b9e79e8874175115a3474e5930 (bpo-42862, GH-24203). We can safely
migrate static variables into that struct as a next step.
--
___
Python tracker
<ht
601 - 700 of 1199 matches
Mail list logo