This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients Dennis Sweeney, Mark.Shannon, methane, ronaldoussoren, xtreak
Date 2022-03-07.06:50:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1646635800.35.0.64896883511.issue46903@roundup.psfhosted.org>
In-reply-to
Content
The PR introduced some deprecation warnings in tests.

./python -Wall -m test test_unicode               
0:00:00 load avg: 1.54 Run tests sequentially
0:00:00 load avg: 1.54 [1/1] test_unicode
/home/karthikeyan/stuff/python/cpython/Lib/test/test_unicode.py:3058: DeprecationWarning: Please use assertEqual instead.
  self.assertEquals(o.name, 1)
/home/karthikeyan/stuff/python/cpython/Lib/test/test_unicode.py:3060: DeprecationWarning: Please use assertEqual instead.
  self.assertEquals(list(o.__dict__), [name])
/home/karthikeyan/stuff/python/cpython/Lib/test/test_unicode.py:3067: DeprecationWarning: Please use assertEqual instead.
  self.assertEquals(o.name2, 3)
/home/karthikeyan/stuff/python/cpython/Lib/test/test_unicode.py:3069: DeprecationWarning: Please use assertEqual instead.
  self.assertEquals(list(o.__dict__), [name, name2])

== Tests result: SUCCESS ==

1 test OK.

Total duration: 952 ms
Tests result: SUCCESS
History
Date User Action Args
2022-03-07 06:50:00xtreaksetrecipients: + xtreak, ronaldoussoren, methane, Mark.Shannon, Dennis Sweeney
2022-03-07 06:50:00xtreaksetmessageid: <1646635800.35.0.64896883511.issue46903@roundup.psfhosted.org>
2022-03-07 06:50:00xtreaklinkissue46903 messages
2022-03-07 06:50:00xtreakcreate