File: stuff.py

package info (click to toggle)
pyro4 4.82-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 2,528 kB
  • sloc: python: 17,736; makefile: 169; sh: 113; javascript: 62
file content (9 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
# this module will be sent to the server as 'flameexample.stuff'

from __future__ import print_function


def doSomething(name, number):
    print("This text is printed from a module whose code was uploaded by the client:")
    print("  Hello, my name is {0} and my number is {1}.".format(name, number))
    return 999