From d4abc3f706f071d8afd7a8ac7766f7bec804e453 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 24 Jan 2012 13:55:37 -0500 Subject: [PATCH] Run update_copyright.py. --- pycomedi/__init__.py | 22 ++++++++++++---------- pycomedi/_comedi_h.pxd | 17 ++++++++++++++++- pycomedi/_comedilib_h.pxd | 17 ++++++++++++++++- pycomedi/_error.pyx | 17 ++++++++++++++++- pycomedi/calibration.pxd | 17 ++++++++++++++++- pycomedi/calibration.pyx | 17 ++++++++++++++++- pycomedi/channel.pyx | 17 ++++++++++++++++- pycomedi/chanspec.pyx | 17 ++++++++++++++++- pycomedi/command.pxd | 17 ++++++++++++++++- pycomedi/command.pyx | 17 ++++++++++++++++- pycomedi/constant.pxd | 17 ++++++++++++++++- pycomedi/constant.pyx | 22 ++++++++++++---------- pycomedi/device.pxd | 17 ++++++++++++++++- pycomedi/device.pyx | 17 ++++++++++++++++- pycomedi/instruction.pxd | 17 ++++++++++++++++- pycomedi/instruction.pyx | 17 ++++++++++++++++- pycomedi/library.pyx | 17 ++++++++++++++++- pycomedi/range.pxd | 17 ++++++++++++++++- pycomedi/range.pyx | 17 ++++++++++++++++- pycomedi/subdevice.pxd | 17 ++++++++++++++++- pycomedi/subdevice.pyx | 17 ++++++++++++++++- pycomedi/utility.py | 22 ++++++++++++---------- setup.py | 17 ++++++++++++++++- update_copyright.py | 10 +++++----- 24 files changed, 361 insertions(+), 55 deletions(-) diff --git a/pycomedi/__init__.py b/pycomedi/__init__.py index d6eabe4..e685ca1 100644 --- a/pycomedi/__init__.py +++ b/pycomedi/__init__.py @@ -1,17 +1,19 @@ -# Copyright (C) 2008-2011 W. Trevor King +# Copyright (C) 2008-2012 W. Trevor King # -# This program 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. +# This file is part of pycomedi. # -# This program 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. +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License -# along with this program. If not, see . +# along with pycomedi. If not, see . "A Pythonic wrapper around Comedilib" diff --git a/pycomedi/_comedi_h.pxd b/pycomedi/_comedi_h.pxd index 234d751..61703cc 100644 --- a/pycomedi/_comedi_h.pxd +++ b/pycomedi/_comedi_h.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Cython interface to comedi.h" diff --git a/pycomedi/_comedilib_h.pxd b/pycomedi/_comedilib_h.pxd index 962d66b..c94f272 100644 --- a/pycomedi/_comedilib_h.pxd +++ b/pycomedi/_comedilib_h.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Cython interface to comedilib.h" diff --git a/pycomedi/_error.pyx b/pycomedi/_error.pyx index 003f0e1..900af07 100644 --- a/pycomedi/_error.pyx +++ b/pycomedi/_error.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Useful error checking wrappers around Comedilib function calls" diff --git a/pycomedi/calibration.pxd b/pycomedi/calibration.pxd index 110f959..d344fd7 100644 --- a/pycomedi/calibration.pxd +++ b/pycomedi/calibration.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `CalibratedConverter` internals at the C level for other Cython modules" diff --git a/pycomedi/calibration.pyx b/pycomedi/calibration.pyx index baa7a55..7956657 100644 --- a/pycomedi/calibration.pyx +++ b/pycomedi/calibration.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . """Pythonic wrappers for converting between Comedilib and physical units diff --git a/pycomedi/channel.pyx b/pycomedi/channel.pyx index c30de49..0cf3b44 100644 --- a/pycomedi/channel.pyx +++ b/pycomedi/channel.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap channel-wide Comedi functions in `Channel` and related classes" diff --git a/pycomedi/chanspec.pyx b/pycomedi/chanspec.pyx index 6c8d001..ba2f705 100644 --- a/pycomedi/chanspec.pyx +++ b/pycomedi/chanspec.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Replace Comedi's CR_PACK and related macros with a Python class" diff --git a/pycomedi/command.pxd b/pycomedi/command.pxd index ff60f7a..7378d2a 100644 --- a/pycomedi/command.pxd +++ b/pycomedi/command.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `Command` internals at the C level for other Cython modules" diff --git a/pycomedi/command.pyx b/pycomedi/command.pyx index beab7a9..3c823b3 100644 --- a/pycomedi/command.pyx +++ b/pycomedi/command.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap Comedi's `comedi_cmd` struct in the `Command` class" diff --git a/pycomedi/constant.pxd b/pycomedi/constant.pxd index 3fa56f5..cf502f8 100644 --- a/pycomedi/constant.pxd +++ b/pycomedi/constant.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `BitwiseOperator` internals at the C level for other Cython modules" diff --git a/pycomedi/constant.pyx b/pycomedi/constant.pyx index 14b051f..fd13d19 100644 --- a/pycomedi/constant.pyx +++ b/pycomedi/constant.pyx @@ -1,17 +1,19 @@ -# Copyright (C) 2010 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # -# This program 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. +# This file is part of pycomedi. # -# This program 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. +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License -# along with this program. If not, see . +# along with pycomedi. If not, see . """Enums and flags are bundled into class instances for easier browsing diff --git a/pycomedi/device.pxd b/pycomedi/device.pxd index 9597fae..b8c1518 100644 --- a/pycomedi/device.pxd +++ b/pycomedi/device.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `Device` internals at the C level for other Cython modules" diff --git a/pycomedi/device.pyx b/pycomedi/device.pyx index bcb8672..915c7d0 100644 --- a/pycomedi/device.pyx +++ b/pycomedi/device.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap device-wide Comedi functions in a `Device` class" diff --git a/pycomedi/instruction.pxd b/pycomedi/instruction.pxd index 85153e7..6e9f541 100644 --- a/pycomedi/instruction.pxd +++ b/pycomedi/instruction.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `Insn` internals at the C level for other Cython modules" diff --git a/pycomedi/instruction.pyx b/pycomedi/instruction.pyx index 30ee7c4..cb12336 100644 --- a/pycomedi/instruction.pyx +++ b/pycomedi/instruction.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap Comedi's `comedi_insn` struct in the `Insn` class" diff --git a/pycomedi/library.pyx b/pycomedi/library.pyx index 9c1037d..ab14655 100644 --- a/pycomedi/library.pyx +++ b/pycomedi/library.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap library-wide Comedi functions in a `Device` class" diff --git a/pycomedi/range.pxd b/pycomedi/range.pxd index 8fc048a..e8bd8b0 100644 --- a/pycomedi/range.pxd +++ b/pycomedi/range.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `Range` internals at the C level for other Cython modules" diff --git a/pycomedi/range.pyx b/pycomedi/range.pyx index d8f8137..4cd1fc4 100644 --- a/pycomedi/range.pyx +++ b/pycomedi/range.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap `comedi_range` in a Python class" diff --git a/pycomedi/subdevice.pxd b/pycomedi/subdevice.pxd index c237af5..927ed83 100644 --- a/pycomedi/subdevice.pxd +++ b/pycomedi/subdevice.pxd @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Expose `Subdevice` internals at the C level for other Cython modules" diff --git a/pycomedi/subdevice.pyx b/pycomedi/subdevice.pyx index e8ca4e5..d2fe473 100644 --- a/pycomedi/subdevice.pyx +++ b/pycomedi/subdevice.pyx @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2011-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "Wrap subdevice-wide Comedi functions in `Subdevice` and related classes" diff --git a/pycomedi/utility.py b/pycomedi/utility.py index 08a8333..bfcc472 100644 --- a/pycomedi/utility.py +++ b/pycomedi/utility.py @@ -1,17 +1,19 @@ -# Copyright (C) 2010 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # -# This program 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. +# This file is part of pycomedi. # -# This program 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. +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License -# along with this program. If not, see . +# along with pycomedi. If not, see . "Useful utility functions and classes" diff --git a/setup.py b/setup.py index 2f35c8e..634f481 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2008-2012 W. Trevor King +# +# This file is part of pycomedi. +# +# pycomedi 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 2 of the License, or (at your +# option) any later version. +# +# pycomedi 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 General Public License +# along with pycomedi. If not, see . "An object-oriented interface for the Comedi drivers." diff --git a/update_copyright.py b/update_copyright.py index 3781603..df616a6 100755 --- a/update_copyright.py +++ b/update_copyright.py @@ -1,21 +1,21 @@ #!/usr/bin/python # -# Copyright (C) 2009-2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# This file is part of Bugs Everywhere. +# This file is part of pycomedi. # -# Bugs Everywhere is free software; you can redistribute it and/or modify it +# pycomedi 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 2 of the License, or (at your # option) any later version. # -# Bugs Everywhere is distributed in the hope that it will be useful, but +# pycomedi 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 General Public License -# along with Bugs Everywhere. If not, see . +# along with pycomedi. If not, see . """Automatically update copyright boilerplate. -- 2.26.2