<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/test/test_sqlite3, branch main</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/'/>
<entry>
<title>gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds (#103902)</title>
<updated>2023-05-07T10:55:31+00:00</updated>
<author>
<name>Erlend E. Aasland</name>
<email>erlend.aasland@protonmail.com</email>
</author>
<published>2023-05-07T10:55:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=a05bad3254e2ae5fdf558dfdb65899a2298d8ded'/>
<id>a05bad3254e2ae5fdf558dfdb65899a2298d8ded</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GH-103857: Deprecate utcnow and utcfromtimestamp (#103858)</title>
<updated>2023-04-27T17:32:30+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>1377457+pganssle@users.noreply.github.com</email>
</author>
<published>2023-04-27T17:32:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=0b7fd8ffc5df187edf8b5d926cee359924462df5'/>
<id>0b7fd8ffc5df187edf8b5d926cee359924462df5</id>
<content type='text'>
Using `datetime.datetime.utcnow()` and `datetime.datetime.utcfromtimestamp()` will now raise a `DeprecationWarning`.

We also have removed our internal uses of these functions and documented the change.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using `datetime.datetime.utcnow()` and `datetime.datetime.utcfromtimestamp()` will now raise a `DeprecationWarning`.

We also have removed our internal uses of these functions and documented the change.</pre>
</div>
</content>
</entry>
<entry>
<title>gh-103489: Add get/set config methods to sqlite3.Connection (#103506)</title>
<updated>2023-04-26T19:57:48+00:00</updated>
<author>
<name>Erlend E. Aasland</name>
<email>erlend.aasland@protonmail.com</email>
</author>
<published>2023-04-26T19:57:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=bb8aa7a2b41ad7649d66909e5266fcee039e63ed'/>
<id>bb8aa7a2b41ad7649d66909e5266fcee039e63ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GH-103805: Lib test f541 linting issue fix (#103812)</title>
<updated>2023-04-24T23:24:49+00:00</updated>
<author>
<name>Rodolfo M. Pereira</name>
<email>rodolfomp123@gmail.com</email>
</author>
<published>2023-04-24T23:24:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=8291ae31ddc2f935b8ec60f3d5f3825f78ccf244'/>
<id>8291ae31ddc2f935b8ec60f3d5f3825f78ccf244</id>
<content type='text'>
This PR makes some minor linting adjustments to the Lib/test module
caught by [ruff](https://github.com/charliermarsh/ruff). The adjustments
are all related to the `F541 f-string without any placeholders` issue.

Issue: https://github.com/python/cpython/issues/103805

&lt;!-- gh-issue-number: gh-103805 --&gt;
* Issue: gh-103805
&lt;!-- /gh-issue-number --&gt;

---------

Co-authored-by: blurb-it[bot] &lt;43283697+blurb-it[bot]@users.noreply.github.com&gt;
Co-authored-by: Gregory P. Smith &lt;greg@krypto.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR makes some minor linting adjustments to the Lib/test module
caught by [ruff](https://github.com/charliermarsh/ruff). The adjustments
are all related to the `F541 f-string without any placeholders` issue.

Issue: https://github.com/python/cpython/issues/103805

&lt;!-- gh-issue-number: gh-103805 --&gt;
* Issue: gh-103805
&lt;!-- /gh-issue-number --&gt;

---------

Co-authored-by: blurb-it[bot] &lt;43283697+blurb-it[bot]@users.noreply.github.com&gt;
Co-authored-by: Gregory P. Smith &lt;greg@krypto.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>gh-101947: Remove size check from sqlite3 serialize test (#102914)</title>
<updated>2023-03-22T13:05:08+00:00</updated>
<author>
<name>Erlend E. Aasland</name>
<email>erlend.aasland@protonmail.com</email>
</author>
<published>2023-03-22T13:05:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=61405da9a5689f554aa53929a2a9c168cab6056b'/>
<id>61405da9a5689f554aa53929a2a9c168cab6056b</id>
<content type='text'>
The size of the returned data is too implementation specific.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The size of the returned data is too implementation specific.</pre>
</div>
</content>
</entry>
<entry>
<title>gh-101693: In sqlite3, deprecate using named placeholders with parameters supplied as a sequence (#101698)</title>
<updated>2023-02-15T05:27:16+00:00</updated>
<author>
<name>Erlend E. Aasland</name>
<email>erlend.aasland@protonmail.com</email>
</author>
<published>2023-02-15T05:27:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=8a2b7ee64d1bde762438b458ea7fe88f054a3a88'/>
<id>8a2b7ee64d1bde762438b458ea7fe88f054a3a88</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>gh-100553: Improve accuracy of sqlite3.Row iter test (#100555)</title>
<updated>2022-12-28T00:58:05+00:00</updated>
<author>
<name>Nikita Sobolev</name>
<email>mail@sobolevn.me</email>
</author>
<published>2022-12-28T00:58:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=3dc48dabd48864039951715816e07986a4828d80'/>
<id>3dc48dabd48864039951715816e07986a4828d80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>gh-99659: Use correct exceptions in sqlite3 bigmem tests (#99660)</title>
<updated>2022-11-21T20:44:17+00:00</updated>
<author>
<name>Łukasz Langa</name>
<email>lukasz@langa.pl</email>
</author>
<published>2022-11-21T20:44:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=2781ec9b0e41a62cecc189c22dfc849f9a56927c'/>
<id>2781ec9b0e41a62cecc189c22dfc849f9a56927c</id>
<content type='text'>
The tests in question were added in 0eec6276fdcd by Serhiy. Apparently,
sqlite3 changed exceptions raised in those cases in the mean time but
the tests never ran because they require a high `-M` setting in the
test runner.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The tests in question were added in 0eec6276fdcd by Serhiy. Apparently,
sqlite3 changed exceptions raised in those cases in the mean time but
the tests never ran because they require a high `-M` setting in the
test runner.</pre>
</div>
</content>
</entry>
<entry>
<title>gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (#93823)</title>
<updated>2022-11-12T22:44:41+00:00</updated>
<author>
<name>Erlend E. Aasland</name>
<email>erlend.aasland@protonmail.com</email>
</author>
<published>2022-11-12T22:44:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=c95f554a408f76f96c14c006ebe8a0d3d3b40765'/>
<id>c95f554a408f76f96c14c006ebe8a0d3d3b40765</id>
<content type='text'>
Introduce the autocommit attribute to Connection and the autocommit
parameter to connect() for PEP 249-compliant transaction handling.

Co-authored-by: Alex Waygood &lt;Alex.Waygood@Gmail.com&gt;
Co-authored-by: C.A.M. Gerlach &lt;CAM.Gerlach@Gerlach.CAM&gt;
Co-authored-by: Géry Ogam &lt;gery.ogam@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce the autocommit attribute to Connection and the autocommit
parameter to connect() for PEP 249-compliant transaction handling.

Co-authored-by: Alex Waygood &lt;Alex.Waygood@Gmail.com&gt;
Co-authored-by: C.A.M. Gerlach &lt;CAM.Gerlach@Gerlach.CAM&gt;
Co-authored-by: Géry Ogam &lt;gery.ogam@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>gh-77617: Add sqlite3 command-line interface (#95026)</title>
<updated>2022-08-01T10:25:16+00:00</updated>
<author>
<name>Erlend Egeberg Aasland</name>
<email>erlend.aasland@protonmail.com</email>
</author>
<published>2022-08-01T10:25:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=bc7c7cd18a4ae015449f95454a762a7276585bb8'/>
<id>bc7c7cd18a4ae015449f95454a762a7276585bb8</id>
<content type='text'>
Co-authored-by: Serhiy Storchaka &lt;storchaka@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Serhiy Storchaka &lt;storchaka@gmail.com&gt;</pre>
</div>
</content>
</entry>
</feed>
