]> granicus.if.org Git - python/log
python
17 years agoUse a versionchanged directive.
Brett Cannon [Sun, 9 Dec 2007 05:09:37 +0000 (05:09 +0000)]
Use a versionchanged directive.

17 years agoAdapt style.
Georg Brandl [Sat, 8 Dec 2007 17:56:07 +0000 (17:56 +0000)]
Adapt style.

17 years agoWhen splitting, avoid making a copy of the string if the split doesn't find
Skip Montanaro [Sat, 8 Dec 2007 15:33:24 +0000 (15:33 +0000)]
When splitting, avoid making a copy of the string if the split doesn't find
anything (issue 1538).

17 years agocorrect email address
Skip Montanaro [Sat, 8 Dec 2007 15:26:16 +0000 (15:26 +0000)]
correct email address

17 years ago+ "context manager"
Skip Montanaro [Sat, 8 Dec 2007 15:23:31 +0000 (15:23 +0000)]
+ "context manager"

17 years agoNote that open() is the preferred way to open files (issue 1510).
Skip Montanaro [Sat, 8 Dec 2007 14:37:43 +0000 (14:37 +0000)]
Note that open() is the preferred way to open files (issue 1510).

17 years agoAdd examples to the datetime documentation. Written for GHOP by "h4wk.cz".
Georg Brandl [Sat, 8 Dec 2007 11:23:13 +0000 (11:23 +0000)]
Add examples to the datetime documentation. Written for GHOP by "h4wk.cz".

17 years agoFix Eren's name.
Georg Brandl [Sat, 8 Dec 2007 11:05:36 +0000 (11:05 +0000)]
Fix Eren's name.

17 years agoFix markup in whatsnew, use new directive in ACKS.
Georg Brandl [Sat, 8 Dec 2007 11:05:05 +0000 (11:05 +0000)]
Fix markup in whatsnew, use new directive in ACKS.

17 years agoFix tpyo.
Georg Brandl [Sat, 8 Dec 2007 10:56:39 +0000 (10:56 +0000)]
Fix tpyo.

17 years agoFix issue #1530.
Alexandre Vassalotti [Sat, 8 Dec 2007 04:49:22 +0000 (04:49 +0000)]
Fix issue #1530.
Return an error exit status if not all tests passes.

17 years agoBe (just a bit :) more specific about release date.
Guido van Rossum [Sat, 8 Dec 2007 04:38:23 +0000 (04:38 +0000)]
Be (just a bit :) more specific about release date.

17 years agoThis is probably what was meant here.
Armin Rigo [Fri, 7 Dec 2007 19:19:55 +0000 (19:19 +0000)]
This is probably what was meant here.

17 years agoUpdate to windows doc from Robert.
Georg Brandl [Fri, 7 Dec 2007 15:16:57 +0000 (15:16 +0000)]
Update to windows doc from Robert.

17 years agoIncrease unit test coverage of SimpleXMLRPCServer.
Georg Brandl [Fri, 7 Dec 2007 09:07:10 +0000 (09:07 +0000)]
Increase unit test coverage of SimpleXMLRPCServer.
Written for GHOP by Turkay Eren.

17 years agoDon't have the docs berate themselves. Keep a professional tone.
Raymond Hettinger [Fri, 7 Dec 2007 01:53:01 +0000 (01:53 +0000)]
Don't have the docs berate themselves.  Keep a professional tone.
If a todo is needed, put it in the tracker.

17 years agoSeveral Windows related cleanups:
Christian Heimes [Thu, 6 Dec 2007 21:13:06 +0000 (21:13 +0000)]
Several Windows related cleanups:
* Removed a #define from pyconfig.h. The macro was already defined a few lines higher.
* Fixed path to tix in the build_tkinter.py script
* Changed make_buildinfo.c to use versions of unlink and strcat which are considered safe by Windows (as suggested by MvL).
* Removed two defines from pyproject.vsprops that are no longer required. Both are defined in pyconfig.h and make_buildinfo.c doesn't use the unsafe versions any more (as suggested by MvL).
* Added some more information about PGO and the property files to PCbuild9/readme.txt.

Are you fine with the changes, Martin?

