summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Another markup fix.Georg Brandl2007-12-051-2/+2
|
* Updated documentation and build_tkinter.py scriptChristian Heimes2007-12-052-21/+28
|
* Fix markup.Georg Brandl2007-12-051-1/+1
|
* Add examples to re docs. Written for GHOP by Dan Finnie.Georg Brandl2007-12-052-17/+286
|
* Error checking was too aggressive (reported by Chris Tismer)Raymond Hettinger2007-12-052-2/+3
|
* Add examples to csv, pprint and traceback docs.Georg Brandl2007-12-053-24/+189
| | | | Written by Ross for GHOP.
* Spelling fixAndrew M. Kuchling2007-12-051-1/+1
|
* Added msg to Misc/NEWSChristian Heimes2007-12-051-0/+3
|
* merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ↵Christian Heimes2007-12-052-4/+6
| | | | can make list() raise a SystemError
* Fixed error in regrtest. I must have missed the spot.Christian Heimes2007-12-051-1/+1
|
* Fixed quoting and paths in the sqlite project fileChristian Heimes2007-12-051-8/+8
|
* Fix typo.Georg Brandl2007-12-051-1/+1
|
* These optimizations create smaller and a bit faster code on my machine. I've ↵Christian Heimes2007-12-041-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 Brandl2007-12-041-11/+594
|
* Fix duplicate label and a typo.Georg Brandl2007-12-041-4/+5
|
* Added warning that make install may overwrite or masquerade the default ↵Christian Heimes2007-12-041-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 Batista2007-12-041-16/+31
|
* Add "Python on Unix" document, mostly written for GHOPGeorg Brandl2007-12-043-2/+147
| | | | by Shriphani Palakodety.
* Added VS 2005 and VS 2008 to the search path for cabarc.exeChristian Heimes2007-12-041-5/+10
|
* Added self generated UUID for msvcr90.dll to msi.pyChristian Heimes2007-12-041-23/+66
| | | | Readded a missing line.
* Move nt.access change into the right section.Martin v. Löwis2007-12-041-2/+2
|
* Fix chflags issue on Tru64, from #1490190.Martin v. Löwis2007-12-042-7/+175
|
* 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.