One-character typo fix.

os.path.commonprefix always returns a valid *path*, not a valid *patch*.
This commit is contained in:
Larry Hastings 2015-08-14 08:03:30 -07:00
parent 76ba13bf71
commit 721b9aab10
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ os.path
* New :func:`~os.path.commonpath` function that extracts common path prefix.
Unlike the :func:`~os.path.commonprefix` function, it always returns a valid
patch. (Contributed by Rafik Draoui and Serhiy Storchaka in :issue:`10395`.)
path. (Contributed by Rafik Draoui and Serhiy Storchaka in :issue:`10395`.)
pickle
------