Krita Source Code Documentation
Loading...
Searching...
No Matches
PYKRITA Namespace Reference

Functions

PyObject * debug (PyObject *, PyObject *args)
 

Detailed Description

Note
Namespace name written in uppercase intentionally! It will appear in debug output from Python plugins...

Function Documentation

◆ debug()

PyObject * PYKRITA::debug ( PyObject * ,
PyObject * args )

Definition at line 25 of file PykritaModule.cpp.

26 {
27 const char* text;
28
29 if (PyArg_ParseTuple(args, "s", &text))
30 dbgScript << text;
31 Py_INCREF(Py_None);
32 return Py_None;
33 }
#define dbgScript
Definition kis_debug.h:56

References dbgScript.