[pywin32-checkins] /hgroot/pywin32/pywin32: Remove Python 2.2 compat hack as it cau...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2015-05-20 07:32:25
|
changeset 575a76a7789b in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=575a76a7789b summary: Remove Python 2.2 compat hack as it cause Python 3.x compat issues! (bug 690) diffstat: com/win32comext/mapi/demos/mapisend.py | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diffs (14 lines): diff -r b06d711ff578 -r 575a76a7789b com/win32comext/mapi/demos/mapisend.py --- a/com/win32comext/mapi/demos/mapisend.py Wed May 20 17:06:03 2015 +1000 +++ b/com/win32comext/mapi/demos/mapisend.py Wed May 20 17:31:53 2015 +1000 @@ -9,10 +9,6 @@ from win32com.mapi import mapi from win32com.mapi import mapitags -# Pre 2.2.1 compat. -try: True, False -except NameError: True = 1==1; False = 1==0 - def SendEMAPIMail(Subject="", Message="", SendTo=None, SendCC=None, SendBCC=None, MAPIProfile=None): """Sends an email to the recipient using the extended MAPI interface Subject and Message are strings |