my "keep" script - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html) +--- Forum: Bar (https://python-forum.io/forum-27.html) +--- Thread: my "keep" script (/thread-6553.html) |
RE: my "keep" script - ezdev - Dec-16-2017 i do pretty much all my coding under cc0. i waited until the fsf said it was gpl-compatible (its mit compatible too.) no one here is going to steal my code-- i mostly do stuff for python 2! (ive made a python 3 version of some of my code, the encoding works most of the time...) this code isnt getting stolen by anyone. its like cheap ugly sunglasses-- no ones taking those: if fon == "nt": sep = chr(13) + chr(10) try: figfilehandles[s].write(bytes(str(x) + sep,encoding="latin-1").decode("utf-8")) except UnicodeDecodeError: figfilehandles[s].write(str(x) + sep) except UnicodeEncodeError: figfilehandles[s].write(str(x) + sep) RE: my "keep" script - Skaperen - Dec-17-2017 that's why my street car is an old beat up Ford ... no one would steal it so i can leave the windows down. |