Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7947: Clarify math module behaviour for IEEE 754 special cases, along | Mark Dickinson | 2010-04-06 | 1 | -26/+24 |
| | | | | with a number of additional minor edits and typo corrections. | ||||
* | Silence a 'comparison between signed and unsigned integer expressions' gcc ↵ | Mark Dickinson | 2010-04-06 | 1 | -1/+1 |
| | | | | warning. | ||||
* | Issue #8259: Clarify that there's an upper bound on the right-hand operand ↵ | Mark Dickinson | 2010-04-06 | 1 | -0/+3 |
| | | | | of a shift operator. | ||||
* | Issue #8193: Fix test_zlib failure with zlib 1.2.4. | Antoine Pitrou | 2010-04-06 | 2 | -1/+3 |
| | |||||
* | Misc/NEWS entry for r79843. | Mark Dickinson | 2010-04-06 | 1 | -0/+4 |
| | |||||
* | Issue #8259: Get rid of 'outrageous left shift count' error when | Mark Dickinson | 2010-04-06 | 1 | -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 Pitrou | 2010-04-06 | 1 | -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 Smith | 2010-04-06 | 1 | -0/+5 |
| | |||||
* | Add JP. | Georg Brandl | 2010-04-06 | 1 | -1/+4 |
| | |||||
* | Fixed PEP 378 example. | Eric Smith | 2010-04-06 | 1 | -6/+1 |
| | |||||
* | #8320: document return value of recv_into(). | Georg Brandl | 2010-04-06 | 1 | -4/+4 |
| | |||||
* | ready _sre types | Benjamin Peterson | 2010-04-06 | 1 | -2/+3 |
| | |||||
* | Fix several links and other mistakes. | Ezio Melotti | 2010-04-06 | 1 | -166/+191 |
| | |||||
* | Fix Issue8262 - changing RuntimeError wording to "Threads can only be ↵ | Senthil Kumaran | 2010-04-06 | 1 | -1/+1 |
| | | | | started once" | ||||
* | Issue #8321: Give access to OpenSSL version numbers from the `ssl` module, | Antoine Pitrou | 2010-04-05 | 5 | -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 Curtin | 2010-04-05 | 2 | -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 Dickinson | 2010-04-05 | 1 | -3/+6 |
| | |||||
* | Classes that override __eq__ also need to define __hash__. | Raymond Hettinger | 2010-04-05 | 2 | -0/+9 |
| | |||||
* | Use a more robust infinity check in _Py_HashDouble. | Mark Dickinson | 2010-04-05 | 2 | -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 terminal | R. David Murray | 2010-04-05 | 1 | -14/+13 |
| | | | | widths. Patch by Dave Malcolm. | ||||
* | added a note for Andrew, about distutils2 | Tarek Ziadé | 2010-04-05 | 1 | -0/+3 |
| | |||||
* | Fix some broken URLs. | Ezio Melotti | 2010-04-05 | 5 | -7/+7 |
| | |||||
* | Ensure that the gdb hooks can be installed when | Ronald Oussoren | 2010-04-05 | 1 | -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.rst | Michael Foord | 2010-04-05 | 1 | -1/+1 |
| | |||||
* | Furterh documentation fix for unittest.rst | Michael Foord | 2010-04-05 | 1 | -1/+1 |
| | |||||
* | Documentation fixes for unittest | Michael Foord | 2010-04-05 | 1 | -7/+8 |
| | |||||
* | Fix markup errors. | Ezio Melotti | 2010-04-05 | 3 | -3/+3 |
| | |||||
* | Fix markup, punctuation and whitespaces in _winreg.rst. | Ezio Melotti | 2010-04-05 | 1 | -73/+75 |
| | |||||
* | #8212: rephrase the webservers howto and fix some mistakes. | Ezio Melotti | 2010-04-05 | 1 | -374/+421 |
| | |||||
* | fix escape_encode to return the correct consumed size | Philip Jenvey | 2010-04-05 | 2 | -4/+8 |
| | |||||
* | Issue 8287: try to fix the gdb-python install errors on Solaris | R. David Murray | 2010-04-05 | 1 | -2/+3 |
| | | | | and FreeBSD. Patch by Dave Malcolm. | ||||
* | Document signal handling functions in unittest.rst | Michael Foord | 2010-04-05 | 1 | -8/+33 |
| | |||||
* | Adding documentation for new unittest.main() parameters | Michael Foord | 2010-04-04 | 1 | -3/+7 |
| | |||||
* | fix dis on new style classes #8310 | Benjamin Peterson | 2010-04-04 | 2 | -4/+6 |
| | |||||
* | Fix markup in decimal.rst. | Ezio Melotti | 2010-04-04 | 1 | -1/+1 |
| | |||||
* | fix tabs | Benjamin Peterson | 2010-04-04 | 1 | -1/+1 |
| | |||||
* | tabify | Benjamin Peterson | 2010-04-04 | 1 | -1/+1 |
| | |||||
* | unittest documentation formatting changes | Michael Foord | 2010-04-04 | 1 | -13/+37 |
| | |||||
* | Add tests for functools.total_ordering. | Raymond Hettinger | 2010-04-04 | 2 | -2/+70 |
| | |||||
* | Add versionchanged entry for Decimal(float) construction. | Mark Dickinson | 2010-04-04 | 1 | -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 Hettinger | 2010-04-04 | 8 | -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 Dickinson | 2010-04-04 | 1 | -20/+20 |
| | |||||
* | Add functools.CmpToKey() | Raymond Hettinger | 2010-04-04 | 3 | -0/+73 |
| | |||||
* | Issue #8300 (__index__ handling in struct.pack): Remove redundant check | Mark Dickinson | 2010-04-04 | 2 | -16/+28 |
| | | | | and improve test coverage. Thanks Meador Inge for the patch. | ||||
* | Documentation nit | Raymond Hettinger | 2010-04-04 | 1 | -0/+2 |
| | |||||
* | Use more specific assert* methods in test_struct. | Ezio Melotti | 2010-04-04 | 1 | -8/+8 |
| | |||||
* | Revert 79733 - Counter is new in 2.7, the versionadded is not necessary - ↵ | Ezio Melotti | 2010-04-04 | 1 | -3/+1 |
| | | | | and fix a typo. | ||||
* | Add a versionadded to Counter.subtract() doc. | Ezio Melotti | 2010-04-04 | 1 | -0/+2 |
| | |||||
* | Issue 5479: Add functools.total_ordering class decorator. | Raymond Hettinger | 2010-04-04 | 1 | -0/+20 |
| | |||||
* | use our own locale independent ctype macros | Benjamin Peterson | 2010-04-03 | 2 | -19/+4 |
| | | | | requires building pyctype.o into pgen |