Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Another markup fix. | Georg Brandl | 2007-12-05 | 1 | -2/+2 | |
| | ||||||
* | Updated documentation and build_tkinter.py script | Christian Heimes | 2007-12-05 | 2 | -21/+28 | |
| | ||||||
* | Fix markup. | Georg Brandl | 2007-12-05 | 1 | -1/+1 | |
| | ||||||
* | Add examples to re docs. Written for GHOP by Dan Finnie. | Georg Brandl | 2007-12-05 | 2 | -17/+286 | |
| | ||||||
* | Error checking was too aggressive (reported by Chris Tismer) | Raymond Hettinger | 2007-12-05 | 2 | -2/+3 | |
| | ||||||
* | Add examples to csv, pprint and traceback docs. | Georg Brandl | 2007-12-05 | 3 | -24/+189 | |
| | | | | Written by Ross for GHOP. | |||||
* | Spelling fix | Andrew M. Kuchling | 2007-12-05 | 1 | -1/+1 | |
| | ||||||
* | Added msg to Misc/NEWS | Christian Heimes | 2007-12-05 | 1 | -0/+3 | |
| | ||||||
* | merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ↵ | Christian Heimes | 2007-12-05 | 2 | -4/+6 | |
| | | | | can make list() raise a SystemError | |||||
* | Fixed error in regrtest. I must have missed the spot. | Christian Heimes | 2007-12-05 | 1 | -1/+1 | |
| | ||||||
* | Fixed quoting and paths in the sqlite project file | Christian Heimes | 2007-12-05 | 1 | -8/+8 | |
| | ||||||
* | Fix typo. | Georg Brandl | 2007-12-05 | 1 | -1/+1 | |
| | ||||||
* | These optimizations create smaller and a bit faster code on my machine. I've ↵ | Christian Heimes | 2007-12-04 | 1 | -4/+4 | |
| | | | | also disabled an optimization that may be dangerous. Intrinsic functions conflict with errno. | |||||
* | Add tutorial and examples to logging docs, from GHOP student "oscar8thegrouch". | Georg Brandl | 2007-12-04 | 1 | -11/+594 | |
| | ||||||
* | Fix duplicate label and a typo. | Georg Brandl | 2007-12-04 | 1 | -4/+5 | |
| | ||||||
* | Added warning that make install may overwrite or masquerade the default ↵ | Christian Heimes | 2007-12-04 | 1 | -0/+5 | |
| | | | | | | python binary. Use make altinstall instead. A native English speaker may want to rephrase the paragraph. ;) | |||||
* | fma speedup by avoiding to create a Context. Thanks Mark Dickinson. | Facundo Batista | 2007-12-04 | 1 | -16/+31 | |
| | ||||||
* | Add "Python on Unix" document, mostly written for GHOP | Georg Brandl | 2007-12-04 | 3 | -2/+147 | |
| | | | | by Shriphani Palakodety. | |||||
* | Added VS 2005 and VS 2008 to the search path for cabarc.exe | Christian Heimes | 2007-12-04 | 1 | -5/+10 | |
| | ||||||
* | Added self generated UUID for msvcr90.dll to msi.py | Christian Heimes | 2007-12-04 | 1 | -23/+66 | |
| | | | | Readded a missing line. | |||||
* | Move nt.access change into the right section. | Martin v. Löwis | 2007-12-04 | 1 | -2/+2 | |
| | ||||||
* | Fix chflags issue on Tru64, from #1490190. | Martin v. Löwis | 2007-12-04 | 2 | -7/+175 | |
| | ||||||
* | 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. |