17 years agoDisabled one test that is failing on Unix
Christian Heimes [Thu, 6 Dec 2007 13:55:01 +0000 (13:55 +0000)]
Disabled one test that is failing on Unix

17 years agoSilence more warnings, _CRT_NONSTDC_NO_DEPRECATE is already defined in pyconfig.h...
Christian Heimes [Thu, 6 Dec 2007 13:30:11 +0000 (13:30 +0000)]
Silence more warnings, _CRT_NONSTDC_NO_DEPRECATE is already defined in pyconfig.h but several projects don't include it.

17 years agoFixed get_config_h_filename for Windows. Without the patch it can't find the pyconfig...
Christian Heimes [Thu, 6 Dec 2007 13:15:13 +0000 (13:15 +0000)]
Fixed get_config_h_filename for Windows. Without the patch it can't find the pyconfig.h file inside a build tree.
Added several small unit tests for sysconfig.

17 years agoBetter re.split examples.
Georg Brandl [Thu, 6 Dec 2007 09:45:39 +0000 (09:45 +0000)]
Better re.split examples.

17 years agoDiverse markup fixes.
Georg Brandl [Thu, 6 Dec 2007 01:52:24 +0000 (01:52 +0000)]
Diverse markup fixes.

17 years agoFix Issue 1045.
Raymond Hettinger [Thu, 6 Dec 2007 00:56:53 +0000 (00:56 +0000)]
Fix Issue 1045.
Factor-out common calling code by simplifying the length_hint API.
Speed-up the function by caching the PyObject_String for the attribute lookup.

17 years agoAdd another GHOP student to ACKS.
Georg Brandl [Thu, 6 Dec 2007 00:24:23 +0000 (00:24 +0000)]
Add another GHOP student to ACKS.

17 years agoThe macros _WIN32, _WIN64 and _M_X64 are defined by the compiler. The VS 2008 IDE...
Christian Heimes [Wed, 5 Dec 2007 21:57:25 +0000 (21:57 +0000)]
The macros _WIN32, _WIN64 and _M_X64 are defined by the compiler. The VS 2008 IDE doesn't know about (some) of the macros and can display wrong information. In my case a section #ifdef _WIN64 was grayed out although the platform was x64. I've added the macros to pyproject.vsprops and x64.vsprops.
I've also added a paragraph about the property files to the readme and fixed the order of pyupdate > pyinstrument.

17 years agoAdd Ross Light, a GHOP student, to ACKs.
Georg Brandl [Wed, 5 Dec 2007 21:52:40 +0000 (21:52 +0000)]
Add Ross Light, a GHOP student, to ACKs.

17 years agoFixed bug #1557 by using popen.communicate() before popen.wait()
Christian Heimes [Wed, 5 Dec 2007 20:10:38 +0000 (20:10 +0000)]
Fixed bug #1557 by using popen.communicate() before popen.wait()

17 years agoThis "fixes" compilation issues for the Carbon._OSA module on OSX Leopard
Ronald Oussoren [Wed, 5 Dec 2007 20:07:36 +0000 (20:07 +0000)]
This "fixes" compilation issues for the Carbon._OSA module on OSX Leopard
by purging bindings to OSA's debug API's. Those APIs we're completely
unsupported on OSX 10.4 and are no longer available on OSX 10.5.

Note that this patches a generated file. This is somewhat acceptable because
regenerating the file is non-trivial and wouldn't use system headers anyway.

17 years agoAnother markup fix.
Georg Brandl [Wed, 5 Dec 2007 20:03:57 +0000 (20:03 +0000)]
Another markup fix.

17 years agoUpdated documentation and build_tkinter.py script
Christian Heimes [Wed, 5 Dec 2007 19:57:54 +0000 (19:57 +0000)]
Updated documentation and build_tkinter.py script

17 years agoFix markup.
Georg Brandl [Wed, 5 Dec 2007 19:49:21 +0000 (19:49 +0000)]
Fix markup.

17 years agoAdd examples to re docs. Written for GHOP by Dan Finnie.
Georg Brandl [Wed, 5 Dec 2007 18:30:48 +0000 (18:30 +0000)]
Add examples to re docs. Written for GHOP by Dan Finnie.

17 years agoError checking was too aggressive (reported by Chris Tismer)
Raymond Hettinger [Wed, 5 Dec 2007 18:11:08 +0000 (18:11 +0000)]
Error checking was too aggressive (reported by Chris Tismer)

