Skip to content

Commit 88e3121

Browse files
committed
Minor doc updates.
1 parent d133396 commit 88e3121

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pymongo/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ def aggregate(self, pipeline, **kwargs):
10911091
print doc
10921092
10931093
.. versionadded:: 2.3
1094-
.. versionchanged:: 2.5.1+
1094+
.. versionchanged:: 2.6
10951095
Added cursor support.
10961096
10971097
.. _aggregate command:

pymongo/mongo_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,12 +513,12 @@ def max_pool_size(self):
513513
a blocked operation will raise :exc:`~pymongo.errors.ConnectionFailure`
514514
after a timeout. By default ``waitQueueTimeoutMS`` is not set.
515515
516-
.. warning:: SIGNIFICANT BEHAVIOR CHANGE in 2.5.1+. Previously, this
516+
.. warning:: SIGNIFICANT BEHAVIOR CHANGE in 2.6. Previously, this
517517
parameter would limit only the idle sockets the pool would hold
518518
onto, not the number of open sockets. The default has also changed
519519
to 100.
520520
521-
.. versionchanged:: 2.5.1+
521+
.. versionchanged:: 2.6
522522
.. versionadded:: 1.11
523523
"""
524524
return self.__max_pool_size

pymongo/mongo_replica_set_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -941,12 +941,12 @@ def max_pool_size(self):
941941
a blocked operation will raise :exc:`~pymongo.errors.ConnectionFailure`
942942
after a timeout. By default ``waitQueueTimeoutMS`` is not set.
943943
944-
.. warning:: SIGNIFICANT BEHAVIOR CHANGE in 2.5.1+. Previously, this
944+
.. warning:: SIGNIFICANT BEHAVIOR CHANGE in 2.6. Previously, this
945945
parameter would limit only the idle sockets the pool would hold
946946
onto, not the number of open sockets. The default has also changed
947947
to 100.
948948
949-
.. versionchanged:: 2.5.1+
949+
.. versionchanged:: 2.6
950950
"""
951951
return self.__max_pool_size
952952

0 commit comments

Comments
 (0)