Explorar o código

Make Python example output identical to C++ and Java by removing redundant
spaces.

kenton@google.com %!s(int64=17) %!d(string=hai) anos
pai
achega
16b31d2a94
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      examples/list_people.py

+ 3 - 3
examples/list_people.py

@@ -15,11 +15,11 @@ def ListPeople(address_book):
 
     for phone_number in person.phone:
       if phone_number.type == addressbook_pb2.Person.MOBILE:
-        print "  Mobile phone #: ",
+        print "  Mobile phone #:",
       elif phone_number.type == addressbook_pb2.Person.HOME:
-        print "  Home phone #: ",
+        print "  Home phone #:",
       elif phone_number.type == addressbook_pb2.Person.WORK:
-        print "  Work phone #: ",
+        print "  Work phone #:",
       print phone_number.number
 
 # Main procedure:  Reads the entire address book from a file and prints all