Update docstring of tempfile._RandomNameSequence (GH-6414) · python/cpython@335efd7 (original) (raw)

Original file line number Diff line number Diff line change
@@ -136,7 +136,7 @@ def _sanitize_params(prefix, suffix, dir):
136 136 class _RandomNameSequence:
137 137 """An instance of _RandomNameSequence generates an endless
138 138 sequence of unpredictable strings which can safely be incorporated
139 - into file names. Each string is six characters long. Multiple
139 + into file names. Each string is eight characters long. Multiple
140 140 threads can safely use the same instance at the same time.
141 141
142 142 _RandomNameSequence is an iterator."""