Explicitly using python3.5.

This commit is contained in:
Andrew Hamilton 2017-02-08 13:56:56 +01:00
parent 3711a0b293
commit c25266c42b
18 changed files with 15 additions and 26 deletions

View file

@ -1,4 +1,3 @@
#!/usr/bin/python
#
# Urwid __init__.py - all the stuff you're likely to care about
#

View file

@ -1,4 +1,3 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Urwid escape sequences common to curses_display and raw_display

View file

@ -1,4 +1,3 @@
#!/usr/bin/python
#
# Urwid raw display module
# Copyright (C) 2004-2009 Ian Ward
@ -331,11 +330,3 @@ class Screen:
def _getch_nodelay(self):
return self._getch(0)
def _test():
import doctest
doctest.testmod()
if __name__=='__main__':
_test()