17 years agoAdd examples to csv, pprint and traceback docs.
Georg Brandl [Wed, 5 Dec 2007 17:56:50 +0000 (17:56 +0000)]
Add examples to csv, pprint and traceback docs.
Written by Ross for GHOP.

17 years agoSpelling fix
Andrew M. Kuchling [Wed, 5 Dec 2007 13:27:20 +0000 (13:27 +0000)]
Spelling fix

17 years agoAdded msg to Misc/NEWS
Christian Heimes [Wed, 5 Dec 2007 12:52:34 +0000 (12:52 +0000)]
Added msg to Misc/NEWS

17 years agomerge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can...
Christian Heimes [Wed, 5 Dec 2007 12:49:14 +0000 (12:49 +0000)]
merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError

17 years agoFixed error in regrtest. I must have missed the spot.
Christian Heimes [Wed, 5 Dec 2007 12:45:11 +0000 (12:45 +0000)]
Fixed error in regrtest. I must have missed the spot.

17 years agoFixed quoting and paths in the sqlite project file
Christian Heimes [Wed, 5 Dec 2007 12:31:44 +0000 (12:31 +0000)]
Fixed quoting and paths in the sqlite project file

17 years agoFix typo.
Georg Brandl [Wed, 5 Dec 2007 07:02:47 +0000 (07:02 +0000)]
Fix typo.

17 years agoThese optimizations create smaller and a bit faster code on my machine. I've also...
Christian Heimes [Tue, 4 Dec 2007 18:43:19 +0000 (18:43 +0000)]
These optimizations create smaller and a bit faster code on my machine. I've also disabled an optimization that may be dangerous. Intrinsic functions conflict with errno.

17 years agoAdd tutorial and examples to logging docs, from GHOP student "oscar8thegrouch".
Georg Brandl [Tue, 4 Dec 2007 17:46:27 +0000 (17:46 +0000)]
Add tutorial and examples to logging docs, from GHOP student "oscar8thegrouch".

17 years agoFix duplicate label and a typo.
Georg Brandl [Tue, 4 Dec 2007 16:50:28 +0000 (16:50 +0000)]
Fix duplicate label and a typo.

17 years agoAdded warning that make install may overwrite or masquerade the default python binary...
Christian Heimes [Tue, 4 Dec 2007 16:36:20 +0000 (16:36 +0000)]
Added warning that make install may overwrite or masquerade the default python binary. Use make altinstall instead.
A native English speaker may want to rephrase the paragraph. ;)

17 years agofma speedup by avoiding to create a Context. Thanks Mark Dickinson.
Facundo Batista [Tue, 4 Dec 2007 16:31:53 +0000 (16:31 +0000)]
fma speedup by avoiding to create a Context. Thanks Mark Dickinson.

17 years agoAdd "Python on Unix" document, mostly written for GHOP
Georg Brandl [Tue, 4 Dec 2007 16:10:02 +0000 (16:10 +0000)]
Add "Python on Unix" document, mostly written for GHOP
by Shriphani Palakodety.

17 years agoAdded VS 2005 and VS 2008 to the search path for cabarc.exe
Christian Heimes [Tue, 4 Dec 2007 15:52:14 +0000 (15:52 +0000)]
Added VS 2005 and VS 2008 to the search path for cabarc.exe

17 years agoAdded self generated UUID for msvcr90.dll to msi.py
Christian Heimes [Tue, 4 Dec 2007 14:57:30 +0000 (14:57 +0000)]
Added self generated UUID for msvcr90.dll to msi.py
Readded a missing line.

17 years agoMove nt.access change into the right section.
Martin v. Löwis [Tue, 4 Dec 2007 08:39:16 +0000 (08:39 +0000)]
Move nt.access change into the right section.

17 years agoFix chflags issue on Tru64, from #1490190.
Martin v. Löwis [Tue, 4 Dec 2007 08:37:59 +0000 (08:37 +0000)]
Fix chflags issue on Tru64, from #1490190.

17 years agoForward-port r59310:
Martin v. Löwis [Mon, 3 Dec 2007 23:09:04 +0000 (23:09 +0000)]
Forward-port r59310:
os.access now returns True on Windows for any existing directory.

