Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Whitespace normalization. | Tim Peters | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Fix gcc (4.0.x) warning about use of uninitialized variable. | Thomas Wouters | 2006-03-01 | 1 | -0/+1 | |
| | ||||||
* | Patch #1440601: Add col_offset attribute to AST nodes. | Martin v. Löwis | 2006-03-01 | 16 | -244/+382 | |
| | ||||||
* | Rework channelnumber/samplesize detetion code's output variables a bit to | Thomas Wouters | 2006-03-01 | 2 | -14/+12 | |
| | | | | | convince gcc (4.0.x) the variables are never used uninitialized (and raising a proper exception if they ever are.) | |||||
* | Fix incompatible assignment warning from previous checkin. | Thomas Wouters | 2006-03-01 | 1 | -1/+2 | |
| | ||||||
* | Fix gcc (4.0.x) warning about use of uninitialized variables. | Thomas Wouters | 2006-03-01 | 1 | -1/+2 | |
| | | | | | (PyMarshal_ReadShortFromFile() is only used in zipimport.c, I don't believe the extra initializations will matter one way or another.) | |||||
* | Silence gcc (4.0.x) warning about use of uninitialized value. | Thomas Wouters | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Document PEP 352 changes. Also added GeneratorExit. | Brett Cannon | 2006-03-01 | 4 | -74/+63 | |
| | ||||||
* | Fix uninitialized value. (Why are we using bools instead of ints, like we do | Thomas Wouters | 2006-03-01 | 1 | -1/+1 | |
| | | | | everywhere else?) | |||||
* | Fix brainfart. | Thomas Wouters | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Remove gcc (4.0.x) warning about uninitialized value by explicitly setting | Thomas Wouters | 2006-03-01 | 1 | -2/+1 | |
| | | | | | | | the sentinel value in the main function, rather than the helper. This function could possibly do with an early-out if any of the helper calls ends up with a len of 0, but I doubt it really matters (how common are malformed hangul syllables, really?) | |||||
* | Make Py_ssize_t-clean. | Thomas Wouters | 2006-03-01 | 1 | -8/+13 | |
| | ||||||
* | Make Py_ssize_t-clean. | Thomas Wouters | 2006-03-01 | 1 | -17/+18 | |
| | ||||||
* | Fix more memory leaks. Will backport to 2.4. | Martin v. Löwis | 2006-03-01 | 1 | -1/+5 | |
| | ||||||
* | Fix C99-ism, and add XXX to comment | Thomas Wouters | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Make failures in test cases print failing source file. | Martin v. Löwis | 2006-03-01 | 1 | -1/+5 | |
| | ||||||
* | Update for 'with' statement. | Brett Cannon | 2006-03-01 | 3 | -17/+24 | |
| | ||||||
* | Fix a bug in nested() - if one of the sub-context-managers swallows the | Guido van Rossum | 2006-03-01 | 2 | -1/+58 | |
| | | | | exception, it should not be propagated up. With unit tests. | |||||
* | Change GC refcount to Py_ssize_t. | Martin v. Löwis | 2006-03-01 | 2 | -2/+2 | |
| | ||||||
* | Reconst parameters that lost their const in the AST merge. | Martin v. Löwis | 2006-03-01 | 2 | -3/+3 | |
| | ||||||
* | Fix warning that texcheck complained about. | Martin v. Löwis | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Tabify and reflow some long lines. | Jeremy Hylton | 2006-03-01 | 1 | -696/+702 | |
| | | | | | Much of the peephole optimizer is now indented badly, but it's about to be revised anyway. | |||||
* | Add missing DECREF. | Jeremy Hylton | 2006-03-01 | 1 | -1/+5 | |
| | ||||||
* | markup glitch (spotted by George Yoshida) | Fredrik Lundh | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Remove svn:mime-type (inexplicably set to a binary type), | Tim Peters | 2006-03-01 | 3 | -294/+294 | |
| | | | | and set svn:eol-style to native, on some text files. | |||||
* | Set svn:eol-style to native. | Tim Peters | 2006-03-01 | 5 | -281/+281 | |
| | ||||||
* | Fix parsing of exception_hierarchy.txt when a platform-specific exception is | Brett Cannon | 2006-03-01 | 1 | -0/+1 | |
| | | | | specified. Hopefully this wll bring warming to Tim's Windows-loving heart. | |||||
* | Document new Py_ssize_t API. | Martin v. Löwis | 2006-03-01 | 2 | -1/+27 | |
| | ||||||
* | Use %ld and casts to long for refcount printing, in absense of a universally | Thomas Wouters | 2006-03-01 | 3 | -12/+31 | |
| | | | | | available %zd format character. Mark with an XXX comment so we can fix this, later. | |||||
* | Use %zd format characters for Py_ssize_t types. | Thomas Wouters | 2006-03-01 | 1 | -6/+6 | |
| | ||||||
* | Remove redundant isinstance() check. | Thomas Wouters | 2006-03-01 | 1 | -1/+1 | |
| | ||||||
* | Put back the essence of Jeremy's original XXX comment. | Thomas Wouters | 2006-03-01 | 1 | -1/+3 | |
| | ||||||
* | Add tool to check documentation against declaration. | Martin v. Löwis | 2006-03-01 | 1 | -0/+157 | |
| | ||||||
* | Make documentation match the implementation. | Martin v. Löwis | 2006-03-01 | 6 | -167/+168 | |
| | ||||||
* | Repair mangled code in the Windows flavor of | Tim Peters | 2006-03-01 | 1 | -2/+1 | |
| | | | | | | | | | | | posix__getfullpathname(). In partial answer to the now-deleted XXX comment: /* XXX(twouters) Why use 'et#' here at all? insize isn't used */ `insize` is an input parameter too, and it was left uninitialized, leading to seemingly random failures. | |||||
* | Add Misc/NEWS entry for Misc/Vim/vim_syntax.py . Also use conditional | Brett Cannon | 2006-03-01 | 2 | -4/+5 | |
| | | | | expression for the hell of it. | |||||
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 16 | -232/+570 | |
| | | | | | | | | | added message attribute compared to the previous version of Exception. It is also a new-style class, making all exceptions now new-style. KeyboardInterrupt and SystemExit inherit from BaseException directly. String exceptions now raise DeprecationWarning. Applies patch 1104669, and closes bugs 1012952 and 518846. | |||||
* | Use Py_ssize_t for PyArg_UnpackTuple arguments. | Martin v. Löwis | 2006-03-01 | 2 | -3/+3 | |
| | ||||||
* | Remove unused field. | Martin v. Löwis | 2006-03-01 | 1 | -1/+0 | |
| | ||||||
* | Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. | Martin v. Löwis | 2006-03-01 | 1 | -4/+4 | |
| | ||||||
* | Py_ssize_t-ify. | Thomas Wouters | 2006-03-01 | 1 | -5/+10 | |
| | ||||||
* | Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on | Thomas Wouters | 2006-03-01 | 1 | -4/+5 | |
| | | | | | | | | | non-32bit platforms. Will still only allow 32 bits in a timestamp on Win64, but at least it won't crash, and it'll work right on platforms where longs are big enough to contain time_t's. (A better-working, although conceptually less-right fix would have been to use Py_ssize_t here, but Martin and Tim won't let me.) | |||||
* | Move #include to outside "extern C {}", before Tim figures out it'll break | Thomas Wouters | 2006-02-28 | 1 | -2/+3 | |
| | | | | VC++. | |||||
* | Regenerate. | Thomas Wouters | 2006-02-28 | 1 | -0/+2 | |
| | ||||||
* | Don't pollute namespace as bad as before. All the types are static now. | Neal Norwitz | 2006-02-28 | 2 | -159/+159 | |
| | ||||||
* | Make 'as' an actual keyword when with's future statement is used. Not | Thomas Wouters | 2006-02-28 | 5 | -206/+212 | |
| | | | | actually necessary for functionality, but good for transition. | |||||
* | Change non-ASCII warning into a SyntaxError. | Martin v. Löwis | 2006-02-28 | 1 | -10/+6 | |
| | ||||||
* | Include code.h more sanely. | Thomas Wouters | 2006-02-28 | 1 | -3/+2 | |
| | ||||||
* | No need to export PySTEntry_New, it is only used in symtable.c | Neal Norwitz | 2006-02-28 | 2 | -3/+3 | |
| | ||||||
* | Set eol-style on new .py files. | Tim Peters | 2006-02-28 | 0 | -0/+0 | |
| |