constants.py 497 B

1234567891011121314151617181920
  1. """
  2. Definitions of various hard coded constants.
  3. Pyro - Python Remote Objects. Copyright by Irmen de Jong (irmen@razorvine.net).
  4. """
  5. # Pyro version
  6. VERSION = "4.81"
  7. # standard object name for the Daemon object
  8. DAEMON_NAME = "Pyro.Daemon"
  9. # standard name for the Name server itself
  10. NAMESERVER_NAME = "Pyro.NameServer"
  11. # standard name for Flame server
  12. FLAME_NAME = "Pyro.Flame"
  13. # wire protocol version. Note that if this gets updated, Pyrolite might need an update too.
  14. PROTOCOL_VERSION = 48