From: Joshua Roesslein Date: Sun, 31 Jan 2010 00:12:52 +0000 (-0600) Subject: Update license and copyright years. Hello 2010! X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=680ab3942496b6621afd8d8720ae2db089e3e5fa;p=tweepy.git Update license and copyright years. Hello 2010! --- diff --git a/LICENSE b/LICENSE index 84b4bb7..8a91f2c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ MIT License -Copyright (c) 2009 Joshua Roesslein +Copyright (c) 2009-2010 Joshua Roesslein Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests.py b/tests.py index 596484e..3a5acbc 100644 --- a/tests.py +++ b/tests.py @@ -1,7 +1,3 @@ -# Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE - import unittest import random from time import sleep diff --git a/tweepy/__init__.py b/tweepy/__init__.py index 7bfde02..ae76b43 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. """ Tweepy Twitter API library diff --git a/tweepy/api.py b/tweepy/api.py index b20e343..0d821b5 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. import os import mimetypes diff --git a/tweepy/auth.py b/tweepy/auth.py index 7d16f5c..66fcfad 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. from urllib2 import Request, urlopen import base64 diff --git a/tweepy/binder.py b/tweepy/binder.py index 7ae14dd..8efe9dc 100644 --- a/tweepy/binder.py +++ b/tweepy/binder.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. import httplib import urllib diff --git a/tweepy/cache.py b/tweepy/cache.py index 0d2d82f..9a343e3 100644 --- a/tweepy/cache.py +++ b/tweepy/cache.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. import time import threading diff --git a/tweepy/cursor.py b/tweepy/cursor.py index 66637c4..4a0f0b4 100644 --- a/tweepy/cursor.py +++ b/tweepy/cursor.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. from tweepy.error import TweepError diff --git a/tweepy/error.py b/tweepy/error.py index 297a48f..be6d227 100644 --- a/tweepy/error.py +++ b/tweepy/error.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. class TweepError(Exception): """Tweepy exception""" diff --git a/tweepy/models.py b/tweepy/models.py index 2e2bff0..947cd6d 100644 --- a/tweepy/models.py +++ b/tweepy/models.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. from tweepy.error import TweepError from tweepy.utils import parse_datetime, parse_html_value, parse_a_href, \ diff --git a/tweepy/parsers.py b/tweepy/parsers.py index 8599501..24b73a3 100644 --- a/tweepy/parsers.py +++ b/tweepy/parsers.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. from tweepy.models import ModelFactory from tweepy.utils import import_simplejson diff --git a/tweepy/streaming.py b/tweepy/streaming.py index e576ec5..d81ed88 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -1,6 +1,6 @@ # Tweepy -# Copyright 2009 Joshua Roesslein -# See LICENSE +# Copyright 2009-2010 Joshua Roesslein +# See LICENSE for details. import httplib from socket import timeout diff --git a/tweepy/utils.py b/tweepy/utils.py index 3608f6f..60a4713 100644 --- a/tweepy/utils.py +++ b/tweepy/utils.py @@ -1,6 +1,6 @@ # Tweepy # Copyright 2010 Joshua Roesslein -# See LICENSE +# See LICENSE for details. from datetime import datetime import time