]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add some "used with permission" mentions where external resources are referenced.
authorBrett Cannon <brett@python.org>
Fri, 15 Jan 2016 17:53:51 +0000 (09:53 -0800)
committerBrett Cannon <brett@python.org>
Fri, 15 Jan 2016 17:53:51 +0000 (09:53 -0800)
Permission was validated prior to adding these markings.

Lib/datetime.py
Lib/encodings/hp_roman8.py
Lib/unittest/__init__.py

index b9719cbb48df0cadb665263a01e71739a20dcac0..2f9421829e573d6baeb4c5334dd4ea094e54ef9d 100644 (file)
@@ -896,6 +896,7 @@ class date:
 
         ISO calendar algorithm taken from
         http://www.phys.uu.nl/~vgent/calendar/isocalendar.htm
+        (used with permission)
         """
         year = self._year
         week1monday = _isoweek1monday(year)
index 2334208812712af7cf1a5076bc14e00bc5ee8ce1..58de1033c13b76048f543617c2b6901e7848005b 100644 (file)
@@ -5,6 +5,8 @@
     Original source: LaserJet IIP Printer User's Manual HP part no
     33471-90901, Hewlet-Packard, June 1989.
 
+    (Used with permission)
+
 """#"
 
 import codecs
index f6d7ae278ba17dab415e7cd9ca6367cbe173a118..7f61a80ff4ac0bc32deb61e617784c85c4f85159 100644 (file)
@@ -1,6 +1,6 @@
 """
 Python unit testing framework, based on Erich Gamma's JUnit and Kent Beck's
-Smalltalk testing framework.
+Smalltalk testing framework (used with permission).
 
 This module contains the core framework classes that form the basis of
 specific test cases and suites (TestCase, TestSuite etc.), and also a