summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Diverse markup fixes.Georg Brandl2007-12-066-6/+7
|
* Fix Issue 1045.Raymond Hettinger2007-12-065-84/+46
| | | | | Factor-out common calling code by simplifying the length_hint API. Speed-up the function by caching the PyObject_String for the attribute lookup.
* Add another GHOP student to ACKS.Georg Brandl2007-12-062-2/+3
|
* The macros _WIN32, _WIN64 and _M_X64 are defined by the compiler. The VS ↵Christian Heimes2007-12-0510-22/+48
| | | | | | 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.
* Add Ross Light, a GHOP student, to ACKs.Georg Brandl2007-12-051-0/+1
|
* Fixed bug #1557 by using popen.communicate() before popen.wait()Christian Heimes2007-12-051-2/+5
|
* This "fixes" compilation issues for the Carbon._OSA module on OSX LeopardRonald Oussoren2007-12-051-336/+0
| | | | | | | | 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.
* 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.