You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[API documentation](https://pymongo.readthedocs.io/en/stable/api/) and the [full changelog](https://pymongo.readthedocs.io/en/stable/changelog.html) for each release is available at [readthedocs.io](https://pymongo.readthedocs.io/en/stable/index.html).
25
+
19
26
## Support / Feedback
20
27
21
28
For issues with, questions about, or feedback for PyMongo, please look
Copy file name to clipboardExpand all lines: bson/__init__.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -58,10 +58,10 @@
58
58
the microsecond field is truncated.
59
59
.. [#dt2] all datetime.datetime instances are encoded as UTC. By default, they
60
60
are decoded as *naive* but timezone aware datetimes are also supported.
61
-
See :doc:`/examples/datetimes` for examples.
61
+
See `Dates and Times <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/dates-and-times/#dates-and-times>`_ for examples.
62
62
.. [#dt3] To enable decoding a bson UTC datetime to a :class:`~bson.datetime_ms.DatetimeMS`
63
-
instance see :ref:`handling-out-of-range-datetimes`.
64
-
.. [#uuid] For :py:class:`uuid.UUID` encoding and decoding behavior see :doc:`/examples/uuid`.
63
+
instance see `handling out of range datetimes <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/dates-and-times/#handling-out-of-range-datetimes>`_.
64
+
.. [#uuid] For :py:class:`uuid.UUID` encoding and decoding behavior see `<https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#universally-unique-ids--uuids->`_.
65
65
.. [#re] :class:`~bson.regex.Regex` instances and regular expression
66
66
objects from ``re.compile()`` are both saved as BSON regular expressions.
67
67
BSON regular expressions are decoded as :class:`~bson.regex.Regex`
Copy file name to clipboardExpand all lines: bson/binary.py
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ class UuidRepresentation:
79
79
:class:`~bson.binary.Binary` instance will be returned instead of a
80
80
:class:`uuid.UUID` instance.
81
81
82
-
See :ref:`unspecified-representation-details` for details.
82
+
See `unspecifiedrepresentationdetails <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#unspecified>`_ for details.
83
83
84
84
.. versionadded:: 3.11
85
85
"""
@@ -91,7 +91,7 @@ class UuidRepresentation:
91
91
and decoded from BSON binary, using RFC-4122 byte order with
92
92
binary subtype :data:`UUID_SUBTYPE`.
93
93
94
-
See :ref:`standard-representation-details` for details.
94
+
See `standardrepresentationdetails <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#standard>`_ for details.
95
95
96
96
.. versionadded:: 3.11
97
97
"""
@@ -103,7 +103,7 @@ class UuidRepresentation:
103
103
and decoded from BSON binary, using RFC-4122 byte order with
104
104
binary subtype :data:`OLD_UUID_SUBTYPE`.
105
105
106
-
See :ref:`python-legacy-representation-details` for details.
106
+
See `pythonlegacyrepresentationdetails <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#python_legacy>`_ for details.
107
107
108
108
.. versionadded:: 3.11
109
109
"""
@@ -115,7 +115,7 @@ class UuidRepresentation:
115
115
and decoded from BSON binary subtype :data:`OLD_UUID_SUBTYPE`,
116
116
using the Java driver's legacy byte order.
117
117
118
-
See :ref:`java-legacy-representation-details` for details.
118
+
See `Java Legacy UUID <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#java_legacy>`_ for details.
119
119
120
120
.. versionadded:: 3.11
121
121
"""
@@ -127,7 +127,7 @@ class UuidRepresentation:
127
127
and decoded from BSON binary subtype :data:`OLD_UUID_SUBTYPE`,
128
128
using the C# driver's legacy byte order.
129
129
130
-
See :ref:`csharp-legacy-representation-details` for details.
130
+
See `C# Legacy UUID <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#csharp_legacy>`_ for details.
See :ref:`handling-uuid-data-example` for details.
331
+
See `UUID representations <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#universally-unique-ids--uuids->`_ for details.
See :ref:`handling-uuid-data-example` for details.
380
+
See `UUID representations <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/data-formats/uuid/#universally-unique-ids--uuids->`_ for details.
0 commit comments