Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Forward-port r59310: | Martin v. Löwis | 2007-12-03 | 2 | -2/+7 |
| | | | | os.access now returns True on Windows for any existing directory. | ||||
* | Shut up a compiler warning. | Guido van Rossum | 2007-12-03 | 1 | -0/+1 |
| | |||||
* | Grammar fix | Andrew M. Kuchling | 2007-12-03 | 1 | -1/+1 |
| | |||||
* | Add examples to the xmlrpclib docs. | Georg Brandl | 2007-12-03 | 2 | -7/+167 |
| | | | | Written for GHOP by Josip Dzolonga. | ||||
* | Patch #1537 from Chad Austin | Christian Heimes | 2007-12-03 | 6 | -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 Brandl | 2007-12-03 | 1 | -1/+1 |
| | |||||
* | Two small fixes. Issue 1547. | Facundo Batista | 2007-12-03 | 1 | -2/+2 |
| | |||||
* | Issue #1727780: Support loading pickles of random.Random objects created | Martin v. Löwis | 2007-12-03 | 10 | -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 elegant | Facundo Batista | 2007-12-03 | 1 | -52/+47 |
| | | | | coding. Thanks Mark Dickinson. | ||||
* | Speedup and cleaning of __str__. Thanks Mark Dickinson. | Facundo Batista | 2007-12-03 | 1 | -71/+41 |
| | |||||
* | I followed MA Lemberg's suggestion and added comments to the late ↵ | Christian Heimes | 2007-12-03 | 1 | -5/+7 |
| | | | | initialization of the type slots. | ||||
* | Added comment to Misc/NEWS for r59290 | Christian Heimes | 2007-12-03 | 1 | -0/+3 |
| | |||||
* | Applied my patch #1455 with some extra fixes for VS 2005 | Christian Heimes | 2007-12-03 | 5 | -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 366 | Nick Coghlan | 2007-12-03 | 7 | -79/+210 |
| | |||||
* | Add documentation for PySys_* functions. | Georg Brandl | 2007-12-02 | 4 | -2/+83 |
| | | | | Written by Charlie Shepherd for GHOP. Also fixes #1245. | ||||
* | Fix a sentence I missed before. Do not merge to 3k. | Georg Brandl | 2007-12-02 | 1 | -1/+1 |
| | |||||
* | Add more entries to the glossary. | Georg Brandl | 2007-12-02 | 21 | -64/+166 |
| | | | | Written by Jeff Wheeler for GHOP. | ||||
* | Convert bdb.rst line endings to Unix style. | Georg Brandl | 2007-12-02 | 1 | -337/+337 |
| | |||||
* | Add example to mmap docs. | Georg Brandl | 2007-12-02 | 1 | -0/+43 |
| | | | | Written for GHOP by Rafal Rawicki. | ||||
* | Add "Using Python on Windows" document, by Robert Lehmann. | Georg Brandl | 2007-12-01 | 5 | -29/+333 |
| | | | | Written for GHOP. | ||||
* | Add examples to the ElementTree documentation. | Georg Brandl | 2007-12-01 | 1 | -0/+68 |
| | | | | Written by h4wk.cz for GHOP. | ||||
* | Add test suite for cmd module. | Georg Brandl | 2007-12-01 | 2 | -0/+187 |
| | | | | Written by Michael Schneider for GHOP. | ||||
* | Add a few refcount data entries. | Georg Brandl | 2007-12-01 | 1 | -0/+5 |
| | |||||
* | Document PyEval_* functions from ceval.c. | Georg Brandl | 2007-12-01 | 5 | -5/+153 |
| | | | | Credits to Michael Sloan from GHOP. | ||||
* | Issue #1531: Read fileobj from the current offset, do not seek to | Lars Gustäbel | 2007-12-01 | 3 | -1/+37 |
| | | | | | | the start. (will backport to 2.5) | ||||
* | Added one more missing versionadded tag | Christian Heimes | 2007-12-01 | 1 | -0/+2 |
| | |||||
* | Add versionadded tags missing in r59254. Do NOT merge to Py3k. | Georg Brandl | 2007-12-01 | 1 | -0/+6 |
| | |||||
* | Feature #1534 | Christian Heimes | 2007-12-01 | 7 | -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 Heimes | 2007-12-01 | 2 | -9/+11 |
| | | | | the locale module. locale.getdefaultlocale() fails silently w/o the WIN32 macro. | ||||
* | Backport of -r59242:59246 from py3k | Christian Heimes | 2007-11-30 | 1 | -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 Brandl | 2007-11-30 | 1 | -7/+13 |
| | |||||
* | Fix for feature request #1528 Add os.fchmod | Christian Heimes | 2007-11-30 | 5 | -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'Arc | 2007-11-30 | 3 | -7/+15 |
| | | | | | | The t# and w# formats were not correctly handled. Will backport. | ||||
* | Add a NEWS entry for r59231 | Amaury Forgeot d'Arc | 2007-11-30 | 1 | -0/+4 |
| | |||||
* | Removed or replaced some more deprecated preprocessor macros. | Christian Heimes | 2007-11-30 | 13 | -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 most | Facundo Batista | 2007-11-30 | 1 | -55/+56 |
| | | | | used types. Thanks Mark Dickinson. | ||||
* | Issue #1402: PyInterpreterState_Clear() may still invoke user code | Amaury Forgeot d'Arc | 2007-11-29 | 2 | -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 Brandl | 2007-11-29 | 2 | -1/+89 |
| | | | | From GHOP by Josip Dzolonga. | ||||
* | vc2008: Move python.vcproj first in the solution file, so that | Amaury Forgeot d'Arc | 2007-11-29 | 1 | -2/+2 |
| | | | | | it becomes the default startup project when opening the file for the first time. | ||||
* | Spaces vs. Tabs. | Georg Brandl | 2007-11-29 | 1 | -4/+4 |
| | |||||
* | Fix bug #1517, a segfault in lookdict(). | Guido van Rossum | 2007-11-29 | 1 | -0/+4 |
| | |||||
* | Add examples to the ConfigParser documentation. | Georg Brandl | 2007-11-29 | 2 | -0/+88 |
| | | | | Credits go to Thomas Lamb, who wrote this as a task in the GHOP contest. | ||||
* | Fix reference target. | Georg Brandl | 2007-11-29 | 1 | -1/+1 |
| | |||||
* | Added py3kwarning to the documentation of the sys module. | Christian Heimes | 2007-11-28 | 1 | -0/+6 |
| | |||||
* | I forgot to fix one occurence of new in test_descr | Christian Heimes | 2007-11-27 | 1 | -1/+1 |
| | |||||
* | Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 | Christian Heimes | 2007-11-27 | 5 | -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 of | Guido van Rossum | 2007-11-27 | 2 | -9/+28 |
| | | | | | the imaginary part (as long as it's not complex). Backport candidate? | ||||
* | Added a deprecation warning to the 'new' module. | Christian Heimes | 2007-11-27 | 1 | -0/+3 |
| | |||||
* | Replaced import of the 'new' module with 'types' module and added a ↵ | Christian Heimes | 2007-11-27 | 10 | -81/+52 |
| | | | | deprecation warning to the 'new' module. | ||||
* | Backport of changes to PCbuild9 from the py3k branch | Christian Heimes | 2007-11-27 | 6 | -230/+166 |
| |