Re: [pywin32-checkins] /hgroot/pywin32/pywin32: Remove decimal_23 (opening salvo for re...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Vern C. <kf...@ya...> - 2013-04-08 05:20:28
|
I have now manually merged these changes into the other copy of the adodbapi source. I had missed the one in adodbapitest.py -- thank you so much for finding it! I am in the midst of a major update to adodbapi. All of the bugs in the tracker have been taken care of. Any remaining incompatibilities with django will be removed and django-mssql refactored to call our fork of adodbapi. This is expected to lead to the inclusion of SQL Server support as part of mainstream django! Without your help, it would not have happened. -- Vernon ________________________________ From: "pyw...@li..." <pyw...@li...> To: pyw...@li... Sent: Sunday, April 7, 2013 9:56 PM Subject: [pywin32-checkins] /hgroot/pywin32/pywin32: Remove decimal_23 (opening salvo for re... changeset ce279fb3d610 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=ce279fb3d610 summary: Remove decimal_23 (opening salvo for removing python 2.3 support) diffstat: adodbapi/adodbapi.py | 5 +- adodbapi/test/adodbapitest.py | 7 +- com/win32com/decimal_23.py | 3047 ------------------------------------ com/win32com/readme.htm | 14 - com/win32com/src/PyComHelpers.cpp | 6 - com/win32com/test/testPyComTest.py | 8 +- setup.py | 4 +- 7 files changed, 7 insertions(+), 3084 deletions(-) diffs (truncated from 3159 to 300 lines): diff -r 461250d92627 -r ce279fb3d610 adodbapi/adodbapi.py --- a/adodbapi/adodbapi.py Sun Apr 07 19:11:08 2013 -0400 +++ b/adodbapi/adodbapi.py Sun Apr 07 23:55:50 2013 -0400 @@ -40,10 +40,7 @@ #import traceback import datetime -try: - import decimal -except ImportError: #perhaps running Cpython 2.3 - import win32com.decimal_23 as decimal +import decimal # or # from django.utils import _decimal as decimal |