]> git.llucax.com Git - z.facultad/66.09/etherled.git/commitdiff
Convierto todo a UTF-8.
authorLeandro Lucarella <llucax@gmail.com>
Tue, 13 Dec 2005 23:23:36 +0000 (23:23 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 13 Dec 2005 23:23:36 +0000 (23:23 +0000)
cliente/cetherled.py
cliente/etherled/__init__.py
cliente/etherled/packet.py
cliente/etherled/protocol.py
cliente/led.py

index c242769e410219e33ff3f393266aa1e1f5ffab49..7f41608be89815df2a4adf985bb61bb57be3dd2f 100755 (executable)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python
-# -*- coding: iso-8859-1 -*-
 # vim: set expandtab tabstop=4 shiftwidth=4 :
 #----------------------------------------------------------------------------
 #                               Etherled
index 040f8d4a139e8423d541a182a077f79d47db8089..11f873a6061ca33d7cb6e43b1ff09123a56c6a15 100644 (file)
@@ -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 <llucare@fi.uba.ar>
 #----------------------------------------------------------------------------
 
index 2f3814566abd708ebee7422bb5b29a5084484464..7bbd18a4656487989984ead7341634e9d183edd9 100644 (file)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python
-# -*- coding: iso-8859-1 -*-
 # vim: set expandtab tabstop=4 shiftwidth=4 :
 #----------------------------------------------------------------------------
 #                               Etherled
 # 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 <llucare@fi.uba.ar>
 #----------------------------------------------------------------------------
 
-# 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")
index 63c537d50d1057411f8e2328a016c1f07dfa44e5..fda8ed7ae425ce58300c21bf282987a363ff7bef 100644 (file)
@@ -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 <llucare@fi.uba.ar>
 #----------------------------------------------------------------------------
 
@@ -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
index 6bc338a3868f74838cd735dbc63020e02fd86b8c..127c32f68e1de4f605e0dab578626d8c46578eab 100644 (file)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python
-# -*- coding: iso-8859-1 -*-
 # vim: set expandtab tabstop=4 shiftwidth=4 :
 #----------------------------------------------------------------------------
 #                               Etherled