Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > 3a1f9d3637f3247d5d88534895c3fa55 > files > 23

emacs-pymacs-0.25-4.fc20.noarch.rpm

# -*- coding: utf-8 -*-
if PYTHON3:

    import os, xmlrpc.client

    if __name__ == "__main__":
        print(("My dir is:"+os.getcwd()))
        print("Connecting....")
        s = xmlrpc.client.Server('http://127.0.0.1:9000')
        print("Sending message...")
        s.message("hi emacs, I am remoted hosted")
        print("Opening directory:")
        s.find_file(os.getcwd())
        s.switch_to_buffer("extensions")
        print("Finding python stuff")
        s.occur(r'\.py')
        print("Closing Connection")
        s.closeConnection()

else:

    import os, xmlrpclib

    if __name__ == "__main__":
        print "My dir is:"+os.getcwd()
        print "Connecting...."
        s = xmlrpclib.Server('http://127.0.0.1:9000')
        print "Sending message..."
        s.message("hi emacs, I am remoted hosted")
        print "Opening directory:"
        s.find_file(os.getcwd())
        s.switch_to_buffer("extensions")
        print "Finding python stuff"
        s.occur(r'\.py')
        print "Closing Connection"
        s.closeConnection()