Skip to content

Commit

Permalink
NEWS: say that we'll drop support for python2 soon
Browse files Browse the repository at this point in the history
I think it's nicer to make one last release with the remaining code
for python2 in place.
  • Loading branch information
keszybz committed Aug 16, 2022
1 parent 1704d0d commit 122e6dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ CHANGES WITH 235:

* id128: update for systemd-243 compatibility and other fixes.

* C syntax modernization. A minimum of C99 is assumed.
* C syntax modernization. A minimum of C99 is assumed.

* Fix seek_realtime to work with timezone aware date.
* Fix seek_realtime to work with timezone aware date on Python 3.

* journal: add namespace support.

* Memory leak fixes.
* Fixes for memory leaks and documentation.

* Documentation and other fixes.
* Support for Python 2 will be removed after this release.

CHANGES WITH 234:

Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,11 @@ Notes
-----

* Unlike the native C version of journald's `sd_journal_send()`,
printf-style substitution is not supported. Perform any
substitution using Python's f-strings first (or .format()
capabilities or `%` operator).
printf-style substitution is not supported. Perform any substitution
using Python's f-strings first (or `.format()` or the `%` operator).
* A `ValueError` is raised if `sd_journald_sendv()` results in an
error. This might happen if there are no arguments or one of them
is invalid.
error. This might happen if there are no arguments or one of them is
invalid.

A handler class for the Python logging framework is also provided:

Expand Down

0 comments on commit 122e6dd

Please sign in to comment.