summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2012-01-02 21:03:58 +0000
committerMichael Foord <michael@voidspace.org.uk>2012-01-02 21:03:58 +0000
commit578eec7bd29ddb8c7696194c69337b72bd166ffd (patch)
treedb98eb8190352ba2837a1bebb55d82e9b98937f2
parentbca91c3c10f299389892b3d65b0f5f5500302a22 (diff)
downloadmock-578eec7bd29ddb8c7696194c69337b72bd166ffd.tar.gz
Update copyright years
-rw-r--r--LICENSE.txt2
-rw-r--r--docs/changelog.txt4
-rw-r--r--docs/conf.py2
-rw-r--r--docs/helpers.txt8
-rw-r--r--mock.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/__init__.py2
-rw-r--r--tests/_testwith.py2
-rw-r--r--tests/testcallable.py2
-rw-r--r--tests/testhelpers.py2
-rw-r--r--tests/testmagicmethods.py2
-rw-r--r--tests/testmock.py2
-rw-r--r--tests/testmocksignature.py2
-rw-r--r--tests/testpatch.py2
-rw-r--r--tests/testsentinel.py2
15 files changed, 23 insertions, 15 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index 02068ae..7891703 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2011, Michael Foord
+Copyright (c) 2003-2012, Michael Foord
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/docs/changelog.txt b/docs/changelog.txt
index 060f7d9..2124dfc 100644
--- a/docs/changelog.txt
+++ b/docs/changelog.txt
@@ -84,7 +84,7 @@ CHANGELOG
=========
-2011/XX/XX Version 0.8.0
+2012/XX/XX Version 0.8.0
------------------------
Full List of changes since 0.7:
@@ -166,7 +166,7 @@ mock 0.8.0 is the last version that will support Python 2.4.
* Added license file to the distribution
-2011/XX/XX Version 0.8.0 release candidate 2
+2012/XX/XX Version 0.8.0 release candidate 2
--------------------------------------------
* Removed the `configure` keyword argument to `create_autospec` and allow
diff --git a/docs/conf.py b/docs/conf.py
index 499f638..17b46d2 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -69,7 +69,7 @@ master_doc = 'index'
# General substitutions.
project = u'Mock'
-copyright = u'2007-2011, Michael Foord & the mock team'
+copyright = u'2007-2012, Michael Foord & the mock team'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
diff --git a/docs/helpers.txt b/docs/helpers.txt
index 1a8cca0..28ec2d6 100644
--- a/docs/helpers.txt
+++ b/docs/helpers.txt
@@ -25,6 +25,14 @@
call
====
+.. function:: call(*args, **kwargs)
+
+ XXXX
+
+
+.. method:: call.call_list()
+
+ XXXX
create_autospec
diff --git a/mock.py b/mock.py
index 798bd7f..b85766d 100644
--- a/mock.py
+++ b/mock.py
@@ -1,6 +1,6 @@
# mock.py
# Test tools for mocking and patching.
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# mock 0.8.0
diff --git a/setup.py b/setup.py
index 38639cb..7c25e8f 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#! /usr/bin/env python
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/__init__.py b/tests/__init__.py
index 254a05a..54ddf2e 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,3 +1,3 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/_testwith.py b/tests/_testwith.py
index 0f8a729..7a353d6 100644
--- a/tests/_testwith.py
+++ b/tests/_testwith.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testcallable.py b/tests/testcallable.py
index c1d61c1..b614120 100644
--- a/tests/testcallable.py
+++ b/tests/testcallable.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testhelpers.py b/tests/testhelpers.py
index 0d877e9..0f67bf1 100644
--- a/tests/testhelpers.py
+++ b/tests/testhelpers.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testmagicmethods.py b/tests/testmagicmethods.py
index d066b76..745377e 100644
--- a/tests/testmagicmethods.py
+++ b/tests/testmagicmethods.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testmock.py b/tests/testmock.py
index da77dcb..675a01d 100644
--- a/tests/testmock.py
+++ b/tests/testmock.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testmocksignature.py b/tests/testmocksignature.py
index b136f32..7bdc536 100644
--- a/tests/testmocksignature.py
+++ b/tests/testmocksignature.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testpatch.py b/tests/testpatch.py
index cf9b3f0..3c4f823 100644
--- a/tests/testpatch.py
+++ b/tests/testpatch.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/
diff --git a/tests/testsentinel.py b/tests/testsentinel.py
index a697e9a..4d17eb1 100644
--- a/tests/testsentinel.py
+++ b/tests/testsentinel.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2011 Michael Foord & the mock team
+# Copyright (C) 2007-2012 Michael Foord & the mock team
# E-mail: fuzzyman AT voidspace DOT org DOT uk
# http://www.voidspace.org.uk/python/mock/