summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Forward-port r59310:Martin v. Löwis2007-12-032-2/+7
| | | | os.access now returns True on Windows for any existing directory.
* Shut up a compiler warning.Guido van Rossum2007-12-031-0/+1
|
* Grammar fixAndrew M. Kuchling2007-12-031-1/+1
|
* Add examples to the xmlrpclib docs.Georg Brandl2007-12-032-7/+167
| | | | Written for GHOP by Josip Dzolonga.
* Patch #1537 from Chad AustinChristian Heimes2007-12-036-11/+25
| | | | | Change GeneratorExit's base class from Exception to BaseException (This time I'm applying the patch to the correct sandbox.)
* #1548: fix apostroph placement.Georg Brandl2007-12-031-1/+1
|
* Two small fixes. Issue 1547.Facundo Batista2007-12-031-2/+2
|
* Issue #1727780: Support loading pickles of random.Random objects createdMartin v. Löwis2007-12-0310-10/+1944
| | | | | | 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.
* Faster _fix function, and some reordering for a more elegantFacundo Batista2007-12-031-52/+47
| | | | coding. Thanks Mark Dickinson.
* Speedup and cleaning of __str__. Thanks Mark Dickinson.Facundo Batista2007-12-031-71/+41
|
* I followed MA Lemberg's suggestion and added comments to the late ↵Christian Heimes2007-12-031-5/+7
| | | | initialization of the type slots.
* Added comment to Misc/NEWS for r59290Christian Heimes2007-12-031-0/+3
|
* Applied my patch #1455 with some extra fixes for VS 2005Christian Heimes2007-12-035-25/+713
| | | | | 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.
* Implement PEP 366Nick Coghlan2007-12-037-79/+210
|
* Add documentation for PySys_* functions.Georg Brandl2007-12-024-2/+83
| | | | Written by Charlie Shepherd for GHOP. Also fixes #1245.
* Fix a sentence I missed before. Do not merge to 3k.Georg Brandl2007-12-021-1/+1
|
* Add more entries to the glossary.Georg Brandl2007-12-0221-64/+166
| | | | Written by Jeff Wheeler for GHOP.
* Convert bdb.rst line endings to Unix style.Georg Brandl2007-12-021-337/+337
|
* Add example to mmap docs.Georg Brandl2007-12-021-0/+43
| | | | Written for GHOP by Rafal Rawicki.
* Add "Using Python on Windows" document, by Robert Lehmann.Georg Brandl2007-12-015-29/+333
| | | | Written for GHOP.
* Add examples to the ElementTree documentation.Georg Brandl2007-12-011-0/+68
| | | | Written by h4wk.cz for GHOP.
* Add test suite for cmd module.Georg Brandl2007-12-012-0/+187
| | | | Written by Michael Schneider for GHOP.
* Add a few refcount data entries.Georg Brandl2007-12-011-0/+5
|
* Document PyEval_* functions from ceval.c.Georg Brandl2007-12-015-5/+153
| | | | Credits to Michael Sloan from GHOP.
* Issue #1531: Read fileobj from the current offset, do not seek toLars Gustäbel2007-12-013-1/+37
| | | | | | the start. (will backport to 2.5)
* Added one more missing versionadded tagChristian Heimes2007-12-011-0/+2
|
* Add versionadded tags missing in r59254. Do NOT merge to Py3k.Georg Brandl2007-12-011-0/+6
|
* Feature #1534Christian Heimes2007-12-017-0/+120
| | | | | 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.
* Although pyconfig.h claims that WIN32 is obsolete it is still required for ↵Christian Heimes2007-12-012-9/+11
| | | | the locale module. locale.getdefaultlocale() fails silently w/o the WIN32 macro.
* Backport of -r59242:59246 from py3kChristian Heimes2007-11-301-2/+6
| | | | Fixed problem with regrtest caused by the additional of objects to _abcoll.
* Move lchmod() docs to correct place, and add versionadded tags.Georg Brandl2007-11-301-7/+13
|
* Fix for feature request #1528 Add os.fchmodChristian Heimes2007-11-305-5/+120
| | | | | 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.
* Issue #1521: on 64bit platforms, str.decode fails on very long strings.Amaury Forgeot d'Arc2007-11-303-7/+15
| | | | | | The t# and w# formats were not correctly handled. Will backport.
* Add a NEWS entry for r59231Amaury Forgeot d'Arc2007-11-301-0/+4
|
* Removed or replaced some more deprecated preprocessor macros.Christian Heimes2007-11-3013-91/+116
| | | | | | Moved the _DEBUG and NDEBUG macros to two new property files. Fixed #1527 Problem with static libs on Windows Updated README.txt
* Reordering of __new__ to minimize isinstance() calls to mostFacundo Batista2007-11-301-55/+56
| | | | used types. Thanks Mark Dickinson.
* Issue #1402: PyInterpreterState_Clear() may still invoke user codeAmaury Forgeot d'Arc2007-11-292-5/+39
| | | | | | | | (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.
* Add more examples to the wsgiref docs.Georg Brandl2007-11-292-1/+89
| | | | From GHOP by Josip Dzolonga.
* vc2008: Move python.vcproj first in the solution file, so thatAmaury Forgeot d'Arc2007-11-291-2/+2
| | | | | it becomes the default startup project when opening the file for the first time.
* Spaces vs. Tabs.Georg Brandl2007-11-291-4/+4
|
* Fix bug #1517, a segfault in lookdict().Guido van Rossum2007-11-291-0/+4
|
* Add examples to the ConfigParser documentation.Georg Brandl2007-11-292-0/+88
| | | | Credits go to Thomas Lamb, who wrote this as a task in the GHOP contest.
* Fix reference target.Georg Brandl2007-11-291-1/+1
|
* Added py3kwarning to the documentation of the sys module.Christian Heimes2007-11-281-0/+6
|
* I forgot to fix one occurence of new in test_descrChristian Heimes2007-11-271-1/+1
|
* Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504Christian Heimes2007-11-275-3/+27
| | | | Also added a warning.warnpy3k() as convenient method for Python 3.x related deprecation warnings.
* Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign ofGuido van Rossum2007-11-272-9/+28
| | | | | the imaginary part (as long as it's not complex). Backport candidate?
* Added a deprecation warning to the 'new' module.Christian Heimes2007-11-271-0/+3
|
* Replaced import of the 'new' module with 'types' module and added a ↵Christian Heimes2007-11-2710-81/+52
| | | | deprecation warning to the 'new' module.
* Backport of changes to PCbuild9 from the py3k branchChristian Heimes2007-11-276-230/+166
|