Edgewall Software

Changes between Version 1 and Version 2 of Ticket #13510


Ignore:
Timestamp:
Dec 22, 2022, 10:22:37 PM (17 months ago)
Author:
Jun Omae
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13510 – Description

    v1 v2  
    11 * [https://docs.python.org/3/whatsnew/3.11.html What’s New In Python 3.11 — Python 3.11.1 documentation]
    22 * [https://peps.python.org/pep-0594/ PEP 594 – Removing dead batteries from the standard library | peps.python.org]
     3
     4{{{
     5trac/util/compat.py:25: DeprecationWarning: 'crypt' is deprecated and slated for removal in Python 3.13
     6  from crypt import crypt
     7trac/web/api.py:20: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13
     8  import cgi
     9trac/tests/notification.py:22: DeprecationWarning: The asyncore module is deprecated and will be removed in Python 3.12. The recommended replacement is asyncio
     10  import asyncore
     11trac/tests/notification.py:27: DeprecationWarning: The smtpd module is deprecated and unmaintained and will be removed in Python 3.12.  Please see aiosmtpd (https://aiosmtpd.readthedocs.io/) for the recommended replacement.
     12  import smtpd
     13/usr/lib/python3.11/smtpd.py:97: DeprecationWarning: The asynchat module is deprecated and will be removed in Python 3.12. The recommended replacement is asyncio
     14  import asynchat
     15trac/tests/attachment.py:770: DeprecationWarning: unittest.makeSuite() is deprecated and will be removed in Python 3.13. Please use unittest.TestLoader.loadTestsFromTestCase() instead.
     16  suite.addTest(unittest.makeSuite(AttachmentTestCase))
     17...
     18}}}
    319
    420{{{