Issue 6261: Clarify behavior of random.uniform().
diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index ecfa607..6c7a04d 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -142,6 +142,8 @@
Return a random floating point number *N* such that ``a <= N <= b`` for
``a <= b`` and ``b <= N <= a`` for ``b < a``.
+ The end-point value ``b`` may or may not be included in the range
+ depending on floating-point rounding in the equation ``a + (b-a) * random()``.
.. function:: triangular(low, high, mode)