From b0b5f9c3a5603bed3109a36d2c00a0e070ac3dde Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 22 Jul 2012 12:28:32 -0400 Subject: [PATCH] Ran update-copyright.py. --- examples/pid_repsonse.py | 22 ++++++++++------------ examples/temp_monitor.py | 22 ++++++++++------------ pypid/__init__.py | 22 ++++++++++------------ pypid/backend/__init__.py | 22 ++++++++++------------ pypid/backend/melcor.py | 22 ++++++++++------------ pypid/backend/test.py | 22 ++++++++++------------ pypid/controller.py | 22 ++++++++++------------ pypid/fit.py | 24 +++++++++++------------- pypid/rules.py | 22 ++++++++++------------ pypid/test.py | 22 ++++++++++------------ 10 files changed, 101 insertions(+), 121 deletions(-) diff --git a/examples/pid_repsonse.py b/examples/pid_repsonse.py index f2216b6..a724c14 100755 --- a/examples/pid_repsonse.py +++ b/examples/pid_repsonse.py @@ -1,21 +1,19 @@ #!/usr/bin/env python -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . from argparse import ArgumentParser diff --git a/examples/temp_monitor.py b/examples/temp_monitor.py index 19f603a..9c1369f 100755 --- a/examples/temp_monitor.py +++ b/examples/temp_monitor.py @@ -1,21 +1,19 @@ #!/usr/bin/env python -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . """Log control and ambient temperature every 10 seconds. diff --git a/pypid/__init__.py b/pypid/__init__.py index e5e7f2e..63d87bc 100644 --- a/pypid/__init__.py +++ b/pypid/__init__.py @@ -1,20 +1,18 @@ -# Copyright (C) 2008-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . import logging as _logging diff --git a/pypid/backend/__init__.py b/pypid/backend/__init__.py index e5b499b..15f0a79 100644 --- a/pypid/backend/__init__.py +++ b/pypid/backend/__init__.py @@ -1,20 +1,18 @@ -# Copyright (C) 2008-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . """Assorted backends for interfacing with your particular hardware. """ diff --git a/pypid/backend/melcor.py b/pypid/backend/melcor.py index eaf317a..c7736d0 100644 --- a/pypid/backend/melcor.py +++ b/pypid/backend/melcor.py @@ -1,20 +1,18 @@ -# Copyright (C) 2008-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . import struct as _struct diff --git a/pypid/backend/test.py b/pypid/backend/test.py index ba93814..bd8e3e3 100644 --- a/pypid/backend/test.py +++ b/pypid/backend/test.py @@ -1,20 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . import threading as _threading import time as _time diff --git a/pypid/controller.py b/pypid/controller.py index 0a9677e..07df6e2 100644 --- a/pypid/controller.py +++ b/pypid/controller.py @@ -1,20 +1,18 @@ -# Copyright (C) 2008-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . import time as _time diff --git a/pypid/fit.py b/pypid/fit.py index 6267341..801265e 100644 --- a/pypid/fit.py +++ b/pypid/fit.py @@ -1,20 +1,18 @@ -# Copyright (C) 2010-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # -# This file is part of Hooke. +# This file is part of pypid. # -# Hooke is free software: you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# Hooke is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General -# Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with Hooke. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . """Provide :class:`ModelFitter` to make arbitrary model fitting easy. """ diff --git a/pypid/rules.py b/pypid/rules.py index 35a1de4..279aab8 100644 --- a/pypid/rules.py +++ b/pypid/rules.py @@ -1,20 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . "Assorted PID tuning rules" diff --git a/pypid/test.py b/pypid/test.py index 8f114f6..bdf3b11 100644 --- a/pypid/test.py +++ b/pypid/test.py @@ -1,20 +1,18 @@ -# Copyright (C) 2008-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of pypid. # -# pypid is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# pypid is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# pypid is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# pypid is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with pypid. If not, see -# . +# You should have received a copy of the GNU General Public License along with +# pypid. If not, see . "Basic testing for `Controller`\s and `Backend`\s" -- 2.26.2