summaryrefslogtreecommitdiffstats
path: root/Objects/rangeobject.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-01-29 00:53:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-01-29 00:53:41 (GMT)
commit2a47c0fa23a3b84d767ee846f93f98aee7e2f5c3 (patch)
tree523699ec8462b44cfe31c02754164f6534716855 /Objects/rangeobject.c
parent4fd5a06580c2b03f0252553e4024f168ea054353 (diff)
downloadcpython-2a47c0fa23a3b84d767ee846f93f98aee7e2f5c3.zip
cpython-2a47c0fa23a3b84d767ee846f93f98aee7e2f5c3.tar.gz
cpython-2a47c0fa23a3b84d767ee846f93f98aee7e2f5c3.tar.bz2
Fix spelling mistakes. Bugfix candidates.
Diffstat (limited to 'Objects/rangeobject.c')
-rw-r--r--Objects/rangeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index 5095e52..da791fa 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -190,7 +190,7 @@ range_compare(rangeobject *r1, rangeobject *r2)
{
if (PyErr_Warn(PyExc_DeprecationWarning,
- "xrange object comparision is deprecated; "
+ "xrange object comparison is deprecated; "
"convert to list instead") < 0)
return -1;