17 years agoShut up a compiler warning.
Guido van Rossum [Mon, 3 Dec 2007 22:02:10 +0000 (22:02 +0000)]
Shut up a compiler warning.

17 years agoGrammar fix
Andrew M. Kuchling [Mon, 3 Dec 2007 21:28:41 +0000 (21:28 +0000)]
Grammar fix

17 years agoAdd examples to the xmlrpclib docs.
Georg Brandl [Mon, 3 Dec 2007 20:03:46 +0000 (20:03 +0000)]
Add examples to the xmlrpclib docs.
Written for GHOP by Josip Dzolonga.

17 years agoPatch #1537 from Chad Austin
Christian Heimes [Mon, 3 Dec 2007 20:01:02 +0000 (20:01 +0000)]
Patch #1537 from Chad Austin
Change GeneratorExit's base class from Exception to BaseException
(This time I'm applying the patch to the correct sandbox.)

17 years ago#1548: fix apostroph placement.
Georg Brandl [Mon, 3 Dec 2007 19:57:02 +0000 (19:57 +0000)]
#1548: fix apostroph placement.

17 years agoTwo small fixes. Issue 1547.
Facundo Batista [Mon, 3 Dec 2007 19:49:54 +0000 (19:49 +0000)]
Two small fixes. Issue 1547.

17 years agoIssue #1727780: Support loading pickles of random.Random objects created
Martin v. Löwis [Mon, 3 Dec 2007 19:20:02 +0000 (19:20 +0000)]
Issue #1727780: Support loading pickles of random.Random objects created
on 32-bit systems on 64-bit systems, and vice versa. As a consequence
of the change, Random pickles created by Python 2.6 cannot be loaded
in Python 2.5.

17 years agoFaster _fix function, and some reordering for a more elegant
Facundo Batista [Mon, 3 Dec 2007 17:55:00 +0000 (17:55 +0000)]
Faster _fix function, and some reordering for a more elegant
coding. Thanks Mark Dickinson.

17 years agoSpeedup and cleaning of __str__. Thanks Mark Dickinson.
Facundo Batista [Mon, 3 Dec 2007 16:29:52 +0000 (16:29 +0000)]
Speedup and cleaning of __str__.  Thanks Mark Dickinson.

17 years agoI followed MA Lemberg's suggestion and added comments to the late initialization...
Christian Heimes [Mon, 3 Dec 2007 14:28:04 +0000 (14:28 +0000)]
I followed MA Lemberg's suggestion and added comments to the late initialization of the type slots.

17 years agoAdded comment to Misc/NEWS for r59290
Christian Heimes [Mon, 3 Dec 2007 13:55:16 +0000 (13:55 +0000)]
Added comment to Misc/NEWS for r59290

17 years agoApplied my patch #1455 with some extra fixes for VS 2005
Christian Heimes [Mon, 3 Dec 2007 13:47:29 +0000 (13:47 +0000)]
Applied my patch #1455 with some extra fixes for VS 2005
The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier.
I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin.

17 years agoImplement PEP 366
Nick Coghlan [Mon, 3 Dec 2007 12:55:17 +0000 (12:55 +0000)]
Implement PEP 366

17 years agoAdd documentation for PySys_* functions.
Georg Brandl [Sun, 2 Dec 2007 21:58:54 +0000 (21:58 +0000)]
Add documentation for PySys_* functions.
Written by Charlie Shepherd for GHOP. Also fixes #1245.

17 years agoFix a sentence I missed before. Do not merge to 3k.
Georg Brandl [Sun, 2 Dec 2007 18:17:50 +0000 (18:17 +0000)]
Fix a sentence I missed before. Do not merge to 3k.

17 years agoAdd more entries to the glossary.
Georg Brandl [Sun, 2 Dec 2007 14:58:50 +0000 (14:58 +0000)]
Add more entries to the glossary.

Written by Jeff Wheeler for GHOP.

17 years agoConvert bdb.rst line endings to Unix style.
Georg Brandl [Sun, 2 Dec 2007 14:37:29 +0000 (14:37 +0000)]
Convert bdb.rst line endings to Unix style.

17 years agoAdd example to mmap docs.
Georg Brandl [Sun, 2 Dec 2007 14:34:34 +0000 (14:34 +0000)]
Add example to mmap docs.
Written for GHOP by Rafal Rawicki.

17 years agoAdd "Using Python on Windows" document, by Robert Lehmann.
Georg Brandl [Sat, 1 Dec 2007 23:12:45 +0000 (23:12 +0000)]
Add "Using Python on Windows" document, by Robert Lehmann.
Written for GHOP.

17 years agoAdd examples to the ElementTree documentation.
Georg Brandl [Sat, 1 Dec 2007 22:42:46 +0000 (22:42 +0000)]
Add examples to the ElementTree documentation.
Written by h4wk.cz for GHOP.

17 years agoAdd test suite for cmd module.
Georg Brandl [Sat, 1 Dec 2007 22:38:48 +0000 (22:38 +0000)]
Add test suite for cmd module.

Written by Michael Schneider for GHOP.

17 years agoAdd a few refcount data entries.
Georg Brandl [Sat, 1 Dec 2007 22:27:56 +0000 (22:27 +0000)]
Add a few refcount data entries.

17 years agoDocument PyEval_* functions from ceval.c.
Georg Brandl [Sat, 1 Dec 2007 22:24:47 +0000 (22:24 +0000)]
Document PyEval_* functions from ceval.c.

Credits to Michael Sloan from GHOP.

17 years agoIssue #1531: Read fileobj from the current offset, do not seek to
Lars Gustäbel [Sat, 1 Dec 2007 21:02:12 +0000 (21:02 +0000)]
Issue #1531: Read fileobj from the current offset, do not seek to
the start.

(will backport to 2.5)

17 years agoAdded one more missing versionadded tag
Christian Heimes [Sat, 1 Dec 2007 15:40:22 +0000 (15:40 +0000)]
Added one more missing versionadded tag

17 years agoAdd versionadded tags missing in r59254. Do NOT merge to Py3k.
Georg Brandl [Sat, 1 Dec 2007 13:23:04 +0000 (13:23 +0000)]
Add versionadded tags missing in r59254. Do NOT merge to Py3k.

17 years agoFeature #1534
Christian Heimes [Sat, 1 Dec 2007 11:20:10 +0000 (11:20 +0000)]
Feature #1534
Added PyFloat_GetMax(), PyFloat_GetMin() and PyFloat_GetInfo() to the float API.
Added a dictionary sys.float_info with information about the internal floating point type to the sys module.

17 years agoAlthough pyconfig.h claims that WIN32 is obsolete it is still required for the locale...
Christian Heimes [Sat, 1 Dec 2007 01:03:20 +0000 (01:03 +0000)]
Although pyconfig.h claims that WIN32 is obsolete it is still required for the locale module. locale.getdefaultlocale() fails silently w/o the WIN32 macro.

17 years agoBackport of -r59242:59246 from py3k
Christian Heimes [Fri, 30 Nov 2007 22:36:10 +0000 (22:36 +0000)]
Backport of -r59242:59246 from py3k
Fixed problem with regrtest caused by the additional of objects to _abcoll.

17 years agoMove lchmod() docs to correct place, and add versionadded tags.
Georg Brandl [Fri, 30 Nov 2007 22:04:45 +0000 (22:04 +0000)]
Move lchmod() docs to correct place, and add versionadded tags.

17 years agoFix for feature request #1528 Add os.fchmod
Christian Heimes [Fri, 30 Nov 2007 21:11:28 +0000 (21:11 +0000)]
Fix for feature request #1528 Add os.fchmod
Georg Brandl has added fchmod() and fchown(). I've contributed lchown but I'm not able to test it on Linux. However it should be available on Mac and some other flavors of Unix.
I've made a quick test of fchmod() and fchown() on my system. They are working as expected.

17 years agoIssue #1521: on 64bit platforms, str.decode fails on very long strings.
Amaury Forgeot d'Arc [Fri, 30 Nov 2007 20:51:40 +0000 (20:51 +0000)]
Issue #1521: on 64bit platforms, str.decode fails on very long strings.
The t# and w# formats were not correctly handled.

Will backport.

17 years agoAdd a NEWS entry for r59231
Amaury Forgeot d'Arc [Fri, 30 Nov 2007 20:37:22 +0000 (20:37 +0000)]
Add a NEWS entry for r59231

17 years agoRemoved or replaced some more deprecated preprocessor macros.
Christian Heimes [Fri, 30 Nov 2007 19:18:08 +0000 (19:18 +0000)]
Removed or replaced some more deprecated preprocessor macros.
Moved the _DEBUG and NDEBUG macros to two new property files.
Fixed #1527 Problem with static libs on Windows
Updated README.txt

17 years agoReordering of __new__ to minimize isinstance() calls to most
Facundo Batista [Fri, 30 Nov 2007 17:15:25 +0000 (17:15 +0000)]
Reordering of __new__ to minimize isinstance() calls to most
used types. Thanks Mark Dickinson.

17 years agoIssue #1402: PyInterpreterState_Clear() may still invoke user code
Amaury Forgeot d'Arc [Thu, 29 Nov 2007 23:35:25 +0000 (23:35 +0000)]
Issue #1402: PyInterpreterState_Clear() may still invoke user code
(in deallocation of running threads, for example), so the PyGILState_Release()
function must still be functional.
On the other hand, _PyGILState_Fini() only frees memory, and can be called later.

Backport candidate, but only after some experts comment on it.

17 years agoAdd more examples to the wsgiref docs.
Georg Brandl [Thu, 29 Nov 2007 23:00:03 +0000 (23:00 +0000)]
Add more examples to the wsgiref docs.
From GHOP by Josip Dzolonga.

17 years agovc2008: Move python.vcproj first in the solution file, so that
Amaury Forgeot d'Arc [Thu, 29 Nov 2007 20:24:36 +0000 (20:24 +0000)]
vc2008: Move python.vcproj first in the solution file, so that
it becomes the default startup project when opening the file
for the first time.

17 years agoSpaces vs. Tabs.
Georg Brandl [Thu, 29 Nov 2007 18:33:01 +0000 (18:33 +0000)]
Spaces vs. Tabs.

17 years agoFix bug #1517, a segfault in lookdict().
Guido van Rossum [Thu, 29 Nov 2007 18:25:12 +0000 (18:25 +0000)]
Fix bug #1517, a segfault in lookdict().

17 years agoAdd examples to the ConfigParser documentation.
Georg Brandl [Thu, 29 Nov 2007 17:02:34 +0000 (17:02 +0000)]
Add examples to the ConfigParser documentation.

Credits go to Thomas Lamb, who wrote this as a task in the GHOP contest.

17 years agoFix reference target.
Georg Brandl [Thu, 29 Nov 2007 17:01:20 +0000 (17:01 +0000)]
Fix reference target.

17 years agoAdded py3kwarning to the documentation of the sys module.
Christian Heimes [Wed, 28 Nov 2007 08:02:36 +0000 (08:02 +0000)]
Added py3kwarning to the documentation of the sys module.

17 years agoI forgot to fix one occurence of new in test_descr
Christian Heimes [Tue, 27 Nov 2007 23:53:14 +0000 (23:53 +0000)]
I forgot to fix one occurence of new in test_descr

17 years agoExpose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504
Christian Heimes [Tue, 27 Nov 2007 23:16:44 +0000 (23:16 +0000)]
Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504
Also added a warning.warnpy3k() as convenient method for Python 3.x related deprecation warnings.

17 years agoPatch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign of
Guido van Rossum [Tue, 27 Nov 2007 22:38:36 +0000 (22:38 +0000)]
Patch # 1507 by Mark Dickinson.  Make complex(x, -0) retain the sign of
the imaginary part (as long as it's not complex).
Backport candidate?

17 years agoAdded a deprecation warning to the 'new' module.
Christian Heimes [Tue, 27 Nov 2007 21:35:44 +0000 (21:35 +0000)]
Added a deprecation warning to the 'new' module.

17 years agoReplaced import of the 'new' module with 'types' module and added a deprecation warni...
Christian Heimes [Tue, 27 Nov 2007 21:34:01 +0000 (21:34 +0000)]
Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module.

17 years agoBackport of changes to PCbuild9 from the py3k branch
Christian Heimes [Tue, 27 Nov 2007 21:28:40 +0000 (21:28 +0000)]
Backport of changes to PCbuild9 from the py3k branch