diff options
author | Trent Mick <trentm@activestate.com> | 2000-08-12 22:14:34 (GMT) |
---|---|---|
committer | Trent Mick <trentm@activestate.com> | 2000-08-12 22:14:34 (GMT) |
commit | 20abf573eff8b4469ff38c42162a0d48c4e9b340 (patch) | |
tree | 56671b9cdefb27c30c66bdbd5d35e8f62433035e /Objects | |
parent | 361852f80e2972f4450636d21ae88332adf1cfa6 (diff) | |
download | cpython-20abf573eff8b4469ff38c42162a0d48c4e9b340.zip cpython-20abf573eff8b4469ff38c42162a0d48c4e9b340.tar.gz cpython-20abf573eff8b4469ff38c42162a0d48c4e9b340.tar.bz2 |
Clean up warning from Monterey compiler.
Properly end a comment block. It was terminated fine later but by a subsequent
block and. It was also in #if 0. This patch is so trivial I can't believe I am
talking about it. :)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 95f4761..1cda623 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3173,7 +3173,7 @@ unicode_center(PyUnicodeObject *self, PyObject *args) /* This code should go into some future Unicode collation support module. The basic comparison should compare ordinals on a naive - basis (this is what Java does and thus JPython too). + basis (this is what Java does and thus JPython too). */ /* speedy UTF-16 code point order comparison */ /* gleaned from: */ |