Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Some cleanup in the docs. | Georg Brandl | 2007-12-29 | 86 | -667/+363 |
| | |||||
* | Patch #1583 by Adam Olsen. | Guido van Rossum | 2007-12-19 | 1 | -0/+14 |
| | | | | | | | This adds signal.set_wakeup_fd(fd) which sets a file descriptor to which a zero byte will be written whenever a C exception handler runs. I added a simple C API as well, PySignal_SetWakeupFd(fd). | ||||
* | Users demand iterable input for named tuples. The author capitulates. | Raymond Hettinger | 2007-12-18 | 1 | -16/+21 |
| | |||||
* | Applied patch #1635: Float patch for inf and nan on Windows (and other ↵ | Christian Heimes | 2007-12-18 | 2 | -5/+14 |
| | | | | | | platforms). The patch unifies float("inf") and repr(float("inf")) on all platforms. | ||||
* | Simplify and speedup _asdict() for named tuples. | Raymond Hettinger | 2007-12-18 | 1 | -2/+2 |
| | |||||
* | Add more namedtuple() test cases. Neaten the code and comments. | Raymond Hettinger | 2007-12-18 | 1 | -3/+5 |
| | |||||
* | Remove curious space-like characters. | Georg Brandl | 2007-12-16 | 1 | -3/+3 |
| | |||||
* | Remove another unnecessary Unicode character. | Georg Brandl | 2007-12-16 | 1 | -1/+1 |
| | |||||
* | Remove gratuitous unicode character. | Georg Brandl | 2007-12-16 | 1 | -1/+1 |
| | |||||
* | Remove orphaned footnote reference. | Georg Brandl | 2007-12-16 | 1 | -1/+1 |
| | |||||
* | Add usage note | Raymond Hettinger | 2007-12-14 | 1 | -2/+10 |
| | |||||
* | Faster and simpler _replace() method | Raymond Hettinger | 2007-12-14 | 1 | -1/+1 |
| | |||||
* | Add line spacing for readability | Raymond Hettinger | 2007-12-14 | 1 | -1/+8 |
| | |||||
* | Cleaner method naming convention | Raymond Hettinger | 2007-12-14 | 1 | -15/+15 |
| | |||||
* | Simplify implementation of __replace__() | Raymond Hettinger | 2007-12-13 | 1 | -1/+1 |
| | |||||
* | Added wide char api variants of getch and putch to msvcrt module. The wide ↵ | Christian Heimes | 2007-12-10 | 1 | -0/+32 |
| | | | | char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too. | ||||
* | Use a versionchanged directive. | Brett Cannon | 2007-12-09 | 1 | -2/+5 |
| | |||||
* | correct email address | Skip Montanaro | 2007-12-08 | 8 | -9/+9 |
| | |||||
* | Add examples to the datetime documentation. Written for GHOP by "h4wk.cz". | Georg Brandl | 2007-12-08 | 1 | -39/+298 |
| | |||||
* | 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. | ||||
* | Better re.split examples. | Georg Brandl | 2007-12-06 | 1 | -11/+17 |
| | |||||
* | Diverse markup fixes. | Georg Brandl | 2007-12-06 | 6 | -6/+7 |
| | |||||
* | Add examples to re docs. Written for GHOP by Dan Finnie. | Georg Brandl | 2007-12-05 | 1 | -17/+285 |
| | |||||
* | Add examples to csv, pprint and traceback docs. | Georg Brandl | 2007-12-05 | 3 | -24/+189 |
| | | | | Written by Ross for GHOP. | ||||
* | Add tutorial and examples to logging docs, from GHOP student "oscar8thegrouch". | Georg Brandl | 2007-12-04 | 1 | -11/+594 |
| | |||||
* | 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 | 1 | -1/+3 |
| | | | | | Change GeneratorExit's base class from Exception to BaseException (This time I'm applying the patch to the correct sandbox.) | ||||
* | Issue #1727780: Support loading pickles of random.Random objects created | Martin v. Löwis | 2007-12-03 | 1 | -0/+3 |
| | | | | | | 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. | ||||
* | Add more entries to the glossary. | Georg Brandl | 2007-12-02 | 15 | -60/+62 |
| | | | | 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 | 1 | -0/+1 |
| | | | | Written for GHOP. | ||||
* | Add examples to the ElementTree documentation. | Georg Brandl | 2007-12-01 | 1 | -0/+68 |
| | | | | Written by h4wk.cz for GHOP. | ||||
* | Added one more missing versionadded tag | Christian Heimes | 2007-12-01 | 1 | -0/+2 |
| | |||||
* | Feature #1534 | Christian Heimes | 2007-12-01 | 1 | -0/+42 |
| | | | | | 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. | ||||
* | 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 | 1 | -0/+20 |
| | | | | | 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. | ||||
* | Add more examples to the wsgiref docs. | Georg Brandl | 2007-11-29 | 1 | -1/+88 |
| | | | | From GHOP by Josip Dzolonga. | ||||
* | Add examples to the ConfigParser documentation. | Georg Brandl | 2007-11-29 | 1 | -0/+87 |
| | | | | 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 |
| | |||||
* | Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 | Christian Heimes | 2007-11-27 | 1 | -0/+8 |
| | | | | Also added a warning.warnpy3k() as convenient method for Python 3.x related deprecation warnings. | ||||
* | Bug #1494: Document that appendChild removes first. | Martin v. Löwis | 2007-11-24 | 1 | -2/+3 |
| | |||||
* | #1735632: add O_NOATIME constant to os module. | Georg Brandl | 2007-11-24 | 1 | -8/+10 |
| | | | | Also document a few other O_ constants that were missing from documentation. | ||||
* | #1355: remove mention of PyXML from xml.dom docs. | Georg Brandl | 2007-11-24 | 1 | -9/+8 |
| | |||||
* | #1467: fix documentation for TestResult.add{Error,Failure}. | Georg Brandl | 2007-11-24 | 1 | -4/+6 |
| | |||||
* | #1344: document that you need to open std{in,out,err} with PIPE if you want | Georg Brandl | 2007-11-24 | 1 | -1/+6 |
| | | | | communicate() to work as described. | ||||
* | Fixed detail in add_type() explanation (issue 1463). | Facundo Batista | 2007-11-19 | 1 | -2/+2 |
| | |||||
* | Fix signature in example | Raymond Hettinger | 2007-11-17 | 1 | -1/+1 |
| | |||||
* | Add example for use cases requiring default values. | Raymond Hettinger | 2007-11-15 | 1 | -0/+9 |
| |