summaryrefslogtreecommitdiff
path: root/Include/warnings.h
Commit message (Collapse)AuthorAgeFilesLines
* wrap lineBenjamin Peterson2008-05-261-1/+2
|
* turn PyErr_WarnPy3k into a macroBenjamin Peterson2008-05-261-1/+2
|
* Added PyErr_WarnPy3k function. (issue 2671) I will be converting current ↵Benjamin Peterson2008-04-271-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 Heimes2008-04-131-1/+2
| | | | file
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-121-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.