Move to Python 3
This commit is contained in:
parent
a1abe1b556
commit
0c77543dd1
2
box.py
2
box.py
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
2
box2.py
2
box2.py
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
2
box3.py
2
box3.py
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
6
boxes.py
6
boxes.py
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -567,13 +567,13 @@ class Boxes:
|
||||||
f.seek(pos)
|
f.seek(pos)
|
||||||
f.write("mm")
|
f.write("mm")
|
||||||
else:
|
else:
|
||||||
print "Could not replace pt with mm"
|
print("Could not replace pt with mm")
|
||||||
pos = s.find('pt"', pos+3)
|
pos = s.find('pt"', pos+3)
|
||||||
if pos > 0:
|
if pos > 0:
|
||||||
f.seek(pos)
|
f.seek(pos)
|
||||||
f.write("mm")
|
f.write("mm")
|
||||||
else:
|
else:
|
||||||
print "Could not replace pt with mm"
|
print("Could not replace pt with mm")
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
### Turtle graphics commands
|
### Turtle graphics commands
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -22,7 +22,7 @@ class FlexTest(Boxes):
|
||||||
def render(self, x, y):
|
def render(self, x, y):
|
||||||
self.moveTo(5, 5)
|
self.moveTo(5, 5)
|
||||||
self.edge(10)
|
self.edge(10)
|
||||||
self.flex(x, y)
|
self.flexEdge(x, y)
|
||||||
self.edge(10)
|
self.edge(10)
|
||||||
self.corner(90)
|
self.corner(90)
|
||||||
self.edge(y)
|
self.edge(y)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
2
lamp.py
2
lamp.py
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
# Copyright (C) 2013-2014 Florian Festi
|
# Copyright (C) 2013-2014 Florian Festi
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
Loading…
Reference in New Issue