jamesbowman / swapforth

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

Fix array.tostring for Python 3.9 #75

Closed higaski closed 3 years ago

higaski commented 3 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 3 years ago

Thanks.