tornadoweb / tornado

Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
http://www.tornadoweb.org/
Apache License 2.0
21.76k stars 5.51k forks source link

Fix tests with Twisted 24.7.0 #3417

Closed cjwatson closed 3 months ago

cjwatson commented 3 months ago

twisted.internet.defer.returnValue was needed on Python 2, but on Python 3 a simple return statement works fine. Twisted 24.7.0 deprecated the former, causing tornado.test.twisted_test.ConvertDeferredTest.test_success to fail.

bdarnell commented 3 months ago

Thanks!