Message386768
| Author |
CharlesFengY |
| Recipients |
CharlesFengY |
| Date |
2021年02月10日.09:48:57 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1612950537.99.0.387983574304.issue43190@roundup.psfhosted.org> |
| In-reply-to |
| Content |
In the following program, we call check_free_after_iterating( ) twice, in the second time, we recursively call function test_free_after_iterating(). Python interpreter crashes.
+++++++++++++++++++++++++++++++++++++++++++
import unittest
import test.support
class UnicodeTest(unittest.TestCase):
pass
def test_free_after_iterating():
ut = UnicodeTest()
test.support.check_free_after_iterating(ut, iter, str)
test.support.check_free_after_iterating(str, test_free_after_iterating(), str)
test_free_after_iterating()
+++++++++++++++++++++++++++++++++++++++++
System Info: Ubuntu 16.04
Python Version: Python 3.9.1 |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2021年02月10日 09:48:58 | CharlesFengY | set | recipients:
+ CharlesFengY |
| 2021年02月10日 09:48:57 | CharlesFengY | set | messageid: <1612950537.99.0.387983574304.issue43190@roundup.psfhosted.org> |
| 2021年02月10日 09:48:57 | CharlesFengY | link | issue43190 messages |
| 2021年02月10日 09:48:57 | CharlesFengY | create |
|