Author: pfg
Date: Tue Dec 18 21:36:34 2012
New Revision: 1423676
URL: http://svn.apache.org/viewvc?rev=1423676&view=rev
Log:
#i121496# - [PyUNO] Python3 support
Add initial python 3 compatibility to native scripts now that
pyuno supports python3.
This is the result of running the python 2to3 script with
conservative settings.
Still more porting work may be required and any regression
with the default Python 2.7.3 should be considered a bug.
Modified:
openoffice/trunk/main/l10ntools/scripts/tool/const.py
openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py
openoffice/trunk/main/l10ntools/scripts/tool/pseudo.py
openoffice/trunk/main/l10ntools/scripts/tool/sdf.py
openoffice/trunk/main/l10ntools/scripts/tool/xtxex.py
openoffice/trunk/main/sc/workben/celltrans/parse.py
openoffice/trunk/main/scripting/source/pyprov/mailmerge.py
openoffice/trunk/main/testtools/source/bridgetest/pyuno/core.py
openoffice/trunk/main/toolkit/src2xml/source/boxer.py
openoffice/trunk/main/toolkit/src2xml/source/expression.py
openoffice/trunk/main/toolkit/src2xml/source/globals.py
openoffice/trunk/main/toolkit/src2xml/source/macroexpander_test.py
openoffice/trunk/main/toolkit/src2xml/source/macroparser.py
openoffice/trunk/main/toolkit/src2xml/source/src2xml.py
openoffice/trunk/main/toolkit/src2xml/source/srclexer.py
openoffice/trunk/main/toolkit/src2xml/source/srcparser.py
openoffice/trunk/main/ucb/source/ucp/ftp/test.py
Modified: openoffice/trunk/main/l10ntools/scripts/tool/const.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/const.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/l10ntools/scripts/tool/const.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/const.py Tue Dec 18 21:36:34
2012
@@ -23,8 +23,8 @@
class _const:
class ConstError(TypeError): pass
def __setattr__(self, name, value):
- if self.__dict__.has_key(name):
- raise self.ConstError, "Can't rebind const(%s)"%name
+ if name in self.__dict__:
+ raise self.ConstError("Can't rebind const(%s)"%name)
self.__dict__[name] = value
import sys
Modified: openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/l10ntool.py Tue Dec 18
21:36:34 2012
@@ -123,7 +123,7 @@ class AbstractL10nTool:
try:
shutil.copy(inputfilename, outputfilename)
except IOError:
- print "ERROR: Can not copy file '" + inputfilename + "' to " + "'"
+ outputfilename + "'"
+ print("ERROR: Can not copy file '" + inputfilename + "' to " + "'"
+ outputfilename + "'")
sys.exit(-1)
def extract(self):
@@ -131,7 +131,7 @@ class AbstractL10nTool:
f = open(self._options.outputfile, "w+")
f.write(self.extract_file(self._options.inputfile))
except IOError:
- print "ERROR: Can not write file " + self._options.outputfile
+ print("ERROR: Can not write file " + self._options.outputfile)
else:
f.close()
@@ -173,7 +173,7 @@ class AbstractL10nTool:
dir = filename[:filename.rfind('/')]
if os.path.exists(dir):
if os.path.isfile(dir):
- print "ERROR: There is a file '"+dir+"' where I want create a
directory"
+ print("ERROR: There is a file '"+dir+"' where I want create a
directory")
sys.exit(-1)
else:
return
@@ -181,7 +181,7 @@ class AbstractL10nTool:
try:
os.makedirs(dir)
except IOError:
- print "Error: Can not create dir " + dir
+ print("Error: Can not create dir " + dir)
sys.exit(-1)
def test_options(self):
@@ -191,7 +191,7 @@ class AbstractL10nTool:
( is_valid(opt.inputfile) and (( is_valid(opt.path_prefix) and
is_valid(opt.path_postfix) ) or is_valid(opt.outputfile)) and \
( ( is_valid(opt.input_sdf_file) and (
is_valid(opt.outputfile) or ( is_valid(opt.path_prefix) and
is_valid(opt.path_postfix) ) or \
( is_valid(opt.inputfile) and is_valid(opt.outputFile)) ))))
- print "Strange options ..."
+ print("Strange options ...")
sys.exit( -1 )
def read_inputfile_list(self):
@@ -201,7 +201,7 @@ class AbstractL10nTool:
f = open(self._options.inputfile[1:], "r")
lines = [line.strip('\n') for line in f.readlines()]
except IOError:
- print "ERROR: Can not read file list " +
self._options.inputfile[2:]
+ print("ERROR: Can not read file list " +
self._options.inputfile[2:])
sys.exit(-1)
else:
f.close()
Modified: openoffice/trunk/main/l10ntools/scripts/tool/pseudo.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/pseudo.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/l10ntools/scripts/tool/pseudo.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/pseudo.py Tue Dec 18 21:36:34
2012
@@ -38,7 +38,7 @@ class PseudoSet:
tmplist.extend(other)
return PseudoSet(self._remove_dupes(tmplist))
else:
- print "__or__(None)"
+ print("__or__(None)")
def __sub__(self,other):
tmplist = []
@@ -46,7 +46,7 @@ class PseudoSet:
tmplist.extend(self._list)
[tmplist.remove(key) for key in other if key in tmplist]
else:
- print "__sub__(none)"
+ print("__sub__(none)")
return PseudoSet(tmplist)
def __and__(self, other):
@@ -55,13 +55,13 @@ class PseudoSet:
[tmplist.append(key) for key in self._list if key in other]
return PseudoSet(tmplist)
else:
- print "__and__(None)"
+ print("__and__(None)")
def __iter__(self):
return self._list.__iter__()
def __items__(self):
- return self._list.items()
+ return list(self._list.items())
def __keys__(self):
return keys(self._list)
@@ -70,7 +70,7 @@ class PseudoSet:
tmpdict = {}
for key in list:
tmpdict[key] = 1
- return tmpdict.keys()
+ return list(tmpdict.keys())
# incomplete OrderedDict() class implementation
class PseudoOrderedDict(dict):
@@ -79,7 +79,7 @@ class PseudoOrderedDict(dict):
def __init__(self, defaults={}):
dict.__init__(self)
- for n,v in defaults.items():
+ for n,v in list(defaults.items()):
self[n] = v
def __setitem__(self, key, value):
@@ -105,10 +105,10 @@ class PseudoOrderedDict(dict):
def iteritems(self):
#return self._valuelist
- return zip(self._keylist, self._valuelist)
+ return list(zip(self._keylist, self._valuelist))
def items(self):
- return zip(self._keylist,self._valuelist)
+ return list(zip(self._keylist,self._valuelist))
def __keys__(self):
return self._keylist
@@ -140,23 +140,23 @@ def _testdriver_set():
list1.append("e")
if "a" in list:
- print "YEAH!"
+ print("YEAH!")
a = PseudoSet(list)
b = PseudoSet(list1)
- print "a="+str(a)
- print "b="+str(b)
- print "a|b=" + str(a|b)
- print "a="+str(a)
- print "b="+str(b)
- print "a&b=" + str(a&b)
- print "a="+str(a)
- print "b="+str(b)
- print "a-b" + str(a-b)
+ print("a="+str(a))
+ print("b="+str(b))
+ print("a|b=" + str(a|b))
+ print("a="+str(a))
+ print("b="+str(b))
+ print("a&b=" + str(a&b))
+ print("a="+str(a))
+ print("b="+str(b))
+ print("a-b" + str(a-b))
for key in a:
- print key
+ print(key)
def _testdriver_dict():
d = PseudoOrderedDict()
@@ -167,12 +167,12 @@ def _testdriver_dict():
d["e"] = 5
d["f"] = 6
- print "a="+str(d["a"])
- print "e="+str(d["e"])
- for key,value in d.iteritems():
- print "d["+key+"]="+str(d[key])
- print "key="+str(key)+" value="+str(value)
+ print("a="+str(d["a"]))
+ print("e="+str(d["e"]))
+ for key,value in d.items():
+ print("d["+key+"]="+str(d[key]))
+ print("key="+str(key)+" value="+str(value))
- print "keys="+str(d.keys())
+ print("keys="+str(list(d.keys())))
#_testdriver_dict()
Modified: openoffice/trunk/main/l10ntools/scripts/tool/sdf.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/sdf.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/l10ntools/scripts/tool/sdf.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/sdf.py Tue Dec 18 21:36:34 2012
@@ -31,13 +31,13 @@ class SdfData:
self._filename = filename
def __getitem__(self, key):
- if self._dict.has_key(key):
+ if key in self._dict:
return self._dict[key]
else:
return None
def has_key(self, key):
- return self._dict.has_key(key)
+ return key in self._dict
def __setitem__(self, key, value):
self._dict[key] = value
@@ -50,7 +50,7 @@ class SdfData:
f = open(self._filename, "r")
lines = [line.rstrip('\n') for line in f.readlines()]
except IOError:
- print "ERROR: Trying to read "+ self._filename
+ print("ERROR: Trying to read "+ self._filename)
raise
else:
f.close()
@@ -63,11 +63,11 @@ class SdfData:
def write(self, filename):
try:
f = open(filename, "w+")
- for value in self._dict.itervalues():
+ for value in self._dict.values():
#f.write( repr(value)+"\n" )
f.write(value + "\n")
except IOError:
- print "ERROR: Trying to write " + filename
+ print("ERROR: Trying to write " + filename)
raise
else:
f.close()
Modified: openoffice/trunk/main/l10ntools/scripts/tool/xtxex.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/tool/xtxex.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/l10ntools/scripts/tool/xtxex.py (original)
+++ openoffice/trunk/main/l10ntools/scripts/tool/xtxex.py Tue Dec 18 21:36:34
2012
@@ -39,14 +39,14 @@ class Xtxex(AbstractL10nTool):
return
# merge usual lang
sdfline = self.prepare_sdf_line(inputfilename,lang)
- if sdfdata.has_key(sdfline.get_id()):
+ if sdfline.get_id() in sdfdata:
line = sdfdata[sdfline.get_id()].text.replace("\\n", '\n')
self.make_dirs(outputfilename)
try:
f = open(outputfilename, "w+")
f.write(line)
except IOError:
- print "ERROR: Can not write file " + outputfilename
+ print("ERROR: Can not write file " + outputfilename)
sys.exit(-1)
else:
f.close()
@@ -62,7 +62,7 @@ class Xtxex(AbstractL10nTool):
f = open(inputfile, "r")
lines = f.readlines()
except IOError:
- print "ERROR: Can not open file " + inputfile
+ print("ERROR: Can not open file " + inputfile)
sys.exit(-1)
else:
f.close()
Modified: openoffice/trunk/main/sc/workben/celltrans/parse.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/workben/celltrans/parse.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/sc/workben/celltrans/parse.py (original)
+++ openoffice/trunk/main/sc/workben/celltrans/parse.py Tue Dec 18 21:36:34 2012
@@ -25,7 +25,7 @@ import sys
localeNames = {'fr': 'French', 'hu': 'Hungarian', 'de': 'German'}
def getLocaleName (code):
global localeNames
- if localeNames.has_key(code):
+ if code in localeNames:
return localeNames[code]
else:
return "(unknown locale)"
@@ -42,7 +42,7 @@ class LocaleData(object):
self.funcList = {}
def addKeywordMap (self, funcName, localeName, engName):
- if not self.funcList.has_key(funcName):
+ if funcName not in self.funcList:
self.funcList[funcName] = []
self.funcList[funcName].append([localeName, engName])
@@ -136,7 +136,7 @@ class Parser(object):
for item in buf:
sys.stdout.write(chr(item))
if linefeed:
- print ''
+ print('')
def parse (self):
Modified: openoffice/trunk/main/scripting/source/pyprov/mailmerge.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/scripting/source/pyprov/mailmerge.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/scripting/source/pyprov/mailmerge.py (original)
+++ openoffice/trunk/main/scripting/source/pyprov/mailmerge.py Tue Dec 18
21:36:34 2012
@@ -76,39 +76,39 @@ class PyMailSMTPService(unohelper.Base,
self.connectioncontext = None
self.notify = EventObject(self)
if dbg:
- print >> sys.stderr, "PyMailSMPTService init"
+ print("PyMailSMPTService init", file=sys.stderr)
def addConnectionListener(self, xListener):
if dbg:
- print >> sys.stderr, "PyMailSMPTService addConnectionListener"
+ print("PyMailSMPTService addConnectionListener", file=sys.stderr)
self.listeners.append(xListener)
def removeConnectionListener(self, xListener):
if dbg:
- print >> sys.stderr, "PyMailSMPTService removeConnectionListener"
+ print("PyMailSMPTService removeConnectionListener",
file=sys.stderr)
self.listeners.remove(xListener)
def getSupportedConnectionTypes(self):
if dbg:
- print >> sys.stderr, "PyMailSMPTService
getSupportedConnectionTypes"
+ print("PyMailSMPTService getSupportedConnectionTypes",
file=sys.stderr)
return self.supportedtypes
def connect(self, xConnectionContext, xAuthenticator):
self.connectioncontext = xConnectionContext
if dbg:
- print >> sys.stderr, "PyMailSMPTService connect"
+ print("PyMailSMPTService connect", file=sys.stderr)
server = xConnectionContext.getValueByName("ServerName")
if dbg:
- print >> sys.stderr, "ServerName: %s" % server
+ print("ServerName: %s" % server, file=sys.stderr)
port = xConnectionContext.getValueByName("Port")
if dbg:
- print >> sys.stderr, "Port: %d" % port
+ print("Port: %d" % port, file=sys.stderr)
tout = xConnectionContext.getValueByName("Timeout")
if dbg:
- print >> sys.stderr, isinstance(tout,int)
+ print(isinstance(tout,int), file=sys.stderr)
if not isinstance(tout,int):
tout = _GLOBAL_DEFAULT_TIMEOUT
if dbg:
- print >> sys.stderr, "Timeout: %s" % str(tout)
+ print("Timeout: %s" % str(tout), file=sys.stderr)
self.server = smtplib.SMTP(server, port,timeout=tout)
if dbg:
@@ -116,7 +116,7 @@ class PyMailSMTPService(unohelper.Base,
connectiontype = xConnectionContext.getValueByName("ConnectionType")
if dbg:
- print >> sys.stderr, "ConnectionType: %s" % connectiontype
+ print("ConnectionType: %s" % connectiontype, file=sys.stderr)
if connectiontype.upper() == 'SSL':
self.server.ehlo()
@@ -127,14 +127,14 @@ class PyMailSMTPService(unohelper.Base,
password = xAuthenticator.getPassword().encode('ascii')
if user != '':
if dbg:
- print >> sys.stderr, 'Logging in, username of', user
+ print('Logging in, username of', user, file=sys.stderr)
self.server.login(user, password)
for listener in self.listeners:
listener.connected(self.notify)
def disconnect(self):
if dbg:
- print >> sys.stderr, "PyMailSMPTService disconnect"
+ print("PyMailSMPTService disconnect", file=sys.stderr)
if self.server:
self.server.quit()
self.server = None
@@ -142,17 +142,17 @@ class PyMailSMTPService(unohelper.Base,
listener.disconnected(self.notify)
def isConnected(self):
if dbg:
- print >> sys.stderr, "PyMailSMPTService isConnected"
+ print("PyMailSMPTService isConnected", file=sys.stderr)
return self.server != None
def getCurrentConnectionContext(self):
if dbg:
- print >> sys.stderr, "PyMailSMPTService
getCurrentConnectionContext"
+ print("PyMailSMPTService getCurrentConnectionContext",
file=sys.stderr)
return self.connectioncontext
def sendMailMessage(self, xMailMessage):
COMMASPACE = ', '
if dbg:
- print >> sys.stderr, "PyMailSMPTService sendMailMessage"
+ print("PyMailSMPTService sendMailMessage", file=sys.stderr)
recipients = xMailMessage.getRecipients()
sendermail = xMailMessage.SenderAddress
sendername = xMailMessage.SenderName
@@ -160,10 +160,10 @@ class PyMailSMTPService(unohelper.Base,
ccrecipients = xMailMessage.getCcRecipients()
bccrecipients = xMailMessage.getBccRecipients()
if dbg:
- print >> sys.stderr, "PyMailSMPTService subject", subject
- print >> sys.stderr, "PyMailSMPTService from",
sendername.encode('utf-8')
- print >> sys.stderr, "PyMailSMTPService from", sendermail
- print >> sys.stderr, "PyMailSMPTService send to", recipients
+ print("PyMailSMPTService subject", subject, file=sys.stderr)
+ print("PyMailSMPTService from", sendername.encode('utf-8'),
file=sys.stderr)
+ print("PyMailSMTPService from", sendermail, file=sys.stderr)
+ print("PyMailSMPTService send to", recipients, file=sys.stderr)
attachments = xMailMessage.getAttachments()
@@ -172,13 +172,13 @@ class PyMailSMTPService(unohelper.Base,
content = xMailMessage.Body
flavors = content.getTransferDataFlavors()
if dbg:
- print >> sys.stderr, "PyMailSMPTService flavors len", len(flavors)
+ print("PyMailSMPTService flavors len", len(flavors),
file=sys.stderr)
#Use first flavor that's sane for an email body
for flavor in flavors:
if flavor.MimeType.find('text/html') != -1 or
flavor.MimeType.find('text/plain') != -1:
if dbg:
- print >> sys.stderr, "PyMailSMPTService mimetype is",
flavor.MimeType
+ print("PyMailSMPTService mimetype is", flavor.MimeType,
file=sys.stderr)
textbody = content.getTransferData(flavor)
try:
textbody = textbody.value
@@ -258,10 +258,10 @@ class PyMailSMTPService(unohelper.Base,
if len(bccrecipients):
for key in bccrecipients:
uniquer[key] = True
- truerecipients = uniquer.keys()
+ truerecipients = list(uniquer.keys())
if dbg:
- print >> sys.stderr, "PyMailSMPTService recipients are",
truerecipients
+ print("PyMailSMPTService recipients are", truerecipients,
file=sys.stderr)
self.server.sendmail(sendermail, truerecipients, msg.as_string())
@@ -274,52 +274,52 @@ class PyMailIMAPService(unohelper.Base,
self.connectioncontext = None
self.notify = EventObject(self)
if dbg:
- print >> sys.stderr, "PyMailIMAPService init"
+ print("PyMailIMAPService init", file=sys.stderr)
def addConnectionListener(self, xListener):
if dbg:
- print >> sys.stderr, "PyMailIMAPService addConnectionListener"
+ print("PyMailIMAPService addConnectionListener", file=sys.stderr)
self.listeners.append(xListener)
def removeConnectionListener(self, xListener):
if dbg:
- print >> sys.stderr, "PyMailIMAPService removeConnectionListener"
+ print("PyMailIMAPService removeConnectionListener",
file=sys.stderr)
self.listeners.remove(xListener)
def getSupportedConnectionTypes(self):
if dbg:
- print >> sys.stderr, "PyMailIMAPService
getSupportedConnectionTypes"
+ print("PyMailIMAPService getSupportedConnectionTypes",
file=sys.stderr)
return self.supportedtypes
def connect(self, xConnectionContext, xAuthenticator):
if dbg:
- print >> sys.stderr, "PyMailIMAPService connect"
+ print("PyMailIMAPService connect", file=sys.stderr)
self.connectioncontext = xConnectionContext
server = xConnectionContext.getValueByName("ServerName")
if dbg:
- print >> sys.stderr, server
+ print(server, file=sys.stderr)
port = xConnectionContext.getValueByName("Port")
if dbg:
- print >> sys.stderr, port
+ print(port, file=sys.stderr)
connectiontype = xConnectionContext.getValueByName("ConnectionType")
if dbg:
- print >> sys.stderr, connectiontype
- print >> sys.stderr, "BEFORE"
+ print(connectiontype, file=sys.stderr)
+ print("BEFORE", file=sys.stderr)
if connectiontype.upper() == 'SSL':
self.server = imaplib.IMAP4_SSL(server, port)
else:
self.server = imaplib.IMAP4(server, port)
- print >> sys.stderr, "AFTER"
+ print("AFTER", file=sys.stderr)
user = xAuthenticator.getUserName().encode('ascii')
password = xAuthenticator.getPassword().encode('ascii')
if user != '':
if dbg:
- print >> sys.stderr, 'Logging in, username of', user
+ print('Logging in, username of', user, file=sys.stderr)
self.server.login(user, password)
for listener in self.listeners:
listener.connected(self.notify)
def disconnect(self):
if dbg:
- print >> sys.stderr, "PyMailIMAPService disconnect"
+ print("PyMailIMAPService disconnect", file=sys.stderr)
if self.server:
self.server.logout()
self.server = None
@@ -327,11 +327,11 @@ class PyMailIMAPService(unohelper.Base,
listener.disconnected(self.notify)
def isConnected(self):
if dbg:
- print >> sys.stderr, "PyMailIMAPService isConnected"
+ print("PyMailIMAPService isConnected", file=sys.stderr)
return self.server != None
def getCurrentConnectionContext(self):
if dbg:
- print >> sys.stderr, "PyMailIMAPService
getCurrentConnectionContext"
+ print("PyMailIMAPService getCurrentConnectionContext",
file=sys.stderr)
return self.connectioncontext
class PyMailPOP3Service(unohelper.Base, XMailService):
@@ -343,51 +343,51 @@ class PyMailPOP3Service(unohelper.Base,
self.connectioncontext = None
self.notify = EventObject(self)
if dbg:
- print >> sys.stderr, "PyMailPOP3Service init"
+ print("PyMailPOP3Service init", file=sys.stderr)
def addConnectionListener(self, xListener):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service addConnectionListener"
+ print("PyMailPOP3Service addConnectionListener", file=sys.stderr)
self.listeners.append(xListener)
def removeConnectionListener(self, xListener):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service removeConnectionListener"
+ print("PyMailPOP3Service removeConnectionListener",
file=sys.stderr)
self.listeners.remove(xListener)
def getSupportedConnectionTypes(self):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service
getSupportedConnectionTypes"
+ print("PyMailPOP3Service getSupportedConnectionTypes",
file=sys.stderr)
return self.supportedtypes
def connect(self, xConnectionContext, xAuthenticator):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service connect"
+ print("PyMailPOP3Service connect", file=sys.stderr)
self.connectioncontext = xConnectionContext
server = xConnectionContext.getValueByName("ServerName")
if dbg:
- print >> sys.stderr, server
+ print(server, file=sys.stderr)
port = xConnectionContext.getValueByName("Port")
if dbg:
- print >> sys.stderr, port
+ print(port, file=sys.stderr)
connectiontype = xConnectionContext.getValueByName("ConnectionType")
if dbg:
- print >> sys.stderr, connectiontype
- print >> sys.stderr, "BEFORE"
+ print(connectiontype, file=sys.stderr)
+ print("BEFORE", file=sys.stderr)
if connectiontype.upper() == 'SSL':
self.server = poplib.POP3_SSL(server, port)
else:
tout = xConnectionContext.getValueByName("Timeout")
if dbg:
- print >> sys.stderr, isinstance(tout,int)
+ print(isinstance(tout,int), file=sys.stderr)
if not isinstance(tout,int):
tout = _GLOBAL_DEFAULT_TIMEOUT
if dbg:
- print >> sys.stderr, "Timeout: %s" % str(tout)
+ print("Timeout: %s" % str(tout), file=sys.stderr)
self.server = poplib.POP3(server, port, timeout=tout)
- print >> sys.stderr, "AFTER"
+ print("AFTER", file=sys.stderr)
user = xAuthenticator.getUserName().encode('ascii')
password = xAuthenticator.getPassword().encode('ascii')
if dbg:
- print >> sys.stderr, 'Logging in, username of', user
+ print('Logging in, username of', user, file=sys.stderr)
self.server.user(user)
self.server.pass_(password)
@@ -395,7 +395,7 @@ class PyMailPOP3Service(unohelper.Base,
listener.connected(self.notify)
def disconnect(self):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service disconnect"
+ print("PyMailPOP3Service disconnect", file=sys.stderr)
if self.server:
self.server.quit()
self.server = None
@@ -403,21 +403,21 @@ class PyMailPOP3Service(unohelper.Base,
listener.disconnected(self.notify)
def isConnected(self):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service isConnected"
+ print("PyMailPOP3Service isConnected", file=sys.stderr)
return self.server != None
def getCurrentConnectionContext(self):
if dbg:
- print >> sys.stderr, "PyMailPOP3Service
getCurrentConnectionContext"
+ print("PyMailPOP3Service getCurrentConnectionContext",
file=sys.stderr)
return self.connectioncontext
class PyMailServiceProvider(unohelper.Base, XMailServiceProvider):
def __init__( self, ctx ):
if dbg:
- print >> sys.stderr, "PyMailServiceProvider init"
+ print("PyMailServiceProvider init", file=sys.stderr)
self.ctx = ctx
def create(self, aType):
if dbg:
- print >> sys.stderr, "PyMailServiceProvider create with", aType
+ print("PyMailServiceProvider create with", aType, file=sys.stderr)
if aType == SMTP:
return PyMailSMTPService(self.ctx);
elif aType == POP3:
@@ -425,12 +425,12 @@ class PyMailServiceProvider(unohelper.Ba
elif aType == IMAP:
return PyMailIMAPService(self.ctx);
else:
- print >> sys.stderr, "PyMailServiceProvider, unknown TYPE", aType
+ print("PyMailServiceProvider, unknown TYPE", aType,
file=sys.stderr)
class PyMailMessage(unohelper.Base, XMailMessage):
def __init__( self, ctx, sTo='', sFrom='', Subject='', Body=None,
aMailAttachment=None ):
if dbg:
- print >> sys.stderr, "PyMailMessage init"
+ print("PyMailMessage init", file=sys.stderr)
self.ctx = ctx
self.recipients = [sTo]
@@ -445,38 +445,38 @@ class PyMailMessage(unohelper.Base, XMai
self.Subject = Subject
self.Body = Body
if dbg:
- print >> sys.stderr, "post PyMailMessage init"
+ print("post PyMailMessage init", file=sys.stderr)
def addRecipient( self, recipient ):
if dbg:
- print >> sys.stderr, "PyMailMessage.addRecipient", recipient
+ print("PyMailMessage.addRecipient", recipient, file=sys.stderr)
self.recipients.append(recipient)
def addCcRecipient( self, ccrecipient ):
if dbg:
- print >> sys.stderr, "PyMailMessage.addCcRecipient", ccrecipient
+ print("PyMailMessage.addCcRecipient", ccrecipient, file=sys.stderr)
self.ccrecipients.append(ccrecipient)
def addBccRecipient( self, bccrecipient ):
if dbg:
- print >> sys.stderr, "PyMailMessage.addBccRecipient", bccrecipient
+ print("PyMailMessage.addBccRecipient", bccrecipient,
file=sys.stderr)
self.bccrecipients.append(bccrecipient)
def getRecipients( self ):
if dbg:
- print >> sys.stderr, "PyMailMessage.getRecipients", self.recipients
+ print("PyMailMessage.getRecipients", self.recipients,
file=sys.stderr)
return tuple(self.recipients)
def getCcRecipients( self ):
if dbg:
- print >> sys.stderr, "PyMailMessage.getCcRecipients",
self.ccrecipients
+ print("PyMailMessage.getCcRecipients", self.ccrecipients,
file=sys.stderr)
return tuple(self.ccrecipients)
def getBccRecipients( self ):
if dbg:
- print >> sys.stderr, "PyMailMessage.getBccRecipients",
self.bccrecipients
+ print("PyMailMessage.getBccRecipients", self.bccrecipients,
file=sys.stderr)
return tuple(self.bccrecipients)
def addAttachment( self, aMailAttachment ):
if dbg:
- print >> sys.stderr, "PyMailMessage.addAttachment"
+ print("PyMailMessage.addAttachment", file=sys.stderr)
self.aMailAttachments.append(aMailAttachment)
def getAttachments( self ):
if dbg:
- print >> sys.stderr, "PyMailMessage.getAttachments"
+ print("PyMailMessage.getAttachments", file=sys.stderr)
return tuple(self.aMailAttachments)
Modified: openoffice/trunk/main/testtools/source/bridgetest/pyuno/core.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/testtools/source/bridgetest/pyuno/core.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/testtools/source/bridgetest/pyuno/core.py (original)
+++ openoffice/trunk/main/testtools/source/bridgetest/pyuno/core.py Tue Dec 18
21:36:34 2012
@@ -211,7 +211,7 @@ class TestCase( unittest.TestCase):
wasHere = 0
try:
raise ioExc( "huhuh" , self.tobj )
- except unoExc , instance:
+ except unoExc as instance:
wasHere = 1
self.failUnless( wasHere , "exceptiont test 1" )
@@ -239,7 +239,7 @@ class TestCase( unittest.TestCase):
self.failUnless( 0 , "exception test 5a" )
except ioExc:
self.failUnless( 0 , "exception test 5b" )
- except illegalArg, i:
+ except illegalArg as i:
self.failUnless( 1 == i.ArgumentPosition , "exception member
test" )
self.failUnless( "foo" == i.Message , "exception member test 2
" )
wasHere = 1
Modified: openoffice/trunk/main/toolkit/src2xml/source/boxer.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/boxer.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/boxer.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/boxer.py Tue Dec 18 21:36:34
2012
@@ -31,7 +31,7 @@ class DlgLayoutBuilder(object):
def addWidget (self, elem):
x, y = int(elem.getAttr('x')), int(elem.getAttr('y'))
self.rows[y] = self.rows.get (y, {})
- while self.rows[y].has_key(x):
+ while x in self.rows[y]:
y += 1
self.rows[y] = self.rows.get (y, {})
self.rows[y][x] = elem
Modified: openoffice/trunk/main/toolkit/src2xml/source/expression.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/expression.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/expression.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/expression.py Tue Dec 18
21:36:34 2012
@@ -125,4 +125,4 @@ class ExpParser(object):
def dumpTree (self):
self.jumpToRoot()
- print toString(self.ptr)
+ print(toString(self.ptr))
Modified: openoffice/trunk/main/toolkit/src2xml/source/globals.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/globals.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/globals.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/globals.py Tue Dec 18 21:36:34
2012
@@ -108,7 +108,7 @@ class Element(Node):
return chars
def hasAttr (self, name):
- return self.attrs.has_key(name)
+ return name in self.attrs
def getAttr (self, name):
return self.attrs[name]
@@ -121,7 +121,7 @@ class Element(Node):
return
def clone (self, elem):
- keys = elem.attrs.keys()
+ keys = list(elem.attrs.keys())
for key in keys:
self.attrs[key] = elem.attrs[key]
self.rid = elem.rid
Modified: openoffice/trunk/main/toolkit/src2xml/source/macroexpander_test.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/macroexpander_test.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/macroexpander_test.py
(original)
+++ openoffice/trunk/main/toolkit/src2xml/source/macroexpander_test.py Tue Dec
18 21:36:34 2012
@@ -31,7 +31,7 @@ class TestCase:
mcExpander.debug = True
mcExpander.expand()
tokens = mcExpander.getTokens()
- print tokens
+ print(tokens)
@staticmethod
def simpleNoArgs ():
@@ -79,13 +79,13 @@ class TestCase:
TestCase.run(tokens, defines)
def main ():
- print "simple expansion with no arguments"
+ print("simple expansion with no arguments")
TestCase.simpleNoArgs()
- print "simple argument expansion"
+ print("simple argument expansion")
TestCase.simpleArgs()
- print "multi-token argument expansion"
+ print("multi-token argument expansion")
TestCase.multiTokenArgs()
- print "nested argument expansion"
+ print("nested argument expansion")
TestCase.nestedTokenArgs()
if __name__ == '__main__':
Modified: openoffice/trunk/main/toolkit/src2xml/source/macroparser.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/macroparser.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/macroparser.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/macroparser.py Tue Dec 18
21:36:34 2012
@@ -37,8 +37,8 @@ A macro with arguments must have its ope
its name without any whitespace.
"""
if self.debug:
- print "-"*68
- print "parsing '%s'"%self.buffer
+ print("-"*68)
+ print("parsing '%s'"%self.buffer)
i = 0
bufSize = len(self.buffer)
@@ -105,17 +105,17 @@ character is the open paren.
def setMacro (self, name, vars, content):
if self.debug:
- print "-"*68
- print "name: %s"%name
+ print("-"*68)
+ print("name: %s"%name)
for var in vars:
- print "var: %s"%var
+ print("var: %s"%var)
if len(vars) == 0:
- print "no vars"
- print "content: '%s'"%content
+ print("no vars")
+ print("content: '%s'"%content)
if len(content) > 0:
self.macro = Macro(name)
- for i in xrange(0, len(vars)):
+ for i in range(0, len(vars)):
self.macro.vars[vars[i]] = i
# tokinize it using lexer.
@@ -125,16 +125,16 @@ character is the open paren.
mclexer.tokenize()
self.macro.tokens = mclexer.getTokens()
if self.debug:
- print self.macro.tokens
+ print(self.macro.tokens)
if not self.isValidMacro(self.macro):
self.macro = None
if self.debug:
if self.macro != None:
- print "macro registered!"
+ print("macro registered!")
else:
- print "macro not registered"
+ print("macro not registered")
def isValidMacro (self, macro):
Modified: openoffice/trunk/main/toolkit/src2xml/source/src2xml.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/src2xml.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/src2xml.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/src2xml.py Tue Dec 18 21:36:34
2012
@@ -182,12 +182,12 @@ def dry_one_file (file_name, options):
try:
str = convert(file_name, options)
progress (" SUCCESS\n")
- except Exception, e:
+ except Exception as e:
if options.keep_going:
progress (" FAILED\n")
else:
import traceback
- print traceback.format_exc (None)
+ print(traceback.format_exc (None))
raise e
def post_process (s):
Modified: openoffice/trunk/main/toolkit/src2xml/source/srclexer.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/srclexer.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/srclexer.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/srclexer.py Tue Dec 18
21:36:34 2012
@@ -303,14 +303,14 @@ build the syntax tree.
self.handleMacroInclude(buf)
elif command == 'ifdef':
defineName = buf.strip()
- if self.defines.has_key(defineName):
+ if defineName in self.defines:
self.visibilityStack.append(SrcLexer.VISIBLE)
else:
self.visibilityStack.append(SrcLexer.INVISIBLE_PRE)
elif command == 'ifndef':
defineName = buf.strip()
- if self.defines.has_key(defineName):
+ if defineName in self.defines:
self.visibilityStack.append(SrcLexer.INVISIBLE_PRE)
else:
self.visibilityStack.append(SrcLexer.VISIBLE)
@@ -351,8 +351,8 @@ build the syntax tree.
elif command in ['error', 'pragma']:
pass
else:
- print "'%s' '%s'"%(command, buf)
- print self.filepath
+ print("'%s' '%s'"%(command, buf))
+ print(self.filepath)
sys.exit(0)
return i
@@ -407,10 +407,10 @@ build the syntax tree.
progress ("%s already included\n"%headerPath)
return
- if SrcLexer.headerCache.has_key(headerPath):
+ if headerPath in SrcLexer.headerCache:
if self.debug:
progress ("%s in cache\n"%headerPath)
- for key in SrcLexer.headerCache[headerPath].defines.keys():
+ for key in list(SrcLexer.headerCache[headerPath].defines.keys()):
self.defines[key] =
SrcLexer.headerCache[headerPath].defines[key]
return
@@ -422,7 +422,7 @@ build the syntax tree.
hdrData = HeaderData()
hdrData.tokens = mclexer.getTokens()
headerDefines = mclexer.getDefines()
- for key in headerDefines.keys():
+ for key in list(headerDefines.keys()):
defines[key] = headerDefines[key]
hdrData.defines[key] = headerDefines[key]
@@ -430,15 +430,15 @@ build the syntax tree.
SrcLexer.headerCache[headerPath] = hdrData
# Update the list of headers that have already been expaneded.
- for key in mclexer.headerDict.keys():
+ for key in list(mclexer.headerDict.keys()):
self.headerDict[key] = True
if self.debug:
progress ("defines found in header %s:\n"%headerSub)
- for key in defines.keys():
+ for key in list(defines.keys()):
progress (" '%s'\n"%key)
- for key in defines.keys():
+ for key in list(defines.keys()):
self.defines[key] = defines[key]
Modified: openoffice/trunk/main/toolkit/src2xml/source/srcparser.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/src2xml/source/srcparser.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/toolkit/src2xml/source/srcparser.py (original)
+++ openoffice/trunk/main/toolkit/src2xml/source/srcparser.py Tue Dec 18
21:36:34 2012
@@ -108,12 +108,12 @@ class MacroExpander(object):
def expandToken (self):
token = self.tokens[self.pos]
- if not self.defines.has_key(token):
+ if token not in self.defines:
self.pos += 1
return
macro = self.defines[token]
- nvars = len(macro.vars.keys())
+ nvars = len(list(macro.vars.keys()))
if nvars == 0:
# Simple expansion
self.tokens[self.pos:self.pos+1] = macro.tokens
@@ -123,7 +123,7 @@ class MacroExpander(object):
values, lastPos = self.parseValues()
newtokens = []
for mtoken in macro.tokens:
- if macro.vars.has_key(mtoken):
+ if mtoken in macro.vars:
# variable
pos = macro.vars[mtoken]
valtokens = values[pos]
@@ -155,15 +155,15 @@ words, whitespace does not end a token.
tk = self.tokens[self.pos+i]
except IndexError:
progress ("error parsing values (%d)\n"%i)
- for j in xrange(0, i):
- print self.tokens[self.pos+j],
- print ''
+ for j in range(0, i):
+ print(self.tokens[self.pos+j], end=' ')
+ print('')
srclexer.dumpTokens(self.tokens)
srclexer.dumpTokens(self.newtokens)
- print "tokens expanded so far:"
+ print("tokens expanded so far:")
for tk in self.expandedTokens:
- print "-"*20
- print tk
+ print("-"*20)
+ print(tk)
srclexer.dumpTokens(self.defines[tk].tokens)
sys.exit(1)
if tk == '(':
@@ -207,7 +207,7 @@ class SrcParser(object):
# Expand defined macros.
if self.debug:
progress ("-"*68+"\n")
- for key in self.defines.keys():
+ for key in list(self.defines.keys()):
progress ("define: %s\n"%key)
self.expandMacro()
@@ -314,7 +314,7 @@ handler.
def closeBrace (self, i):
if len(self.tokenBuf) > 0:
if self.debug:
- print self.tokenBuf
+ print(self.tokenBuf)
raise ParseError ('')
self.elementStack.pop()
return i
Modified: openoffice/trunk/main/ucb/source/ucp/ftp/test.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/ftp/test.py?rev=1423676&r1=1423675&r2=1423676&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/ftp/test.py (original)
+++ openoffice/trunk/main/ucb/source/ucp/ftp/test.py Tue Dec 18 21:36:34 2012
@@ -29,7 +29,7 @@ def grep(pattern,dirname,names):
lines = open(filename,"r").readlines()
for line in lines:
if pattern.search(line):
- print filename
+ print(filename)
break