Edgewall Software

Changes between Initial Version and Version 1 of Ticket #13510


Ignore:
Timestamp:
Dec 19, 2022, 4:40:24 PM (17 months ago)
Author:
Jun Omae
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13510

    • Property Summary crypt module is deprecated since Python 3.11 and will be removed in Python 3.13cgi, crypt and smtpd modules are deprecated since Python 3.11 and will be removed in Python 3.13
  • Ticket #13510 – Description

    initial v1  
    33
    44{{{
    5 $ git grep '\(imoprt\|from\) *\(audioop\|cgi\|cgitb\|chunk\|crypt\|imghdr\|mailcap\|msilib\|nntplib\|nis\|ossaudiodev\|pipes\|smtpd\|sndhdr\|spwd\|sunau\|telnetlib\|uu\|xdrlib\)'
     5$ git grep '\(import\|from\) *\<\(audioop\|cgi\|cgitb\|chunk\|crypt\|imghdr\|mailcap\|msilib\|nntplib\|nis\|ossaudiodev\|pipes\|smtpd\|sndhdr\|spwd\|sunau\|telnetlib\|uu\|xdrlib\)\>'
     6contrib/htpasswd.py:from trac.util.compat import crypt, wait_for_file_mtime_change
     7trac/tests/notification.py:import smtpd
    68trac/util/compat.py:    from crypt import crypt
     9trac/web/_fcgi.py:        import cgi
     10trac/web/api.py:import cgi
     11trac/web/auth.py:from trac.util.compat import crypt
     12trac/web/main.py:import cgi
     13trac/web/tests/auth.py:from trac.util.compat import crypt
    714}}}