Mariusz Felisiak added the comment:
https://sqlite.org/src/info/336851b191fe79f0 was merged to the 3.38 branch, so
we should expect 3.38.3 in the coming days.
--
___
Python tracker
<https://bugs.python.org/issue46
Change by Mariusz Felisiak :
--
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue44740>
___
___
Pyth
Change by Mariusz Felisiak :
--
resolution: -> fixed
___
Python tracker
<https://bugs.python.org/issue44740>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by Mariusz Felisiak :
--
pull_requests: +30228
pull_request: https://github.com/python/cpython/pull/32148
___
Python tracker
<https://bugs.python.org/issue46
Change by Mariusz Felisiak :
--
pull_requests: +30227
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/32147
___
Python tracker
<https://bugs.python.org/issu
Change by Mariusz Felisiak :
--
pull_requests: +29774
pull_request: https://github.com/python/cpython/pull/31656
___
Python tracker
<https://bugs.python.org/issue46
Change by Mariusz Felisiak :
--
keywords: +patch
pull_requests: +29773
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/31655
___
Python tracker
<https://bugs.python.org/issu
New submission from Mariusz Felisiak :
SQLite 3.37.0 was released on 2022-02-22:
https://sqlite.org/releaselog/3_38_0.html
--
components: Windows, macOS
messages: 414412
nosy: erlendaasland, felixxm, ned.deily, paul.moore, ronaldoussoren,
steve.dower, tim.golden, zach.ware
priority
Change by Mariusz Felisiak :
--
nosy: +felixxm
___
Python tracker
<https://bugs.python.org/issue43882>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Mariusz Felisiak :
--
nosy: +felixxm
___
Python tracker
<https://bugs.python.org/issue46249>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Mariusz Felisiak :
--
pull_requests: +25918
pull_request: https://github.com/python/cpython/pull/27385
___
Python tracker
<https://bugs.python.org/issue44
Change by Mariusz Felisiak :
--
keywords: +patch
pull_requests: +25913
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/27378
___
Python tracker
<https://bugs.python.org/issu
New submission from Mariusz Felisiak :
AP lowercased "internet" and "web" in all instances – web page, the web, web
browser, etc. on June 1, 2016:
https://twitter.com/APStylebook/status/716384777406922753
https://twitter.com/APStylebook/status/716279539052191746?s=20
I
New submission from Mariusz Felisiak :
We noticed a behavior change in [1]. One of our tests
`apps.tests.AppsTests.test_model_clash()`[2] crashes with:
python: Objects/typeobject.c:3219: type_new: Assertion `type != NULL' failed.
Fatal Python error: Aborted
Current thread 0x7ffa695
Mariusz Felisiak added the comment:
A regression test:
def test_convert_null_date(self):
con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES)
cur = con.cursor()
cur.execute("CREATE TABLE t (x DATE NULL)")
cur.execu
New submission from Mariusz Felisiak :
We noticed a regression in Python3.10.0a7 (it works properly in Python3.10.0a6)
when running Django's test suite. `convert_date()`[1] is called and crashes
when fetching an empty value from `date` column on SQLite:
File "python3.10/lib/sqlite3
Change by Mariusz Felisiak :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Mariusz Felisiak :
--
versions: +Python 3.10, Python 3.8, Python 3.9 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue20
Mariusz Felisiak added the comment:
I've prepared PRs with backports.
--
___
Python tracker
<https://bugs.python.org/issue43353>
___
___
Python-bugs-list m
Change by Mariusz Felisiak :
--
pull_requests: +23591
pull_request: https://github.com/python/cpython/pull/24826
___
Python tracker
<https://bugs.python.org/issue43
Change by Mariusz Felisiak :
--
pull_requests: +23590
pull_request: https://github.com/python/cpython/pull/24825
___
Python tracker
<https://bugs.python.org/issue43
Mariusz Felisiak added the comment:
"numeric" doesn't refer to the "Level #" representation but to the fact that
`getLevelName()` returns a numeric value when the corresponding name is passed,
e.g.
>>> getLevelName('CRITICAL')
50
--
__
Mariusz Felisiak added the comment:
Do we want to backport this patch? If yes, I can prepare backports. If not, we
can close the ticket.
--
___
Python tracker
<https://bugs.python.org/issue43
Change by Mariusz Felisiak :
--
nosy: +felixxm
___
Python tracker
<https://bugs.python.org/issue43216>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Mariusz Felisiak :
Can we document[1] that `logging.getLevelName()` returns a numeric value when
corresponding string is passed in (related with
https://bugs.python.org/issue1008295). I know that we have "Changed in version
3.4" annotation but I think
Change by Mariusz Felisiak :
--
nosy: +felixxm
nosy_count: 6.0 -> 7.0
pull_requests: +23241
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/24431
___
Python tracker
<https://bugs.python.org/i
Mariusz Felisiak added the comment:
Ethan, Thanks for the patch.
--
___
Python tracker
<https://bugs.python.org/issue42851>
___
___
Python-bugs-list mailin
New submission from Mariusz Felisiak :
We noticed a behavior change in Python3.10.0a4 (it works properly in
Python3.10.0a3) when running Django's test suite[1]. Subclassing `enum.Enum`
with `ipaddress.IPv4Network/IPv6Network` raises `TypeError`, e.g.
>>> import enum
>&g
Mariusz Felisiak added the comment:
FYI, I created fix https://github.com/django/django/pull/12978 for view's
exception handling in Django.
--
___
Python tracker
<https://bugs.python.org/is
Mariusz Felisiak added the comment:
Chris, many thanks for detailed explanation, extensive investigation, and a fix!
We'll also review Django's code in the next few days.
--
___
Python tracker
<https://bugs.python.o
New submission from Mariusz Felisiak :
We noticed a behavior change in Python3.9.0b1 (it works properly in
Python3.9.0a6). One of our tests
`handlers.tests.AsyncHandlerRequestTests.test_suspiciousop_in_view_returns_400`[1]
hangs on `await`. `/suspicious/` is a view that raises a custom
Mariusz Felisiak added the comment:
I can prepare a patch.
--
___
Python tracker
<https://bugs.python.org/issue40557>
___
___
Python-bugs-list mailing list
Unsub
New submission from Mariusz Felisiak :
I would like to propose making test.support.captured_stdin(),
captured_stdout(), and captured_stderr() public APIs with guaranteed stability.
These helpers are really useful and are stable for the last ~10 years.
--
components: Tests
messages
Change by Mariusz Felisiak :
--
keywords: +patch
pull_requests: +18897
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/19551
___
Python tracker
<https://bugs.python.org/issu
New submission from Mariusz Felisiak :
We would like to subclass logging.Formatter with a custom "default_time_format"
and an empty "default_msec_format". Unfortunately logging.Formatter crashes
when default_msec_format is None, see [1].
I'm happy to provide a patch.
Change by Mariusz Felisiak :
--
nosy: +Mariusz Felisiak
___
Python tracker
<https://bugs.python.org/issue38563>
___
___
Python-bugs-list mailing list
Unsub
Change by Mariusz Felisiak :
--
nosy: +Mariusz Felisiak
___
Python tracker
<https://bugs.python.org/issue38563>
___
___
Python-bugs-list mailing list
Unsub
37 matches
Mail list logo