From cf711545839c42cd01d385f5d474099a590b7cfd Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 13 Dec 2005 23:23:36 +0000 Subject: [PATCH] Convierto todo a UTF-8. --- cliente/cetherled.py | 1 - cliente/etherled/__init__.py | 3 +-- cliente/etherled/packet.py | 7 +++---- cliente/etherled/protocol.py | 13 ++++++------- cliente/led.py | 1 - 5 files changed, 10 insertions(+), 15 deletions(-) diff --git a/cliente/cetherled.py b/cliente/cetherled.py index c242769..7f41608 100755 --- a/cliente/cetherled.py +++ b/cliente/cetherled.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- # vim: set expandtab tabstop=4 shiftwidth=4 : #---------------------------------------------------------------------------- # Etherled diff --git a/cliente/etherled/__init__.py b/cliente/etherled/__init__.py index 040f8d4..11f873a 100644 --- a/cliente/etherled/__init__.py +++ b/cliente/etherled/__init__.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- # vim: set expandtab tabstop=4 shiftwidth=4 : #---------------------------------------------------------------------------- # Etherled @@ -20,7 +19,7 @@ # with etherled; if not, write to the Free Software Foundation, Inc., 59 # Temple Place, Suite 330, Boston, MA 02111-1307 USA #---------------------------------------------------------------------------- -# Creado: sáb oct 29 21:56:59 ART 2005 +# Creado: sáb oct 29 21:56:59 ART 2005 # Autores: Leandro Lucarella #---------------------------------------------------------------------------- diff --git a/cliente/etherled/packet.py b/cliente/etherled/packet.py index 2f38145..7bbd18a 100644 --- a/cliente/etherled/packet.py +++ b/cliente/etherled/packet.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- # vim: set expandtab tabstop=4 shiftwidth=4 : #---------------------------------------------------------------------------- # Etherled @@ -20,11 +19,11 @@ # with etherled; if not, write to the Free Software Foundation, Inc., 59 # Temple Place, Suite 330, Boston, MA 02111-1307 USA #---------------------------------------------------------------------------- -# Creado: sáb oct 29 00:45:52 ART 2005 +# Creado: sáb oct 29 00:45:52 ART 2005 # Autores: Leandro Lucarella #---------------------------------------------------------------------------- -# Tipos de operación +# Tipos de operación TYPE_GET = 0 TYPE_SET = 1 @@ -112,7 +111,7 @@ class Packet(object): raise ValueError, "id debe estar entre 0 y %d" % self.MAX_ID-1 self._id = id - type = property(_getType, _setType, doc="Tipo de operación") + type = property(_getType, _setType, doc="Tipo de operación") var = property(_getVar, _setVar, doc="Variable con la cual operar") id = property(_getId, _setId, doc="Identificador del paquete") par = property(_getPar, doc="Paridad de la cabecera del paquete") diff --git a/cliente/etherled/protocol.py b/cliente/etherled/protocol.py index 63c537d..fda8ed7 100644 --- a/cliente/etherled/protocol.py +++ b/cliente/etherled/protocol.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- # vim: set expandtab tabstop=4 shiftwidth=4 : #---------------------------------------------------------------------------- # Etherled @@ -20,7 +19,7 @@ # with etherled; if not, write to the Free Software Foundation, Inc., 59 # Temple Place, Suite 330, Boston, MA 02111-1307 USA #---------------------------------------------------------------------------- -# Creado: sáb oct 29 00:45:52 ART 2005 +# Creado: sáb oct 29 00:45:52 ART 2005 # Autores: Leandro Lucarella #---------------------------------------------------------------------------- @@ -29,7 +28,7 @@ import packet __all__ = ('SendError', 'RecvError', 'Client', 'NetworkedDevice', 'DummyServer') -# Tamaño del buffer +# Tamaño del buffer _BUFSIZ = 65536 # Cantidad de bytes de la columna de leds @@ -59,7 +58,7 @@ class Client(object): except socket.timeout: raise SendError, "Tiempo de espera agotado" if sent != len(pkt): - raise SendError, "Sólo se enviaron %d bytes de %d" \ + raise SendError, "Sólo se enviaron %d bytes de %d" \ % (sent, len(pkt)) while True: try: @@ -136,7 +135,7 @@ class DummyServer: pkt = packet.ServerPacket(pkt.type, pkt.var, pkt.id) sent = self._sock.sendto(str(pkt), addr) if sent != len(pkt): - raise SendError, "Sólo se enviaron %d bytes de %d" \ + raise SendError, "Sólo se enviaron %d bytes de %d" \ % (sent, len(packet)) print 'Enviado:', repr(pkt) if pkt.type == packet.TYPE_GET and pkt.var == packet.VAR_MATRIX: @@ -156,7 +155,7 @@ class DummyServer: addr = property(_getAddr, doc='Tupla (host, port)') def _stream2Matrix(stream): - cols = ord(stream[0]) # Obtiene tamaño + cols = ord(stream[0]) # Obtiene tamaño stream = stream[1:1+cols*_LED_BYTES] # me quedo con el resto matrix = {} for col in xrange(cols-1, -1, -1): @@ -169,7 +168,7 @@ def _stream2Matrix(stream): def _matrix2Stream(matrix): cols = len(matrix) / (_LED_BYTES*8) - stream = chr(cols) # primero va el tamaño + stream = chr(cols) # primero va el tamaño for col in xrange(cols-1, -1, -1): for i in xrange(_LED_BYTES): byte = 0 diff --git a/cliente/led.py b/cliente/led.py index 6bc338a..127c32f 100644 --- a/cliente/led.py +++ b/cliente/led.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- # vim: set expandtab tabstop=4 shiftwidth=4 : #---------------------------------------------------------------------------- # Etherled -- 2.43.0