summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Simplify index entries; fix #1712.Georg Brandl2008-01-053-97/+70
|
* Remove with_statement future imports from 2.6 docs.Georg Brandl2008-01-056-6/+6
|
* Add myself.Thomas Heller2008-01-051-0/+1
|
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-054-31/+25
| | | | | | | | | | | | round included: * Revert round to its 2.6 behavior (half away from 0). * Because round, floor, and ceil always return float again, it's no longer necessary to have them delegate to __xxx___, so I've ripped that out of their implementations and the Real ABC. This also helps in implementing types that work in both 2.6 and 3.0: you return int from the __xxx__ methods, and let it get enabled by the version upgrade. * Make pow(-1, .5) raise a ValueError again.
* Add error-checking to namedtuple's _replace() method.Raymond Hettinger2008-01-051-1/+4
|
* Improve namedtuple's _cast() method with a docstring, new name, and ↵Raymond Hettinger2008-01-051-16/+16
| | | | error-checking.
* Fix markupAndrew M. Kuchling2008-01-041-3/+3
|
* Fix markupAndrew M. Kuchling2008-01-041-5/+7
|
* Added interface to Windows' WSAIoctl and a simple example for a network sniffer.Christian Heimes2008-01-041-863/+906
|
* Minor fix-ups to named tuples:Raymond Hettinger2008-01-041-10/+13
| | | | | | | | | * Make the _replace() method respect subclassing. * Using property() to make _fields read-only wasn't a good idea. It caused len(Point._fields) to fail. * Add note to _cast() about length checking and alternative with the star-operator.
* Add math items; other editsAndrew M. Kuchling2008-01-041-3/+44
|
* Filled in some XXX commentsChristian Heimes2008-01-041-3/+4
|
* Add itemsAndrew M. Kuchling2008-01-041-3/+37
|
* Markup fixes; grammar tweaksAndrew M. Kuchling2008-01-041-8/+8
|
* Added copysign(x, y) function to the math moduleChristian Heimes2008-01-031-0/+8
|
* Modified PyImport_Import and PyImport_ImportModule to always use absolute ↵Christian Heimes2008-01-031-1/+42
| | | | | | imports by calling __import__ with an explicit level of 0 Added a new API function PyImport_ImportModuleNoBlock. It solves the problem with dead locks when mixing threads and imports
* Added math.isinf() and math.isnan()Christian Heimes2008-01-031-0/+17
|
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-037-27/+160
| | | | | | | the complex_pow part), r56649, r56652, r56715, r57296, r57302, r57359, r57361, r57372, r57738, r57739, r58017, r58039, r58040, and r59390, and new documentation. The only significant difference is that round(x) returns a float to preserve backward-compatibility. See http://bugs.python.org/issue1689.
* Improve docs for itertools.groupby(). The use of xrange(0) to create a ↵Raymond Hettinger2007-12-291-1/+1
| | | | unique object is less obvious than object().
* Simpler documentation for itertools.tee(). Should be backported.Raymond Hettinger2007-12-291-7/+6
|
* Some cleanup in the docs.Georg Brandl2007-12-29126-1182/+805
|
* Add itemAndrew M. Kuchling2007-12-221-3/+25
|
* Patch #1583 by Adam Olsen.Guido van Rossum2007-12-192-0/+24
| | | | | | | 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).
* Add a bunch of itemsAndrew M. Kuchling2007-12-191-4/+157
|
* Users demand iterable input for named tuples. The author capitulates.Raymond Hettinger2007-12-181-16/+21
|
* Applied patch #1635: Float patch for inf and nan on Windows (and other ↵Christian Heimes2007-12-183-6/+31
| | | | | | platforms). The patch unifies float("inf") and repr(float("inf")) on all platforms.
* Simplify and speedup _asdict() for named tuples.Raymond Hettinger2007-12-181-2/+2
|
* Add more namedtuple() test cases. Neaten the code and comments.Raymond Hettinger2007-12-181-3/+5
|
* Don't use quotes for non-string code.Georg Brandl2007-12-161-1/+1
|
* Use PEP 8.Georg Brandl2007-12-161-6/+6
|
* Simplify.Georg Brandl2007-12-161-3/+1
|
* Adapt conf.py to new option names.Georg Brandl2007-12-162-14/+35
|
* Remove curious space-like characters.Georg Brandl2007-12-161-3/+3
|
* Remove another unnecessary Unicode character.Georg Brandl2007-12-161-1/+1
|
* Remove gratuitous unicode character.Georg Brandl2007-12-161-1/+1
|
* Remove orphaned footnote reference.Georg Brandl2007-12-161-1/+1
|
* Argh, wrong version.Georg Brandl2007-12-151-4/+0
|
* Add note about future import needed for with statement.Georg Brandl2007-12-151-0/+4
|
* Bump the version number, and make a few small editsAndrew M. Kuchling2007-12-141-13/+15
|
* Remove warning about URLAndrew M. Kuchling2007-12-141-3/+1
|
* Add usage noteRaymond Hettinger2007-12-141-2/+10
|
* Faster and simpler _replace() methodRaymond Hettinger2007-12-141-1/+1
|
* Add a section about nested listcomps to the tutorial.Georg Brandl2007-12-142-0/+43
| | | | Thanks to Ian Bruntlett and Robert Lehmann.
* Update method names for named tuples.Raymond Hettinger2007-12-141-3/+3
|
* Add line spacing for readabilityRaymond Hettinger2007-12-141-1/+8
|
* Cleaner method naming conventionRaymond Hettinger2007-12-141-15/+15
|
* Simplify implementation of __replace__()Raymond Hettinger2007-12-131-1/+1
|
* Add another GHOP contributor.Georg Brandl2007-12-111-0/+1
|
* Added wide char api variants of getch and putch to msvcrt module. The wide ↵Christian Heimes2007-12-101-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 Cannon2007-12-091-2/+5
|