mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 05:00:07 +00:00
478602bfa5
Update README.rst to note new pythons supported since last update
7 lines
155 B
Python
7 lines
155 B
Python
from __future__ import division
|
|
|
|
print ' 1 // 2 =', 1 // 2
|
|
print '1.0 // 2.0 =', 1.0 // 2.0
|
|
print ' 1 / 2 =', 1 / 2
|
|
print '1.0 / 2.0 =', 1.0 / 2.0
|