Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | On OS X, use os.uname() instead of gestalt.sysv(...) to get the | Thomas Heller | 2007-10-11 | 1 | -0/+3 |
| | | | | | operating system version. This allows to use ctypes when Python was configured with --disable-toolbox-glue. | ||||
* | Eliminate camelcase function name | Raymond Hettinger | 2007-10-08 | 1 | -1/+1 |
| | |||||
* | Add a note about fixing some more warnings found by Coverity. | Neal Norwitz | 2007-10-05 | 1 | -0/+2 |
| | |||||
* | Add __asdict__() to NamedTuple and refine the docs. | Raymond Hettinger | 2007-10-05 | 1 | -0/+2 |
| | | | | | | Add maxlen support to deque() and fixup docs. Partially fix __reduce__(). The None as a third arg was no longer supported. Still needs work on __reduce__() to handle recursive inputs. | ||||
* | itertools.count() no longer limited to sys.maxint. | Raymond Hettinger | 2007-10-04 | 1 | -0/+3 |
| | |||||
* | enumerate() is no longer bounded to using sequences shorter than LONG_MAX. ↵ | Raymond Hettinger | 2007-10-03 | 1 | -0/+4 |
| | | | | The possibility of overflow was sending some newsgroup posters into a tizzy. | ||||
* | tuple.__repr__ did not consider a reference loop as it is not possible from | Brett Cannon | 2007-09-30 | 1 | -0/+6 |
| | | | | | | | | | | Python code; but it is possible from C. object.__str__ had the issue of not expecting a type to doing something within it's tp_str implementation that could trigger an infinite recursion, but it could in C code.. Both found thanks to BaseException and how it handles its repr. Closes issue #1686386. Thanks to Thomas Herve for taking an initial stab at coming up with a solution. | ||||
* | Patch #1541463: optimize performance of cgi.FieldStorage operations. | Georg Brandl | 2007-09-20 | 1 | -0/+2 |
| | |||||
* | Annotated the correction to urllib.py, issue #1177 | Facundo Batista | 2007-09-19 | 1 | -1/+1 |
| | |||||
* | Decimal is updated, :) | Facundo Batista | 2007-09-17 | 1 | -0/+2 |
| | |||||
* | Add a bunch of GIL release/acquire points in tp_print implementations and for | Brett Cannon | 2007-09-17 | 1 | -0/+5 |
| | | | | | | PyObject_Print(). Closes issue #1164. | ||||
* | Bug #1153: repr.repr() now doesn't require set and dictionary items | Georg Brandl | 2007-09-12 | 1 | -0/+3 |
| | | | | to be orderable to properly represent them. | ||||
* | Generators had their throw() method allowing string exceptions. That's a | Brett Cannon | 2007-09-11 | 1 | -0/+3 |
| | | | | | | | no-no. Fixes issue #1147. Need to fix 2.5 to raise a proper warning if a string exception is passed in. | ||||
* | Fix a possible segfault from recursing too deep to get the repr of a list. | Brett Cannon | 2007-09-10 | 1 | -0/+3 |
| | | | | Closes issue #1096. | ||||
* | Add a 'c_longdouble' type to the ctypes module. | Thomas Heller | 2007-09-07 | 1 | -0/+2 |
| | |||||
* | Fix a crasher where Python code managed to infinitely recurse in C code without | Brett Cannon | 2007-09-07 | 1 | -0/+6 |
| | | | | | | | ever going back out to Python code in PyObject_Call(). Required introducing a static RuntimeError instance so that normalizing an exception there is no reliance on a recursive call that would put the exception system over the recursion check itself. | ||||
* | Patch #786737: Allow building in a tree of symlinks pointing to | Martin v. Löwis | 2007-09-05 | 1 | -0/+3 |
| | | | | a readonly source. | ||||
* | - Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*. | Matthias Klose | 2007-09-04 | 1 | -0/+2 |
| | |||||
* | - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify | Matthias Klose | 2007-09-04 | 1 | -0/+3 |
| | | | | to include some information about the build environment. | ||||
* | Patch #1031213: Decode source line in SyntaxErrors back to its original | Martin v. Löwis | 2007-09-04 | 2 | -0/+4 |
| | | | | source encoding. Will backport to 2.5. | ||||
* | Patch #1388440: Add set_completion_display_matches_hook and | Martin v. Löwis | 2007-09-04 | 2 | -0/+4 |
| | | | | get_completion_type to readline. | ||||
* | - Added support for linking the bsddb module against BerkeleyDB 4.6.x. | Matthias Klose | 2007-09-03 | 1 | -1/+2 |
| | |||||
* | Bug #1737210: Change Manufacturer of Windows installer to PSF. | Martin v. Löwis | 2007-09-01 | 1 | -0/+2 |
| | | | | Will backport to 2.5. | ||||
* | Bug #1709599: Run test_1565150 only if the file system is NTFS. | Martin v. Löwis | 2007-08-30 | 1 | -0/+2 |
| | |||||
* | Bug #1746880: Correctly install DLLs into system32 folder on Win64. | Martin v. Löwis | 2007-08-30 | 1 | -0/+2 |
| | |||||
* | added note on new ssl module and deprecation of socket.ssl | Bill Janssen | 2007-08-30 | 1 | -0/+2 |
| | |||||
* | Add Bill as a developer | Neal Norwitz | 2007-08-29 | 1 | -0/+3 |
| | |||||
* | Recent items. | Skip Montanaro | 2007-08-29 | 1 | -1/+6 |
| | |||||
* | TarFile.__init__() no longer fails if no name argument is passed and | Lars Gustäbel | 2007-08-28 | 1 | -0/+3 |
| | | | | | | the fileobj argument has no usable name attribute (e.g. StringIO). (will backport to 2.5) | ||||
* | News about functools.reduce. | Guido van Rossum | 2007-08-27 | 1 | -0/+3 |
| | |||||
* | Server-side SSL and certificate validation, by Bill Janssen. | Guido van Rossum | 2007-08-25 | 1 | -0/+2 |
| | | | | | While cleaning up Bill's C style, I may have cleaned up some code he didn't touch as well (in _ssl.c). | ||||
* | uuid creation is now threadsafe, backport from py3k rev. 57375. | Georg Brandl | 2007-08-24 | 1 | -0/+2 |
| | |||||
* | Make test_runpy re-entrant. | Brett Cannon | 2007-08-23 | 1 | -0/+4 |
| | |||||
* | Add cheot-ga-keut composed make-up sequence support in EUC-KR codec. | Hye-Shik Chang | 2007-08-20 | 1 | -0/+3 |
| | |||||
* | Remove Mikael as the maintainer of BeOS at his request. With no maintainer | Brett Cannon | 2007-08-18 | 1 | -1/+2 |
| | | | | should the port be deprecated in 2.6? | ||||
* | Remove news entry for test.test_support.guard_warnings_filter as it has been | Brett Cannon | 2007-08-17 | 1 | -4/+0 |
| | | | | removed. | ||||
* | Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. | Walter Dörwald | 2007-08-17 | 1 | -0/+2 |
| | |||||
* | Update the tools before building the docs | Neal Norwitz | 2007-08-17 | 1 | -1/+1 |
| | |||||
* | Try to make the comment a little clearer. | Neal Norwitz | 2007-08-16 | 1 | -3/+4 |
| | |||||
* | Support the new doc system. | Neal Norwitz | 2007-08-16 | 1 | -4/+8 |
| | |||||
* | Added Jeffrey Yasskin, reformat some lines to be consistent (and shorter). | Neal Norwitz | 2007-08-10 | 1 | -6/+7 |
| | |||||
* | Revert the fix for #1548891, it broke backwards compatibility with arbitrary ↵ | Georg Brandl | 2007-08-08 | 1 | -4/+0 |
| | | | | | | read buffers. Fixes #1730114. | ||||
* | Fix gb18030 codec's bug that doesn't map two-byte characters on | Hye-Shik Chang | 2007-08-04 | 1 | -0/+3 |
| | | | | GB18030 extension in encoding. (bug reported by Bjorn Stabell) | ||||
* | Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backport | Neal Norwitz | 2007-08-03 | 1 | -0/+2 |
| | |||||
* | - Allow Emacs 22 for building the documentation in info format. | Matthias Klose | 2007-08-02 | 1 | -0/+1 |
| | |||||
* | Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+. | Martin v. Löwis | 2007-07-31 | 1 | -0/+2 |
| | |||||
* | Bug #1704793: Return UTF-16 pair if unicodedata.lookup cannot | Martin v. Löwis | 2007-07-28 | 1 | -0/+3 |
| | | | | represent the result in a single character. | ||||
* | Bug #978833: Close https sockets by releasing the _ssl object. | Martin v. Löwis | 2007-07-27 | 1 | -0/+2 |
| | |||||
* | Change location of the package index to pypi.python.org/pypi | Martin v. Löwis | 2007-07-25 | 1 | -0/+2 |
| | |||||
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -0/+4 |
| | | | | | backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT. |