jamesbowman / swapforth

Swapforth is a cross-platform ANS Forth
BSD 3-Clause "New" or "Revised" License
275 stars 56 forks source link

Fix array.tostring for Python 3.9 #75

Closed higaski closed 2 years ago

higaski commented 2 years ago

Python 3.9 finally removed the array method tostring which has been deprecated since 3.2. A simple function now checks which method is available.

jamesbowman commented 2 years ago

Thanks.