(self, *args, **kwargs)
| 113 | @undoc |
| 114 | class CUnicodeIO(StringIO): |
| 115 | def __init__(self, *args, **kwargs): |
| 116 | super().__init__(*args, **kwargs) |
| 117 | warn(("CUnicodeIO is deprecated since IPython 6.0. " |
| 118 | "Please use io.StringIO instead."), |
| 119 | DeprecationWarning, stacklevel=2) |
| 120 | |
| 121 | def _sorted_for_pprint(items): |
| 122 | """ |