diff --git a/bson/__init__.py b/bson/__init__.py index 66c4580e0..77bae030a 100644 --- a/bson/__init__.py +++ b/bson/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/_cbsonmodule.c b/bson/_cbsonmodule.c index 224b819da..5d20449d7 100644 --- a/bson/_cbsonmodule.c +++ b/bson/_cbsonmodule.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/bson/_cbsonmodule.h b/bson/_cbsonmodule.h index e6af92951..080705e7b 100644 --- a/bson/_cbsonmodule.h +++ b/bson/_cbsonmodule.h @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/bson/binary.py b/bson/binary.py index c6bc7ba84..4620a1c81 100644 --- a/bson/binary.py +++ b/bson/binary.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/buffer.c b/bson/buffer.c index 3c5f71bba..c60fc4464 100644 --- a/bson/buffer.c +++ b/bson/buffer.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/bson/buffer.h b/bson/buffer.h index 455c47de1..96b1d0f83 100644 --- a/bson/buffer.h +++ b/bson/buffer.h @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/bson/code.py b/bson/code.py index a66773016..3a5c6b5d6 100644 --- a/bson/code.py +++ b/bson/code.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/codec_options.py b/bson/codec_options.py index fa936ffb2..002f3f4aa 100644 --- a/bson/codec_options.py +++ b/bson/codec_options.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/dbref.py b/bson/dbref.py index ae908d161..3ec546349 100644 --- a/bson/dbref.py +++ b/bson/dbref.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/encoding_helpers.c b/bson/encoding_helpers.c index 24826963a..a93c2a841 100644 --- a/bson/encoding_helpers.c +++ b/bson/encoding_helpers.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/bson/encoding_helpers.h b/bson/encoding_helpers.h index 20aac9baa..b1a90fa51 100644 --- a/bson/encoding_helpers.h +++ b/bson/encoding_helpers.h @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/bson/errors.py b/bson/errors.py index 76e59e870..b6c3864aa 100644 --- a/bson/errors.py +++ b/bson/errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/int64.py b/bson/int64.py index d3052cef5..77e981230 100644 --- a/bson/int64.py +++ b/bson/int64.py @@ -1,3 +1,19 @@ +# Copyright 2014-2015 MongoDB, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""A BSON wrapper for long (int in python3)""" + from bson.py3compat import PY3 if PY3: diff --git a/bson/json_util.py b/bson/json_util.py index 5ac43c367..cbbff7c1b 100644 --- a/bson/json_util.py +++ b/bson/json_util.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/max_key.py b/bson/max_key.py index a6f50dcab..9ed9ab565 100644 --- a/bson/max_key.py +++ b/bson/max_key.py @@ -1,4 +1,4 @@ -# Copyright 2010-2014 MongoDB, Inc. +# Copyright 2010-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/min_key.py b/bson/min_key.py index 48d020f6c..ee135aff0 100644 --- a/bson/min_key.py +++ b/bson/min_key.py @@ -1,4 +1,4 @@ -# Copyright 2010-2014 MongoDB, Inc. +# Copyright 2010-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -44,4 +44,4 @@ class MinKey(object): return False def __repr__(self): - return "MinKey()" \ No newline at end of file + return "MinKey()" diff --git a/bson/objectid.py b/bson/objectid.py index dbcd2e5f9..42b610922 100644 --- a/bson/objectid.py +++ b/bson/objectid.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/py3compat.py b/bson/py3compat.py index 88d7b42e2..b300b1416 100644 --- a/bson/py3compat.py +++ b/bson/py3compat.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/bson/regex.py b/bson/regex.py index 3139ea0f8..375489465 100644 --- a/bson/regex.py +++ b/bson/regex.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 MongoDB, Inc. +# Copyright 2013-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/son.py b/bson/son.py index a2ad43e62..dd5f0f64c 100644 --- a/bson/son.py +++ b/bson/son.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/timestamp.py b/bson/timestamp.py index a0cbe92fd..d00e29da0 100644 --- a/bson/timestamp.py +++ b/bson/timestamp.py @@ -1,4 +1,4 @@ -# Copyright 2010-2014 MongoDB, Inc. +# Copyright 2010-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bson/tz_util.py b/bson/tz_util.py index 75e070cf6..6ec918fb2 100644 --- a/bson/tz_util.py +++ b/bson/tz_util.py @@ -1,4 +1,4 @@ -# Copyright 2010-2014 MongoDB, Inc. +# Copyright 2010-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/doc/conf.py b/doc/conf.py index b728a74d9..0beaf2516 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -27,7 +27,7 @@ master_doc = 'index' # General information about the project. project = u'PyMongo' -copyright = u'2008 - 2014, MongoDB, Inc.' +copyright = u'2008 - 2015, MongoDB, Inc.' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/doc/mongo_extensions.py b/doc/mongo_extensions.py index e080e2bc7..117b2c68a 100644 --- a/doc/mongo_extensions.py +++ b/doc/mongo_extensions.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/gridfs/__init__.py b/gridfs/__init__.py index 7e1436831..25b6c9138 100644 --- a/gridfs/__init__.py +++ b/gridfs/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/gridfs/errors.py b/gridfs/errors.py index 7e94a600d..39736d55b 100644 --- a/gridfs/errors.py +++ b/gridfs/errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/gridfs/grid_file.py b/gridfs/grid_file.py index cbfcef210..441f12f2c 100644 --- a/gridfs/grid_file.py +++ b/gridfs/grid_file.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/__init__.py b/pymongo/__init__.py index 9ad384fc4..d08423ec7 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/_cmessagemodule.c b/pymongo/_cmessagemodule.c index 9712ed395..f5374c1e5 100644 --- a/pymongo/_cmessagemodule.c +++ b/pymongo/_cmessagemodule.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2014 MongoDB, Inc. + * Copyright 2009-2015 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/pymongo/auth.py b/pymongo/auth.py index 55ae5e241..452129e93 100644 --- a/pymongo/auth.py +++ b/pymongo/auth.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 MongoDB, Inc. +# Copyright 2013-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/bulk.py b/pymongo/bulk.py index a7e63fa45..aee600e75 100644 --- a/pymongo/bulk.py +++ b/pymongo/bulk.py @@ -1,4 +1,4 @@ -# Copyright 2014-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/client_options.py b/pymongo/client_options.py index 2be5c58ea..c8212cdaf 100644 --- a/pymongo/client_options.py +++ b/pymongo/client_options.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/collection.py b/pymongo/collection.py index aea6c2c18..d864679cd 100644 --- a/pymongo/collection.py +++ b/pymongo/collection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/command_cursor.py b/pymongo/command_cursor.py index 6f8cce347..d2d7b6cfc 100644 --- a/pymongo/command_cursor.py +++ b/pymongo/command_cursor.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/common.py b/pymongo/common.py index 8277b40c7..805b7d416 100644 --- a/pymongo/common.py +++ b/pymongo/common.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/cursor.py b/pymongo/cursor.py index f9ce6b88f..10354bac5 100644 --- a/pymongo/cursor.py +++ b/pymongo/cursor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/cursor_manager.py b/pymongo/cursor_manager.py index 29e1a127b..3fd230e85 100644 --- a/pymongo/cursor_manager.py +++ b/pymongo/cursor_manager.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/database.py b/pymongo/database.py index 9c6bcdc0a..395652b6f 100644 --- a/pymongo/database.py +++ b/pymongo/database.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/errors.py b/pymongo/errors.py index 0375099fd..bcd0df50e 100644 --- a/pymongo/errors.py +++ b/pymongo/errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/helpers.py b/pymongo/helpers.py index b463701a6..b2debc971 100644 --- a/pymongo/helpers.py +++ b/pymongo/helpers.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/ismaster.py b/pymongo/ismaster.py index 1c398c98d..25d239475 100644 --- a/pymongo/ismaster.py +++ b/pymongo/ismaster.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/message.py b/pymongo/message.py index 0f7b033f1..d5af51003 100644 --- a/pymongo/message.py +++ b/pymongo/message.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/mongo_client.py b/pymongo/mongo_client.py index a7774e701..5dba1b750 100644 --- a/pymongo/mongo_client.py +++ b/pymongo/mongo_client.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/mongo_replica_set_client.py b/pymongo/mongo_replica_set_client.py index 653f75084..5aec49a1d 100644 --- a/pymongo/mongo_replica_set_client.py +++ b/pymongo/mongo_replica_set_client.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/monitor.py b/pymongo/monitor.py index 492e5db01..e82083f3f 100644 --- a/pymongo/monitor.py +++ b/pymongo/monitor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/monotonic.py b/pymongo/monotonic.py index bd704af9e..106546ded 100644 --- a/pymongo/monotonic.py +++ b/pymongo/monotonic.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/periodic_executor.py b/pymongo/periodic_executor.py index 6699159d0..fbe672ecf 100644 --- a/pymongo/periodic_executor.py +++ b/pymongo/periodic_executor.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/pool.py b/pymongo/pool.py index cf6f00492..1c25f4afe 100644 --- a/pymongo/pool.py +++ b/pymongo/pool.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/read_preferences.py b/pymongo/read_preferences.py index ea5a86124..a8740d1cc 100644 --- a/pymongo/read_preferences.py +++ b/pymongo/read_preferences.py @@ -1,4 +1,4 @@ -# Copyright 2012-2014 MongoDB, Inc. +# Copyright 2012-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License", # you may not use this file except in compliance with the License. diff --git a/pymongo/response.py b/pymongo/response.py index 2ab8ba811..1c1070be2 100644 --- a/pymongo/response.py +++ b/pymongo/response.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/server.py b/pymongo/server.py index 3d5b82149..a21f57c48 100644 --- a/pymongo/server.py +++ b/pymongo/server.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/server_description.py b/pymongo/server_description.py index db478b0bb..3c0307580 100644 --- a/pymongo/server_description.py +++ b/pymongo/server_description.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/server_selectors.py b/pymongo/server_selectors.py index b8774a71c..621324232 100644 --- a/pymongo/server_selectors.py +++ b/pymongo/server_selectors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/server_type.py b/pymongo/server_type.py index 13b2f2da6..c231aa04c 100644 --- a/pymongo/server_type.py +++ b/pymongo/server_type.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/settings.py b/pymongo/settings.py index 8eee13ab7..73881fffd 100644 --- a/pymongo/settings.py +++ b/pymongo/settings.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/son_manipulator.py b/pymongo/son_manipulator.py index 39377b2a3..f1dab33cb 100644 --- a/pymongo/son_manipulator.py +++ b/pymongo/son_manipulator.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/ssl_context.py b/pymongo/ssl_context.py index e36cc1397..d2e8a02f8 100644 --- a/pymongo/ssl_context.py +++ b/pymongo/ssl_context.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/ssl_support.py b/pymongo/ssl_support.py index f451fd5eb..5397c6212 100644 --- a/pymongo/ssl_support.py +++ b/pymongo/ssl_support.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/thread_util.py b/pymongo/thread_util.py index 6c1c6a4c4..0177149e9 100644 --- a/pymongo/thread_util.py +++ b/pymongo/thread_util.py @@ -1,4 +1,4 @@ -# Copyright 2012-2014 MongoDB, Inc. +# Copyright 2012-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pymongo/topology.py b/pymongo/topology.py index 230318a2a..8ee1090d2 100644 --- a/pymongo/topology.py +++ b/pymongo/topology.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/topology_description.py b/pymongo/topology_description.py index f691036c3..4f274da33 100644 --- a/pymongo/topology_description.py +++ b/pymongo/topology_description.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/uri_parser.py b/pymongo/uri_parser.py index 736fbc6d4..f1c930d62 100644 --- a/pymongo/uri_parser.py +++ b/pymongo/uri_parser.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you # may not use this file except in compliance with the License. You diff --git a/pymongo/write_concern.py b/pymongo/write_concern.py index e986244af..3676a2f8e 100644 --- a/pymongo/write_concern.py +++ b/pymongo/write_concern.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/__init__.py b/test/__init__.py index facc0b76a..71bd99b5c 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2010-2014 MongoDB, Inc. +# Copyright 2010-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/high_availability/ha_tools.py b/test/high_availability/ha_tools.py index 8954b4e4d..58f977fb2 100644 --- a/test/high_availability/ha_tools.py +++ b/test/high_availability/ha_tools.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/high_availability/test_ha.py b/test/high_availability/test_ha.py index fe987811f..c9c120a86 100644 --- a/test/high_availability/test_ha.py +++ b/test/high_availability/test_ha.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/mod_wsgi_test/mod_wsgi_test.conf b/test/mod_wsgi_test/mod_wsgi_test.conf index 8815f0b34..987d93e8e 100644 --- a/test/mod_wsgi_test/mod_wsgi_test.conf +++ b/test/mod_wsgi_test/mod_wsgi_test.conf @@ -1,4 +1,4 @@ -# Copyright 2012-2014 MongoDB, Inc. +# Copyright 2012-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/mod_wsgi_test/mod_wsgi_test.wsgi b/test/mod_wsgi_test/mod_wsgi_test.wsgi index bf45db350..fb97d32c2 100644 --- a/test/mod_wsgi_test/mod_wsgi_test.wsgi +++ b/test/mod_wsgi_test/mod_wsgi_test.wsgi @@ -1,4 +1,4 @@ -# Copyright 2012-2014 MongoDB, Inc. +# Copyright 2012-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/mod_wsgi_test/test_client.py b/test/mod_wsgi_test/test_client.py index adadeab5e..596857e46 100644 --- a/test/mod_wsgi_test/test_client.py +++ b/test/mod_wsgi_test/test_client.py @@ -1,4 +1,4 @@ -# Copyright 2012-2014 MongoDB, Inc. +# Copyright 2012-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/pymongo_mocks.py b/test/pymongo_mocks.py index e60cf883b..2d77debf7 100644 --- a/test/pymongo_mocks.py +++ b/test/pymongo_mocks.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 MongoDB, Inc. +# Copyright 2013-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/qcheck.py b/test/qcheck.py index 0956b62d5..128c99789 100644 --- a/test/qcheck.py +++ b/test/qcheck.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_auth.py b/test/test_auth.py index fdc7019af..4561229d2 100644 --- a/test/test_auth.py +++ b/test/test_auth.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 MongoDB, Inc. +# Copyright 2013-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_binary.py b/test/test_binary.py index 39fd1974d..90ff64471 100644 --- a/test/test_binary.py +++ b/test/test_binary.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_bulk.py b/test/test_bulk.py index 18d29b2ff..12d6a307a 100644 --- a/test/test_bulk.py +++ b/test/test_bulk.py @@ -1,4 +1,4 @@ -# Copyright 2014-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_client.py b/test/test_client.py index 2b7b55168..d2eb42093 100644 --- a/test/test_client.py +++ b/test/test_client.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2013-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_code.py b/test/test_code.py index 02d524b3b..e439af7bf 100644 --- a/test/test_code.py +++ b/test/test_code.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_collection.py b/test/test_collection.py index e76631037..ebae73f54 100644 --- a/test/test_collection.py +++ b/test/test_collection.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_common.py b/test/test_common.py index ca35606f3..8f7ddf13f 100644 --- a/test/test_common.py +++ b/test/test_common.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_cursor.py b/test/test_cursor.py index 1296bf2db..1475350c2 100644 --- a/test/test_cursor.py +++ b/test/test_cursor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_cursor_manager.py b/test/test_cursor_manager.py index 7bd04d757..92d9c5a42 100644 --- a/test/test_cursor_manager.py +++ b/test/test_cursor_manager.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_database.py b/test/test_database.py index 7ef530d4e..e7659ceec 100644 --- a/test/test_database.py +++ b/test/test_database.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_dbref.py b/test/test_dbref.py index 72ac5f908..ea5e30e82 100644 --- a/test/test_dbref.py +++ b/test/test_dbref.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_discovery_and_monitoring.py b/test/test_discovery_and_monitoring.py index 4ff23c3b3..75b1a1667 100644 --- a/test/test_discovery_and_monitoring.py +++ b/test/test_discovery_and_monitoring.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_grid_file.py b/test/test_grid_file.py index b7cfcc2c2..637225449 100644 --- a/test/test_grid_file.py +++ b/test/test_grid_file.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_gridfs.py b/test/test_gridfs.py index 2581d863a..8bda8b2db 100644 --- a/test/test_gridfs.py +++ b/test/test_gridfs.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_json_util.py b/test/test_json_util.py index 27ebd9ba0..59a3559d7 100644 --- a/test/test_json_util.py +++ b/test/test_json_util.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_mongos_load_balancing.py b/test/test_mongos_load_balancing.py index 9fab44f52..81224554a 100644 --- a/test/test_mongos_load_balancing.py +++ b/test/test_mongos_load_balancing.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 MongoDB, Inc. +# Copyright 2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_monitor.py b/test/test_monitor.py index af2372a77..f496ae1e1 100644 --- a/test/test_monitor.py +++ b/test/test_monitor.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_objectid.py b/test/test_objectid.py index 20d5d2174..cd058a5d4 100644 --- a/test/test_objectid.py +++ b/test/test_objectid.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_pooling.py b/test/test_pooling.py index e8793089a..95c97569d 100644 --- a/test/test_pooling.py +++ b/test/test_pooling.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_pymongo.py b/test/test_pymongo.py index 279dc089f..780a4beb8 100644 --- a/test/test_pymongo.py +++ b/test/test_pymongo.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_read_preferences.py b/test/test_read_preferences.py index 051afb2d6..b2616446d 100644 --- a/test/test_read_preferences.py +++ b/test/test_read_preferences.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_replica_set_client.py b/test/test_replica_set_client.py index d756d63b5..59d259427 100644 --- a/test/test_replica_set_client.py +++ b/test/test_replica_set_client.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_replica_set_reconfig.py b/test/test_replica_set_reconfig.py index ff7604971..c0a67b389 100644 --- a/test/test_replica_set_reconfig.py +++ b/test/test_replica_set_reconfig.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 MongoDB, Inc. +# Copyright 2013-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_server.py b/test/test_server.py index cae69f129..d6b92e2fd 100644 --- a/test/test_server.py +++ b/test/test_server.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_server_description.py b/test/test_server_description.py index 4a6ce76f2..5813f550b 100644 --- a/test/test_server_description.py +++ b/test/test_server_description.py @@ -1,4 +1,4 @@ -# Copyright 2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_server_selection.py b/test/test_server_selection.py index 2a95ac1fc..d0820c9ba 100644 --- a/test/test_server_selection.py +++ b/test/test_server_selection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_server_selection_rtt.py b/test/test_server_selection_rtt.py index e5b124df1..f914e0303 100644 --- a/test/test_server_selection_rtt.py +++ b/test/test_server_selection_rtt.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_son.py b/test/test_son.py index 51c471be9..ef91886a0 100644 --- a/test/test_son.py +++ b/test/test_son.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_son_manipulator.py b/test/test_son_manipulator.py index 42953cd30..bd45d8988 100644 --- a/test/test_son_manipulator.py +++ b/test/test_son_manipulator.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_ssl.py b/test/test_ssl.py index 0a1473bc6..f7c789771 100644 --- a/test/test_ssl.py +++ b/test/test_ssl.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_threads.py b/test/test_threads.py index 67139ddd9..2477b9829 100644 --- a/test/test_threads.py +++ b/test/test_threads.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_timestamp.py b/test/test_timestamp.py index 6636f3814..b4def6c77 100644 --- a/test/test_timestamp.py +++ b/test/test_timestamp.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_topology.py b/test/test_topology.py index 7c95f984e..23a30e45e 100644 --- a/test/test_topology.py +++ b/test/test_topology.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2014-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/test_uri_parser.py b/test/test_uri_parser.py index d4574634e..9be269b8c 100644 --- a/test/test_uri_parser.py +++ b/test/test_uri_parser.py @@ -1,4 +1,4 @@ -# Copyright 2011-2014 MongoDB, Inc. +# Copyright 2011-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/utils.py b/test/utils.py index 5b5295d5c..344ab8822 100644 --- a/test/utils.py +++ b/test/utils.py @@ -1,4 +1,4 @@ -# Copyright 2012-2014 MongoDB, Inc. +# Copyright 2012-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/version.py b/test/version.py index 917530b7e..c4f4f5de7 100644 --- a/test/version.py +++ b/test/version.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/benchmark.py b/tools/benchmark.py index e954ac3e7..2bf2e6093 100644 --- a/tools/benchmark.py +++ b/tools/benchmark.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/clean.py b/tools/clean.py index 9c260e3a7..a5d383af4 100644 --- a/tools/clean.py +++ b/tools/clean.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/fail_if_no_c.py b/tools/fail_if_no_c.py index 897bfcae0..e6fd83a36 100644 --- a/tools/fail_if_no_c.py +++ b/tools/fail_if_no_c.py @@ -1,4 +1,4 @@ -# Copyright 2009-2014 MongoDB, Inc. +# Copyright 2009-2015 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.