From b9ac90b87965120a8b316a64c192e259f4d1256c Mon Sep 17 00:00:00 2001 From: Ronald Kaiser Date: Tue, 29 Jan 2013 17:49:08 -0200 Subject: [PATCH] s/2012/2013/g --- bson/__init__.py | 2 +- bson/_cbsonmodule.c | 2 +- bson/binary.py | 2 +- bson/buffer.c | 2 +- bson/buffer.h | 2 +- bson/code.py | 2 +- bson/dbref.py | 2 +- bson/encoding_helpers.c | 2 +- bson/encoding_helpers.h | 2 +- bson/errors.py | 2 +- bson/json_util.py | 2 +- bson/max_key.py | 2 +- bson/min_key.py | 2 +- bson/objectid.py | 2 +- bson/py3compat.py | 2 +- bson/son.py | 2 +- bson/timestamp.py | 2 +- bson/tz_util.py | 2 +- doc/mongo_extensions.py | 2 +- gridfs/__init__.py | 2 +- gridfs/errors.py | 2 +- gridfs/grid_file.py | 2 +- pymongo/__init__.py | 2 +- pymongo/_cmessagemodule.c | 2 +- pymongo/collection.py | 2 +- pymongo/common.py | 2 +- pymongo/connection.py | 2 +- pymongo/cursor.py | 2 +- pymongo/cursor_manager.py | 2 +- pymongo/database.py | 2 +- pymongo/errors.py | 2 +- pymongo/helpers.py | 2 +- pymongo/master_slave_connection.py | 2 +- pymongo/message.py | 2 +- pymongo/mongo_client.py | 2 +- pymongo/mongo_replica_set_client.py | 2 +- pymongo/pool.py | 2 +- pymongo/replica_set_connection.py | 2 +- pymongo/son_manipulator.py | 2 +- pymongo/uri_parser.py | 2 +- test/__init__.py | 2 +- test/high_availability/ha_tools.py | 2 +- test/high_availability/test_ha.py | 2 +- test/qcheck.py | 2 +- test/test_binary.py | 2 +- test/test_bson.py | 2 +- test/test_code.py | 2 +- test/test_collection.py | 2 +- test/test_common.py | 2 +- test/test_connection.py | 2 +- test/test_cursor.py | 2 +- test/test_database.py | 2 +- test/test_dbref.py | 2 +- test/test_errors.py | 2 +- test/test_grid_file.py | 2 +- test/test_gridfs.py | 2 +- test/test_json_util.py | 2 +- test/test_master_slave_connection.py | 2 +- test/test_objectid.py | 2 +- test/test_paired.py | 2 +- test/test_pooling.py | 2 +- test/test_pymongo.py | 2 +- test/test_read_preferences.py | 2 +- test/test_replica_set_connection.py | 2 +- test/test_son.py | 2 +- test/test_son_manipulator.py | 2 +- test/test_ssl.py | 2 +- test/test_threads.py | 2 +- test/test_threads_replica_set_connection.py | 2 +- test/test_timestamp.py | 2 +- test/test_uri_parser.py | 2 +- test/version.py | 2 +- tools/benchmark.py | 2 +- tools/clean.py | 2 +- tools/fail_if_no_c.py | 2 +- 75 files changed, 75 insertions(+), 75 deletions(-) diff --git a/bson/__init__.py b/bson/__init__.py index fe6bc4f743..be4313b04e 100644 --- a/bson/__init__.py +++ b/bson/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 0e50f1d33e..027933d381 100644 --- a/bson/_cbsonmodule.c +++ b/bson/_cbsonmodule.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 10gen, Inc. + * Copyright 2009-2013 10gen, 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 48cbe5d757..de982ea32e 100644 --- a/bson/binary.py +++ b/bson/binary.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 e3a60a1ac2..5932089241 100644 --- a/bson/buffer.c +++ b/bson/buffer.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 10gen, Inc. + * Copyright 2009-2013 10gen, 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 c47d655c9a..6267254c6b 100644 --- a/bson/buffer.h +++ b/bson/buffer.h @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 10gen, Inc. + * Copyright 2009-2013 10gen, 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 966e0f94f5..44f0074c6c 100644 --- a/bson/code.py +++ b/bson/code.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 5b15bbd869..2a8f57e7b0 100644 --- a/bson/dbref.py +++ b/bson/dbref.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 d7f8faf364..783601e0ad 100644 --- a/bson/encoding_helpers.c +++ b/bson/encoding_helpers.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 10gen, Inc. + * Copyright 2009-2013 10gen, 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 6d0ba0fe13..7c585c494a 100644 --- a/bson/encoding_helpers.h +++ b/bson/encoding_helpers.h @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 10gen, Inc. + * Copyright 2009-2013 10gen, 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 9501bf4964..4646cece7f 100644 --- a/bson/errors.py +++ b/bson/errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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/json_util.py b/bson/json_util.py index 55e002d0fc..a7e731e203 100644 --- a/bson/json_util.py +++ b/bson/json_util.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 a7585354e6..a03ae184bd 100644 --- a/bson/max_key.py +++ b/bson/max_key.py @@ -1,4 +1,4 @@ -# Copyright 2010-2012 10gen, Inc. +# Copyright 2010-2013 10gen, 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 9047128ae1..116e9df1ac 100644 --- a/bson/min_key.py +++ b/bson/min_key.py @@ -1,4 +1,4 @@ -# Copyright 2010-2012 10gen, Inc. +# Copyright 2010-2013 10gen, 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/objectid.py b/bson/objectid.py index d21fd837fd..aa3ce78358 100644 --- a/bson/objectid.py +++ b/bson/objectid.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 30b37fb68a..adcc389e5c 100644 --- a/bson/py3compat.py +++ b/bson/py3compat.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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/son.py b/bson/son.py index 539d3752d9..f57a18bdfe 100644 --- a/bson/son.py +++ b/bson/son.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 185b7c1776..664620fa0e 100644 --- a/bson/timestamp.py +++ b/bson/timestamp.py @@ -1,4 +1,4 @@ -# Copyright 2010-2012 10gen, Inc. +# Copyright 2010-2013 10gen, 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 4437564322..a1cc7bd542 100644 --- a/bson/tz_util.py +++ b/bson/tz_util.py @@ -1,4 +1,4 @@ -# Copyright 2010-2012 10gen, Inc. +# Copyright 2010-2013 10gen, 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/mongo_extensions.py b/doc/mongo_extensions.py index 9f1ddd13f1..d89c5b566b 100644 --- a/doc/mongo_extensions.py +++ b/doc/mongo_extensions.py @@ -1,4 +1,4 @@ -# Copyright 2009-2010 10gen, Inc. +# Copyright 2009-2013 10gen, 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 204108b1b4..fa7f7b918d 100644 --- a/gridfs/__init__.py +++ b/gridfs/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 63f6883eda..3d84b6b6dd 100644 --- a/gridfs/errors.py +++ b/gridfs/errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 fe7f494f8c..6f84e69205 100644 --- a/gridfs/grid_file.py +++ b/gridfs/grid_file.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 10f290c693..f17669f459 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 a8e29a9143..ea8885d8dd 100644 --- a/pymongo/_cmessagemodule.c +++ b/pymongo/_cmessagemodule.c @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 10gen, Inc. + * Copyright 2009-2013 10gen, 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/collection.py b/pymongo/collection.py index cd14ee41db..49a1b0dcd8 100644 --- a/pymongo/collection.py +++ b/pymongo/collection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 61d8956f30..858f25e483 100644 --- a/pymongo/common.py +++ b/pymongo/common.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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/connection.py b/pymongo/connection.py index b1d1f3f20b..8c0f2b8d7c 100644 --- a/pymongo/connection.py +++ b/pymongo/connection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 5faba55164..061580788d 100644 --- a/pymongo/cursor.py +++ b/pymongo/cursor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 a68fa55fa2..bb4658e926 100644 --- a/pymongo/cursor_manager.py +++ b/pymongo/cursor_manager.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 ab7f8710e0..99c97e6bc6 100644 --- a/pymongo/database.py +++ b/pymongo/database.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 a52baad3a8..96cee2a201 100644 --- a/pymongo/errors.py +++ b/pymongo/errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 3ed00a53dc..6556565967 100644 --- a/pymongo/helpers.py +++ b/pymongo/helpers.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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/master_slave_connection.py b/pymongo/master_slave_connection.py index e50384c83b..0cbdc9cf7b 100644 --- a/pymongo/master_slave_connection.py +++ b/pymongo/master_slave_connection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 2b0c9d5538..7da558712b 100644 --- a/pymongo/message.py +++ b/pymongo/message.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 cc9bb8b330..a35e55ba2d 100644 --- a/pymongo/mongo_client.py +++ b/pymongo/mongo_client.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 e515f68c6d..41923fdb85 100644 --- a/pymongo/mongo_replica_set_client.py +++ b/pymongo/mongo_replica_set_client.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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 104788e0c9..2d902d17fe 100644 --- a/pymongo/pool.py +++ b/pymongo/pool.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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/replica_set_connection.py b/pymongo/replica_set_connection.py index 5deb2053f8..9c7790c9ab 100644 --- a/pymongo/replica_set_connection.py +++ b/pymongo/replica_set_connection.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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 ab9cd84cd5..d917e53704 100644 --- a/pymongo/son_manipulator.py +++ b/pymongo/son_manipulator.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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/uri_parser.py b/pymongo/uri_parser.py index 135235f852..591cb62a35 100644 --- a/pymongo/uri_parser.py +++ b/pymongo/uri_parser.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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/test/__init__.py b/test/__init__.py index 04e323d2a5..353efa63e0 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2010-2012 10gen, Inc. +# Copyright 2010-2013 10gen, 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 29dd4c85a7..0fd6b84afd 100644 --- a/test/high_availability/ha_tools.py +++ b/test/high_availability/ha_tools.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 a2105a0489..314899744c 100644 --- a/test/high_availability/test_ha.py +++ b/test/high_availability/test_ha.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 2c57e4df95..7f304ee032 100644 --- a/test/qcheck.py +++ b/test/qcheck.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 c9743eb681..2dc641f8c7 100644 --- a/test/test_binary.py +++ b/test/test_binary.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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_bson.py b/test/test_bson.py index 2d93b89a32..a8dd04592f 100644 --- a/test/test_bson.py +++ b/test/test_bson.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 fe5853f3d8..d4d1d8f4bd 100644 --- a/test/test_code.py +++ b/test/test_code.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 64b7a8bb91..2c9640d7f7 100644 --- a/test/test_collection.py +++ b/test/test_collection.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 f08f12156c..d95924704d 100644 --- a/test/test_common.py +++ b/test/test_common.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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_connection.py b/test/test_connection.py index 38000927c4..3b08672044 100644 --- a/test/test_connection.py +++ b/test/test_connection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 f4ab9fe7d8..c2e06c069f 100644 --- a/test/test_cursor.py +++ b/test/test_cursor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 9dc9d7eb74..58b6d7cc62 100644 --- a/test/test_database.py +++ b/test/test_database.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 4fe6803041..fa1cff3616 100644 --- a/test/test_dbref.py +++ b/test/test_dbref.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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_errors.py b/test/test_errors.py index 599eb4f5dd..c203a2e658 100644 --- a/test/test_errors.py +++ b/test/test_errors.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 78ec636651..fd408252e5 100644 --- a/test/test_grid_file.py +++ b/test/test_grid_file.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 cbd151a710..9d3dc27a4c 100644 --- a/test/test_gridfs.py +++ b/test/test_gridfs.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 21ed9900ff..5044f455c3 100644 --- a/test/test_json_util.py +++ b/test/test_json_util.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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_master_slave_connection.py b/test/test_master_slave_connection.py index 7c49de35de..6728673938 100644 --- a/test/test_master_slave_connection.py +++ b/test/test_master_slave_connection.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 d3247c8e02..a553b6da08 100644 --- a/test/test_objectid.py +++ b/test/test_objectid.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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_paired.py b/test/test_paired.py index 695e859a49..aa9aa2fc13 100644 --- a/test/test_paired.py +++ b/test/test_paired.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 794901da30..88c139f835 100644 --- a/test/test_pooling.py +++ b/test/test_pooling.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 319af34e37..bdb3e16160 100644 --- a/test/test_pymongo.py +++ b/test/test_pymongo.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 8e45d51892..0939e04961 100644 --- a/test/test_read_preferences.py +++ b/test/test_read_preferences.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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_connection.py b/test/test_replica_set_connection.py index a0640ef7a0..a5de0dd9cb 100644 --- a/test/test_replica_set_connection.py +++ b/test/test_replica_set_connection.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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 cb2596da9f..54cb1efad9 100644 --- a/test/test_son.py +++ b/test/test_son.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 1294c29963..e82656a7f6 100644 --- a/test/test_son_manipulator.py +++ b/test/test_son_manipulator.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 0f0b8a9624..da8fa4291e 100644 --- a/test/test_ssl.py +++ b/test/test_ssl.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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 d91641bcc4..87cea5b225 100644 --- a/test/test_threads.py +++ b/test/test_threads.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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_replica_set_connection.py b/test/test_threads_replica_set_connection.py index b7ff738026..49734b4475 100644 --- a/test/test_threads_replica_set_connection.py +++ b/test/test_threads_replica_set_connection.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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 d8d4cb8add..a336f23feb 100644 --- a/test/test_timestamp.py +++ b/test/test_timestamp.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 fbd903be56..344cbcc926 100644 --- a/test/test_uri_parser.py +++ b/test/test_uri_parser.py @@ -1,4 +1,4 @@ -# Copyright 2011-2012 10gen, Inc. +# Copyright 2011-2013 10gen, 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 110156976e..5bb2d2d0ff 100644 --- a/test/version.py +++ b/test/version.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 1e51bcd8c6..8d54dd99ff 100644 --- a/tools/benchmark.py +++ b/tools/benchmark.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 ac1088790a..edf2a9c302 100644 --- a/tools/clean.py +++ b/tools/clean.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, 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 628e23f1f5..ae520e0b6c 100644 --- a/tools/fail_if_no_c.py +++ b/tools/fail_if_no_c.py @@ -1,4 +1,4 @@ -# Copyright 2009-2012 10gen, Inc. +# Copyright 2009-2013 10gen, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.