Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mention that GCC 4.1 is also affected, and that | Martin v. Löwis | 2006-09-18 | 1 | -3/+6 |
| | | | | adding -fwrapv helps. | ||||
* | Discourage using GCC 4.2 for Python. | Martin v. Löwis | 2006-09-18 | 1 | -0/+8 |
| | |||||
* | Workaround for bug #1558983 | Ronald Oussoren | 2006-09-17 | 2 | -1/+6 |
| | | | | | | | | There is an issue with custom icons on directories in the 2.5c2 installer, don't set a custom icon on "/Applications/MacPython 2.5" for now. Also make sure that the installer doesn't crap out when the Makefile in the system's python installation has other customizations than we expect. | ||||
* | revise explanation of returns_unicode to reflect bool values | Fred Drake | 2006-09-15 | 1 | -3/+4 |
| | | | | and to include the default value | ||||
* | - fix module name in links in formatted documentation | Fred Drake | 2006-09-15 | 1 | -25/+14 |
| | | | | - minor markup cleanup | ||||
* | Backport uuid doc cleanup from rev. 51883. | Georg Brandl | 2006-09-15 | 1 | -22/+21 |
| | |||||
* | Correct elementtree module index entry. | Georg Brandl | 2006-09-15 | 1 | -1/+1 |
| | | | | (backport) | ||||
* | Backport rev 51866-51868 from trunk (sqlite3 documentation fixes). | Georg Brandl | 2006-09-14 | 1 | -48/+51 |
| | |||||
* | Add sgml_input.html. | Martin v. Löwis | 2006-09-12 | 1 | -0/+1 |
| | |||||
* | Tagging for release of Python 2.5c2 | Anthony Baxter | 2006-09-12 | 1 | -0/+1 |
| | |||||
* | remove 2.5 final section from NEWS.txt until after rc2 (reduced confusion)v2.5c2 | Anthony Baxter | 2006-09-11 | 1 | -7/+0 |
| | |||||
* | preparing for 2.5c2 | Anthony Baxter | 2006-09-11 | 6 | -6/+11 |
| | |||||
* | Building with HP's cc on HP-UX turned up a couple of problems. | Neal Norwitz | 2006-09-11 | 2 | -1/+9 |
| | | | | | | | | | | | | | _PyGILState_NoteThreadState was declared as static inconsistently. Make it static as it's not necessary outside of this module. Some tests failed because errno was reset to 0. (I think the tests that failed were at least: test_fcntl and test_mailbox). Ensure that errno doesn't change after a call to Py_END_ALLOW_THREADS. This only affected debug builds. This needs to be ported to HEAD. I'll try to remember to do that tomorrow. (Anyone, feel free to port it.) | ||||
* | Properly handle a NULL returned from PyArena_New(). | Neal Norwitz | 2006-09-11 | 1 | -2/+4 |
| | | | | Klocwork #364. Will port to head. | ||||
* | As mentioned on python-dev, reverting patch #1504333 because it introduced | Neal Norwitz | 2006-09-11 | 4 | -25/+236 |
| | | | | | | | | an infinite loop in rev 47154. This patch also adds a test to prevent the regression. Will backport to 2.4 and head later. | ||||
* | Add NEWS entries for ctypes backports. | Neal Norwitz | 2006-09-11 | 1 | -1/+5 |
| | |||||
* | Backport rev 51820 from Thomas Heller | Neal Norwitz | 2006-09-11 | 2 | -2/+18 |
| | | | | | | The cast function did not accept c_char_p or c_wchar_p instances as first argument, and failed with a 'bad argument to internal function' error message. | ||||
* | Backport rev 51819 from Thomas Heller | Neal Norwitz | 2006-09-11 | 2 | -2/+11 |
| | | | | | | Anonymous structure fields that have a bit-width specified did not work, and they gave a strange error message from PyArg_ParseTuple: function takes exactly 2 arguments (3 given). | ||||
* | Remove __unicode__ method so that ``unicode(BaseException)`` succeeds. | Brett Cannon | 2006-09-09 | 4 | -19/+13 |
| | | | | Fixes bug #1551432. | ||||
* | Fix typo in example | Andrew M. Kuchling | 2006-09-08 | 1 | -1/+1 |
| | |||||
* | Use native SQLite types | Andrew M. Kuchling | 2006-09-08 | 1 | -2/+2 |
| | |||||
* | Explain SQLite a bit more clearly | Andrew M. Kuchling | 2006-09-08 | 1 | -6/+8 |
| | |||||
* | Backport inspect.py fix from rev 51803 | Nick Coghlan | 2006-09-08 | 3 | -2/+31 |
| | |||||
* | Backport rev. 51798 from trunk: | Georg Brandl | 2006-09-08 | 1 | -8/+35 |
| | | | | fix setobject.c refcounts and error checks. | ||||
* | Backport from trunk r51737: | Hye-Shik Chang | 2006-09-07 | 6 | -28/+53 |
| | | | | | | | | | Fixed a few bugs on cjkcodecs: - gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly. - iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312 codepoints to conform the standard. - iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 0213:2 codepoints now. | ||||
* | Remove one glaring error and update several version numbers. | Ronald Oussoren | 2006-09-07 | 1 | -11/+7 |
| | |||||
* | No, the problem was actually because buildbot uses a StringIO in | Gustavo Niemeyer | 2006-09-06 | 1 | -6/+0 |
| | | | | | place of sys.stdout while running tests. Removing one more test to make buildbot happy. | ||||
* | Fixed bug #1531862: Do not close standard file descriptors in subprocess. | Gustavo Niemeyer | 2006-09-06 | 3 | -8/+18 |
| | | | | | | | | | Let's try that once more. Buildbots were broken last time, but probably because tests were sending data to stderr for testing it (sending to a file doesn't touch the problem). The fix is still the same, but tests were reduced (removing tests to be able to fix something is weird, but oh well). | ||||
* | Backport bug fix for SF bug report #1546372. | Marc-André Lemburg | 2006-09-06 | 2 | -2/+14 |
| | |||||
* | Fix missing import of the types module in logging.config. | Georg Brandl | 2006-09-06 | 2 | -1/+3 |
| | | | | (backport from rev. 51785) | ||||
* | Backport of r51379 from trunk: | Thomas Heller | 2006-09-06 | 1 | -0/+16 |
| | | | | | | | | | Add asserts to check for 'impossible' NULL values, with comments. In one place where I'm not 1000% sure about the non-NULL, raise a RuntimeError for safety. This should fix the klocwork issues that Neal sent me. If so, it should be applied to the release25-maint branch also. | ||||
* | Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. | Georg Brandl | 2006-09-06 | 3 | -28/+25 |
| | | | | | | Also make sure that every exception class has __module__ set to 'exceptions'. (backport) | ||||
* | Bug #1550983: emit better error messages for erroneous relative | Georg Brandl | 2006-09-06 | 2 | -2/+6 |
| | | | | | imports (if not in package and if beyond toplevel package). (backport from rev. 51765) | ||||
* | Bug #1551427: fix a wrong NULL pointer check in the win32 version | Georg Brandl | 2006-09-06 | 2 | -1/+4 |
| | | | | | of os.urandom(). (backport from rev. 51762) | ||||
* | Revert 51759 because it broke all the buildbots | Neal Norwitz | 2006-09-06 | 3 | -48/+8 |
| | |||||
* | Backporting fix for bug #1531862, committed in 51758, into 2.5, | Gustavo Niemeyer | 2006-09-06 | 3 | -8/+48 |
| | | | | making subprocess not close standard file descriptors. | ||||
* | Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz. | Sean Reifscheider | 2006-09-05 | 1 | -1/+1 |
| | |||||
* | Rearrange example a bit, and show rpartition() when separator is not found | Andrew M. Kuchling | 2006-09-05 | 1 | -2/+4 |
| | |||||
* | Bug #1552618: change docs of dict.has_key() to reflect recommendation | Georg Brandl | 2006-09-05 | 1 | -5/+5 |
| | | | | | to use "in". (backport from rev. 51740) | ||||
* | Add another NEWS entry for a fix already in 2.5c1 | Neal Norwitz | 2006-09-05 | 1 | -0/+2 |
| | |||||
* | Add some NEWS for fixes already in 2.5c1 | Neal Norwitz | 2006-09-05 | 1 | -0/+4 |
| | |||||
* | Backport 51669: Make sure memory is properly cleaned up in file_init (even ↵ | Neal Norwitz | 2006-09-05 | 1 | -1/+1 |
| | | | | though this should not be able to happen since we already parsed the args) | ||||
* | Bug #1520864 (again): unpacking singleton tuples in list comprehensions and | Neal Norwitz | 2006-09-05 | 4 | -5/+23 |
| | | | | | | | generator expressions (x for x, in ... ) works again. Sigh, I only fixed for loops the first time, not list comps and genexprs too. I couldn't find any more unpacking cases where there is a similar bug lurking. | ||||
* | Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34]. | Neal Norwitz | 2006-09-05 | 5 | -5/+7 |
| | |||||
* | Backport fix from 51683. | Neal Norwitz | 2006-09-05 | 2 | -0/+6 |
| | |||||
* | Backport fix for SF bug #1550714, itertools.tee raises SystemError | Neal Norwitz | 2006-09-05 | 3 | -2/+13 |
| | |||||
* | Fix str.rpartition(sep) when sep is not found in str. | Neal Norwitz | 2006-09-05 | 6 | -11/+14 |
| | | | | Partially from SF patch #1551339, but also taken from head. | ||||
* | This was found by Guido AFAIK on p3yk (sic) branch. | Neal Norwitz | 2006-09-05 | 2 | -1/+8 |
| | |||||
* | Fix SF bug #1546288, crash in dict_equal | Neal Norwitz | 2006-09-05 | 3 | -2/+22 |
| | |||||
* | Fix SF #1552093, eval docstring typo (3 ps in mapping) | Neal Norwitz | 2006-09-05 | 1 | -1/+1 |
| |