summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7947: Clarify math module behaviour for IEEE 754 special cases, alongMark Dickinson2010-04-061-26/+24
| | | | with a number of additional minor edits and typo corrections.
* Silence a 'comparison between signed and unsigned integer expressions' gcc ↵Mark Dickinson2010-04-061-1/+1
| | | | warning.
* Issue #8259: Clarify that there's an upper bound on the right-hand operand ↵Mark Dickinson2010-04-061-0/+3
| | | | of a shift operator.
* Issue #8193: Fix test_zlib failure with zlib 1.2.4.Antoine Pitrou2010-04-062-1/+3
|
* Misc/NEWS entry for r79843.Mark Dickinson2010-04-061-0/+4
|
* Issue #8259: Get rid of 'outrageous left shift count' error whenMark Dickinson2010-04-061-14/+6
| | | | | left-shifting an integer by more than 2**31 on a 64-bit machine. Also convert shift counts to a Py_ssize_t instead of a C long.
* 14 years later, we still don't know what it's for.Antoine Pitrou2010-04-061-10/+0
| | | | | | | | | | | | | | | | | Spotted by the PyPy developers. Original commit is: branch: trunk user: guido date: Mon Aug 19 21:32:04 1996 +0200 files: Python/getargs.c description: [svn r6499] Support for keyword arguments (PyArg_ParseTupleAndKeywords) donated by Geoff Philbrick <philbric@delphi.hks.com> (slightly changed by me). Also a little change to make the file acceptable to K&R C compilers (HPUX, SunOS 4.x).
* Note that PEP 378 also applies to int.Eric Smith2010-04-061-0/+5
|
* Add JP.Georg Brandl2010-04-061-1/+4
|
* Fixed PEP 378 example.Eric Smith2010-04-061-6/+1
|
* #8320: document return value of recv_into().Georg Brandl2010-04-061-4/+4
|
* ready _sre typesBenjamin Peterson2010-04-061-2/+3
|
* Fix several links and other mistakes.Ezio Melotti2010-04-061-166/+191
|
* Fix Issue8262 - changing RuntimeError wording to "Threads can only be ↵Senthil Kumaran2010-04-061-1/+1
| | | | started once"
* Issue #8321: Give access to OpenSSL version numbers from the `ssl` module,Antoine Pitrou2010-04-055-1/+92
| | | | | using the new attributes `ssl.OPENSSL_VERSION`, `ssl.OPENSSL_VERSION_INFO` and `ssl.OPENSSL_VERSION_NUMBER`.
* Fix a failing test on an apparently slow Windows buildbot.Brian Curtin2010-04-052-3/+4
| | | | | | | On slower Windows machines, waiting 0.1 seconds can sometimes not be enough for a subprocess to start and be ready to accept signals, causing the test to fail. One buildbot is also choking on input()/EOFError so that was changed to not depend on input.
* Use a better NaN test in _Py_HashDouble as well.Mark Dickinson2010-04-051-3/+6
|
* Classes that override __eq__ also need to define __hash__.Raymond Hettinger2010-04-052-0/+9
|
* Use a more robust infinity check in _Py_HashDouble.Mark Dickinson2010-04-052-3/+12
| | | | | This fixes a test_decimal failure on FreeBSD 8.0. (modf apparently doesn't follow C99 Annex F on FreeBSD.)
* Issue 8316: make test_gdb robust in the face of differing terminalR. David Murray2010-04-051-14/+13
| | | | widths. Patch by Dave Malcolm.
* added a note for Andrew, about distutils2Tarek Ziadé2010-04-051-0/+3
|
* Fix some broken URLs.Ezio Melotti2010-04-055-7/+7
|
* Ensure that the gdb hooks can be installed whenRonald Oussoren2010-04-051-1/+1
| | | | | | | | srcdir != builddir. Without this patch it is no longer possible to build python when you don't run configure from the root of the source tree.
* Further documentation fix for unittest.rstMichael Foord2010-04-051-1/+1
|
* Furterh documentation fix for unittest.rstMichael Foord2010-04-051-1/+1
|
* Documentation fixes for unittestMichael Foord2010-04-051-7/+8
|
* Fix markup errors.Ezio Melotti2010-04-053-3/+3
|
* Fix markup, punctuation and whitespaces in _winreg.rst.Ezio Melotti2010-04-051-73/+75
|
* #8212: rephrase the webservers howto and fix some mistakes.Ezio Melotti2010-04-051-374/+421
|
* fix escape_encode to return the correct consumed sizePhilip Jenvey2010-04-052-4/+8
|
* Issue 8287: try to fix the gdb-python install errors on SolarisR. David Murray2010-04-051-2/+3
| | | | and FreeBSD. Patch by Dave Malcolm.
* Document signal handling functions in unittest.rstMichael Foord2010-04-051-8/+33
|
* Adding documentation for new unittest.main() parametersMichael Foord2010-04-041-3/+7
|
* fix dis on new style classes #8310Benjamin Peterson2010-04-042-4/+6
|
* Fix markup in decimal.rst.Ezio Melotti2010-04-041-1/+1
|
* fix tabsBenjamin Peterson2010-04-041-1/+1
|
* tabifyBenjamin Peterson2010-04-041-1/+1
|
* unittest documentation formatting changesMichael Foord2010-04-041-13/+37
|
* Add tests for functools.total_ordering.Raymond Hettinger2010-04-042-2/+70
|
* Add versionchanged entry for Decimal(float) construction.Mark Dickinson2010-04-041-7/+15
| | | | | | Also add an example of constructing a Decimal directly from a float, update the quickstart tutorial, and tweak another couple of sentences.
* Add tests for cmp_to_key.Raymond Hettinger2010-04-048-31/+17
| | | | | | Adopt PEP 8 compliant function name. Factor-out existing uses cmp_to_key. Update documentation to use internal pointers instead of external resource.
* A handful of whitespace fixes in Modules/_struct.c.Mark Dickinson2010-04-041-20/+20
|
* Add functools.CmpToKey()Raymond Hettinger2010-04-043-0/+73
|
* Issue #8300 (__index__ handling in struct.pack): Remove redundant checkMark Dickinson2010-04-042-16/+28
| | | | and improve test coverage. Thanks Meador Inge for the patch.
* Documentation nitRaymond Hettinger2010-04-041-0/+2
|
* Use more specific assert* methods in test_struct.Ezio Melotti2010-04-041-8/+8
|
* Revert 79733 - Counter is new in 2.7, the versionadded is not necessary - ↵Ezio Melotti2010-04-041-3/+1
| | | | and fix a typo.
* Add a versionadded to Counter.subtract() doc.Ezio Melotti2010-04-041-0/+2
|
* Issue 5479: Add functools.total_ordering class decorator.Raymond Hettinger2010-04-041-0/+20
|
* use our own locale independent ctype macrosBenjamin Peterson2010-04-032-19/+4
| | | | requires building pyctype.o into pgen