mirror of https://github.com/python/cpython
Fix typos in mmap() error messages (GH-6173)
This commit is contained in:
parent
8f6eccdc64
commit
9308dea3e1
|
@ -1067,7 +1067,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
|
|||
return NULL;
|
||||
if (map_size < 0) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"memory mapped length must be postiive");
|
||||
"memory mapped length must be positive");
|
||||
return NULL;
|
||||
}
|
||||
if (offset < 0) {
|
||||
|
@ -1253,7 +1253,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
|
|||
|
||||
if (map_size < 0) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"memory mapped length must be postiive");
|
||||
"memory mapped length must be positive");
|
||||
return NULL;
|
||||
}
|
||||
if (offset < 0) {
|
||||
|
|
Loading…
Reference in New Issue