Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add another GHOP contributor. | Georg Brandl | 2007-12-11 | 1 | -0/+1 | |
| | ||||||
* | The new float repr causes too much trouble and pain. I'm disabling the ↵ | Christian Heimes | 2007-12-11 | 6 | -10/+21 | |
| | | | | | | | feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. Guido: It's pretty bad actually -- repr(1e5) comes out as '1.0'... Ditto for repr(1eN) for most N... Both in 2.6 and in 3.0... | |||||
* | format_paragraph_event wasn't returning 'break' | Kurt B. Kaiser | 2007-12-11 | 1 | -0/+1 | |
| | ||||||
* | Patch #1643738 by Ulisses Furquim -- make the is_tripped variable | Guido van Rossum | 2007-12-10 | 2 | -5/+27 | |
| | | | | | in signalmodule.c more robust. Includes Martin von Loewis's suggestion to set is_tripped after .tripped. | |||||
* | Backport of r59456:59458 from py3k to trunk | Christian Heimes | 2007-12-10 | 10 | -3/+1764 | |
| | | | | | | Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. Thanks to noam for the patch! I had to modify doubledigits.c slightly to support X64 and IA64 machines on Windows. I also added the new file to the three project files. | |||||
* | Remove a 2.2-ism. | Guido van Rossum | 2007-12-10 | 1 | -2/+1 | |
| | ||||||
* | Stupid save all didn't safe it all ... | Christian Heimes | 2007-12-10 | 1 | -5/+6 | |
| | ||||||
* | Added wide char api variants of getch and putch to msvcrt module. The wide ↵ | Christian Heimes | 2007-12-10 | 3 | -0/+104 | |
| | | | | char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too. | |||||
* | Add DocXMLRPCServer test from GHOP task #136, written by Jeff Wheeler. | Georg Brandl | 2007-12-09 | 1 | -0/+152 | |
| | ||||||
* | Add Jeff Wheeler. | Georg Brandl | 2007-12-09 | 1 | -0/+1 | |
| | ||||||
* | Two fixes in DocXMLRPCServer: | Georg Brandl | 2007-12-09 | 1 | -28/+4 | |
| | | | | | | * remove parameter default that didn't make sense * properly escape values in output Thanks to Jeff Wheeler from GHOP! | |||||
* | Remove all tabs in that file. | Georg Brandl | 2007-12-09 | 1 | -5/+5 | |
| | ||||||
* | #1575: the Mac readme is now one level up. | Georg Brandl | 2007-12-09 | 1 | -1/+1 | |
| | ||||||
* | Use a versionchanged directive. | Brett Cannon | 2007-12-09 | 1 | -2/+5 | |
| | ||||||
* | Adapt style. | Georg Brandl | 2007-12-08 | 1 | -1/+1 | |
| | ||||||
* | When splitting, avoid making a copy of the string if the split doesn't find | Skip Montanaro | 2007-12-08 | 2 | -11/+45 | |
| | | | | anything (issue 1538). | |||||
* | correct email address | Skip Montanaro | 2007-12-08 | 9 | -19/+10 | |
| | ||||||
* | + "context manager" | Skip Montanaro | 2007-12-08 | 1 | -0/+5 | |
| | ||||||
* | Note that open() is the preferred way to open files (issue 1510). | Skip Montanaro | 2007-12-08 | 2 | -2/+4 | |
| | ||||||
* | Add examples to the datetime documentation. Written for GHOP by "h4wk.cz". | Georg Brandl | 2007-12-08 | 1 | -39/+298 | |
| | ||||||
* | Fix Eren's name. | Georg Brandl | 2007-12-08 | 1 | -1/+1 | |
| | ||||||
* | Fix markup in whatsnew, use new directive in ACKS. | Georg Brandl | 2007-12-08 | 2 | -200/+202 | |
| | ||||||
* | Fix tpyo. | Georg Brandl | 2007-12-08 | 1 | -1/+1 | |
| | ||||||
* | Fix issue #1530. | Alexandre Vassalotti | 2007-12-08 | 1 | -3/+6 | |
| | | | | Return an error exit status if not all tests passes. | |||||
* | Be (just a bit :) more specific about release date. | Guido van Rossum | 2007-12-08 | 1 | -1/+1 | |
| | ||||||
* | This is probably what was meant here. | Armin Rigo | 2007-12-07 | 1 | -1/+1 | |
| | ||||||
* | Update to windows doc from Robert. | Georg Brandl | 2007-12-07 | 1 | -5/+12 | |
| | ||||||
* | Increase unit test coverage of SimpleXMLRPCServer. | Georg Brandl | 2007-12-07 | 2 | -4/+133 | |
| | | | | Written for GHOP by Turkay Eren. | |||||
* | Don't have the docs berate themselves. Keep a professional tone. | Raymond Hettinger | 2007-12-07 | 1 | -5/+0 | |
| | | | | If a todo is needed, put it in the tracker. | |||||
* | Several Windows related cleanups: | Christian Heimes | 2007-12-06 | 5 | -23/+29 | |
| | | | | | | | | | | * Removed a #define from pyconfig.h. The macro was already defined a few lines higher. * Fixed path to tix in the build_tkinter.py script * Changed make_buildinfo.c to use versions of unlink and strcat which are considered safe by Windows (as suggested by MvL). * Removed two defines from pyproject.vsprops that are no longer required. Both are defined in pyconfig.h and make_buildinfo.c doesn't use the unsafe versions any more (as suggested by MvL). * Added some more information about PGO and the property files to PCbuild9/readme.txt. Are you fine with the changes, Martin? | |||||
* | Disabled one test that is failing on Unix | Christian Heimes | 2007-12-06 | 1 | -1/+2 | |
| | ||||||
* | Silence more warnings, _CRT_NONSTDC_NO_DEPRECATE is already defined in ↵ | Christian Heimes | 2007-12-06 | 1 | -1/+1 | |
| | | | | pyconfig.h but several projects don't include it. | |||||
* | Fixed get_config_h_filename for Windows. Without the patch it can't find the ↵ | Christian Heimes | 2007-12-06 | 2 | -8/+50 | |
| | | | | | | pyconfig.h file inside a build tree. Added several small unit tests for sysconfig. | |||||
* | Better re.split examples. | Georg Brandl | 2007-12-06 | 1 | -11/+17 | |
| | ||||||
* | Diverse markup fixes. | Georg Brandl | 2007-12-06 | 6 | -6/+7 | |
| | ||||||
* | Fix Issue 1045. | Raymond Hettinger | 2007-12-06 | 5 | -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 Brandl | 2007-12-06 | 2 | -2/+3 | |
| | ||||||
* | The macros _WIN32, _WIN64 and _M_X64 are defined by the compiler. The VS ↵ | Christian Heimes | 2007-12-05 | 10 | -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 Brandl | 2007-12-05 | 1 | -0/+1 | |
| | ||||||
* | Fixed bug #1557 by using popen.communicate() before popen.wait() | Christian Heimes | 2007-12-05 | 1 | -2/+5 | |
| | ||||||
* | This "fixes" compilation issues for the Carbon._OSA module on OSX Leopard | Ronald Oussoren | 2007-12-05 | 1 | -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 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 |