Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wrap line | Benjamin Peterson | 2008-05-26 | 1 | -1/+2 |
| | |||||
* | turn PyErr_WarnPy3k into a macro | Benjamin Peterson | 2008-05-26 | 1 | -1/+2 |
| | |||||
* | Added PyErr_WarnPy3k function. (issue 2671) I will be converting current ↵ | Benjamin Peterson | 2008-04-27 | 1 | -0/+1 |
| | | | | Py3k warnings to the use of this function soon. | ||||
* | Fix compiler warning Include/warnings.h:19:28: warning: no newline at end of ↵ | Christian Heimes | 2008-04-13 | 1 | -1/+2 |
| | | | | file | ||||
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 1 | -0/+19 |
'warnings' code in places where it was previously not possible (e.g., the parser). It could also potentially lead to a speed-up in interpreter start-up if the C version of the code (_warnings) is imported over the use of the Python version in key places. Closes issue #1631171. |