Updated comments

by @radarhere, lost during rebase
This commit is contained in:
Aleksandr Karpinskii 2024-07-28 17:19:50 +04:00
parent a6d83ec9cc
commit 302962dae1
2 changed files with 3 additions and 3 deletions

View File

@ -82,5 +82,5 @@ C-level Flags
^^^^^^^^^^^^^
Some compiling flags like ``WITH_THREADING``, ``WITH_IMAGECHOPS``, and other
``WITH_*`` were removed. These flags were not available in the build system,
``WITH_*`` were removed. These flags were not available through the build system,
but they could be edited in the C source.

View File

@ -2613,7 +2613,7 @@ _chop_overlay(ImagingObject *self, PyObject *args) {
return PyImagingNew(ImagingOverlay(self->image, imagep->image));
}
/* Graphics (ImageDraw) ----------------------------------------------- */
/* Fonts (ImageDraw and ImageFont) ------------------------------------ */
static PyObject *
_font_new(PyObject *self_, PyObject *args) {
@ -2842,7 +2842,7 @@ static struct PyMethodDef _font_methods[] = {
{NULL, NULL} /* sentinel */
};
/* -------------------------------------------------------------------- */
/* Graphics (ImageDraw) ----------------------------------------------- */
static PyObject *
_draw_new(PyObject *self_, PyObject *args) {