(*args)
| 144 | # Any string or object. They are converted to string and separated by space. |
| 145 | ## \ingroup python |
| 146 | def warning(*args): |
| 147 | |
| 148 | stdStr = " ".join(map(str, args)) |
| 149 | IECore.Msg.output(IECore.Msg.Level.Warning, __getCallContext(), stdStr ) |
| 150 | |
| 151 | # Sends info messages to the current message handler. |
| 152 | # Parameters: |
no test coverage detected