<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/zope-exceptions.git/src, branch master</title>
<subtitle>github.com: zopefoundation/zope.exceptions.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/'/>
<entry>
<title>Moved imports from test to top of file.</title>
<updated>2022-11-09T08:03:38+00:00</updated>
<author>
<name>Maurits van Rees</name>
<email>maurits@vanrees.org</email>
</author>
<published>2022-11-09T08:03:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=51ed722fb9cc42b520481cd5046192a9fab7b31c'/>
<id>51ed722fb9cc42b520481cd5046192a9fab7b31c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Test that Python 3.11 co_positions works in our DummyFrame.</title>
<updated>2022-11-08T14:00:44+00:00</updated>
<author>
<name>Maurits van Rees</name>
<email>maurits@vanrees.org</email>
</author>
<published>2022-11-08T13:56:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=191a935982424cba0118a5c643295c205d644c88'/>
<id>191a935982424cba0118a5c643295c205d644c88</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Catch exceptions in formatExceptionOnly.</title>
<updated>2022-11-08T13:36:44+00:00</updated>
<author>
<name>Maurits van Rees</name>
<email>maurits@vanrees.org</email>
</author>
<published>2022-11-08T13:29:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=b7c4196c21b2fe7a2f7b307e1d247c999be1090a'/>
<id>b7c4196c21b2fe7a2f7b307e1d247c999be1090a</id>
<content type='text'>
Getting an exception when reporting about a different exception is not helpful.
On Python 3.11 this is needed for some HTTPErrors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Getting an exception when reporting about a different exception is not helpful.
On Python 3.11 this is needed for some HTTPErrors.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tests on Python 3.11.</title>
<updated>2022-11-08T12:54:41+00:00</updated>
<author>
<name>Maurits van Rees</name>
<email>maurits@vanrees.org</email>
</author>
<published>2022-11-08T11:22:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=594eee0457cba5d2b93920de15f8f2c6399dd34d'/>
<id>594eee0457cba5d2b93920de15f8f2c6399dd34d</id>
<content type='text'>
For DummyTraceback we need tb_lasti.
For DummyFrame we need co_positions.
See https://docs.python.org/3/reference/datamodel.html#traceback-objects
and https://docs.python.org/3/reference/datamodel.html#codeobject.co_positions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For DummyTraceback we need tb_lasti.
For DummyFrame we need co_positions.
See https://docs.python.org/3/reference/datamodel.html#traceback-objects
and https://docs.python.org/3/reference/datamodel.html#codeobject.co_positions
</pre>
</div>
</content>
</entry>
<entry>
<title>tox -e isort-apply</title>
<updated>2022-11-08T11:12:03+00:00</updated>
<author>
<name>Maurits van Rees</name>
<email>maurits@vanrees.org</email>
</author>
<published>2022-11-08T11:12:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=10cb81a7f9de9b8bf70b4657472cbe6dc9eed323'/>
<id>10cb81a7f9de9b8bf70b4657472cbe6dc9eed323</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More adaption to Python 3.10 syntax error message</title>
<updated>2022-02-11T07:15:23+00:00</updated>
<author>
<name>Ben Greiner</name>
<email>code@bnavigator.de</email>
</author>
<published>2021-12-19T15:22:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=cb2d21400c95b73909b1145674c08fed31b8759a'/>
<id>cb2d21400c95b73909b1145674c08fed31b8759a</id>
<content type='text'>
$ python2.7 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
               ^
SyntaxError: invalid syntax
$ python3.6 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
               ^
SyntaxError: invalid syntax
$ python3.8 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
           ^
SyntaxError: invalid syntax
$ python3.9 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
           ^
SyntaxError: invalid syntax
$ python3.10 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
           ^^^^^
SyntaxError: invalid syntax</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
$ python2.7 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
               ^
SyntaxError: invalid syntax
$ python3.6 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
               ^
SyntaxError: invalid syntax
$ python3.8 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
           ^
SyntaxError: invalid syntax
$ python3.9 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
           ^
SyntaxError: invalid syntax
$ python3.10 -c 'syntax error'
  File "&lt;string&gt;", line 1
    syntax error
           ^^^^^
SyntaxError: invalid syntax</pre>
</div>
</content>
</entry>
<entry>
<title>Make linter happy.</title>
<updated>2021-06-01T06:13:32+00:00</updated>
<author>
<name>Michael Howitz</name>
<email>mh@gocept.com</email>
</author>
<published>2021-06-01T06:13:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=3c35575c4bcf89f84568a87bb875b4af1df1d61a'/>
<id>3c35575c4bcf89f84568a87bb875b4af1df1d61a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Config with pure python (#20)</title>
<updated>2021-06-01T06:12:13+00:00</updated>
<author>
<name>Michael Howitz</name>
<email>mh@gocept.com</email>
</author>
<published>2021-06-01T06:12:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=b30189e4f078ca2857e2a5208e5e35978af92850'/>
<id>b30189e4f078ca2857e2a5208e5e35978af92850</id>
<content type='text'>
* Add official support for Python 3.9.
* Undo dropping support for Python 3.5.
* Drop support for running the tests using `python setup.py test`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add official support for Python 3.9.
* Undo dropping support for Python 3.5.
* Drop support for running the tests using `python setup.py test`.</pre>
</div>
</content>
</entry>
<entry>
<title>Adapt to python 3.10 SyntaxError messages (#19)</title>
<updated>2021-06-01T06:11:30+00:00</updated>
<author>
<name>Arthur Zamarin</name>
<email>arthurzam@gmail.com</email>
</author>
<published>2021-06-01T06:11:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=cdaff4db4710c791b0ca5c8e0f8a6030cf077c46'/>
<id>cdaff4db4710c791b0ca5c8e0f8a6030cf077c46</id>
<content type='text'>
Co-authored-by: Marius Gedminas &lt;marius@gedmin.as&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Marius Gedminas &lt;marius@gedmin.as&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Add preliminary support for Python 3.9 (#16)</title>
<updated>2020-07-16T06:40:37+00:00</updated>
<author>
<name>Michael Howitz</name>
<email>mh@gocept.com</email>
</author>
<published>2020-07-16T06:40:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/zope-exceptions.git/commit/?id=25b69efd807cd3d9f7355ddd1fdc16bab933b63a'/>
<id>25b69efd807cd3d9f7355ddd1fdc16bab933b63a</id>
<content type='text'>
* Adapt tests to Python 3.9.
* Drop support for Python 3.5 as its sunset is in some months.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Adapt tests to Python 3.9.
* Drop support for Python 3.5 as its sunset is in some months.</pre>
</div>
</content>
</entry>
</feed>
