Skip to content

Commit

Permalink
relicense under revised BSD license
Browse files Browse the repository at this point in the history
similar to IPython
  • Loading branch information
lebedov authored and gotcha committed Feb 22, 2016
1 parent 40878ab commit 6d446dd
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 396 deletions.
369 changes: 30 additions & 339 deletions COPYING.txt

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions HISTORY.txt
Expand Up @@ -4,8 +4,9 @@ Changelog
0.8.4 (unreleased)
------------------

- Nothing changed yet.

- Switch to revised BSD license (with approval of all contributors).
Closes https://github.com/gotcha/ipdb/issues/68
[lebedov, gotcha]

0.8.3 (2016-02-17)
------------------
Expand Down
17 changes: 4 additions & 13 deletions ipdb/__init__.py
@@ -1,17 +1,8 @@
# Copyright (c) 2007, 2010, 2011, 2012 Godefroid Chapelle
#
# This file is part of ipdb.
# GNU package 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.
# Copyright (c) 2007-2016 Godefroid Chapelle and ipdb development team
#
# GNU package 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 http://www.gnu.org/licenses/.
# This file is part of ipdb.
# Redistributable under the revised BSD license
# https://opensource.org/licenses/BSD-3-Clause

from ipdb.__main__ import set_trace, post_mortem, pm, run, runcall, runeval, launch_ipdb_on_exception

Expand Down
13 changes: 3 additions & 10 deletions ipdb/__main__.py
@@ -1,15 +1,8 @@
# Copyright (c) 2011, 2012 Godefroid Chapelle
# Copyright (c) 2011-2016 Godefroid Chapelle and ipdb development team
#
# This file is part of ipdb.
# GNU package 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.
#
# GNU package 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.
# Redistributable under the revised BSD license
# https://opensource.org/licenses/BSD-3-Clause

from __future__ import print_function
from inspect import getargspec
Expand Down
16 changes: 5 additions & 11 deletions manual_test.py
@@ -1,15 +1,9 @@
# Copyright (c) 2011 Godefroid Chapelle
#
# This file is part of ipdb.
# GNU package 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.
# Copyright (c) 2011-2016 Godefroid Chapelle and ipdb development team
#
# GNU package 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.
# This file is part of ipdb.
# Redistributable under the revised BSD license
# https://opensource.org/licenses/BSD-3-Clause


def output(arg):
print("MANUAL: arg=%s" % arg)
Expand Down
15 changes: 4 additions & 11 deletions setup.py
@@ -1,15 +1,8 @@
# Copyright (c) 2007, 2010, 2011, 2012 Godefroid Chapelle
# Copyright (c) 2007-2016 Godefroid Chapelle and ipdb development team
#
# This file is part of ipdb.
# GNU package 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.
#
# GNU package 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.
# Redistributable under the revised BSD license
# https://opensource.org/licenses/BSD-3-Clause

from setuptools import setup, find_packages
from sys import version_info
Expand Down Expand Up @@ -45,7 +38,7 @@
author='Godefroid Chapelle',
author_email='gotcha@bubblenet.be',
url='https://github.com/gotcha/ipdb',
license='GPL',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
Expand Down
13 changes: 3 additions & 10 deletions tests/test_import.py
@@ -1,15 +1,8 @@
# Copyright (c) 2012 Marc Abramowitz
# Copyright (c) 2012-2016 Marc Abramowitz and ipdb development team
#
# This file is part of ipdb.
# GNU package 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.
#
# GNU package 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.
# Redistributable under the revised BSD license
# https://opensource.org/licenses/BSD-3-Clause

import unittest

Expand Down

0 comments on commit 6d446dd

Please sign in to comment.