Re: Licensing?

2023-02-02 Thread Jon Ribbens via Python-list
On 2023-02-03, Greg Ewing wrote: > On 3/02/23 6:38 am, Jon Ribbens wrote: >> If you change someone else's code then you have created a derived >> work, which requires permission from both the original author and you >> to copy. (Unless you change it so much that nothing remains of the >> original

Re: Licensing?

2023-02-02 Thread Greg Ewing
On 3/02/23 6:38 am, Jon Ribbens wrote: If you change someone else's code then you have created a derived work, which requires permission from both the original author and you to copy. (Unless you change it so much that nothing remains of the original author's code, of course.) "Nothing" is prob

Re: Licensing?

2023-02-02 Thread Jon Ribbens via Python-list
On 2023-02-02, Stefan Ram wrote: > Many licenses in the Python world are like: "You can make > changes, but have to leave in my Copyright notice.". > > Would it be possible that the original author could not > claim a Copyright anymore when code has been changed? No. If you change someone

Re: Licensing

2008-03-31 Thread Paul Boddie
On 31 Mar, 09:36, Duncan Booth <[EMAIL PROTECTED]> wrote: > > I don't have a printed copy, but Google Books has it (not sure which > edition I found) and page xix says: > > Given the nature of the cookbook, we wanted the recipes to be usable under > any circumstances where Python could be used. In

Re: Licensing

2008-03-31 Thread Duncan Booth
Paul Boddie <[EMAIL PROTECTED]> wrote: > Note that the Python Cookbook says this about licensing: "Except where > otherwise noted, recipes in the Python Cookbook are published under > the Python license." The link is incorrect, but I presume they mean > this licence: > > http://www.python.org/psf

Re: Licensing

2008-03-30 Thread DS
Paul Boddie wrote: > On 29 Mar, 20:24, DS <[EMAIL PROTECTED]> wrote: > >> I'm pretty sure this is the wrong place to ask, but I'm hoping someone >> will point me in the right direction. >> >> I'm getting ready to publish a first open-source project written in >> python. I am planning to use GPL

Re: Licensing

2008-03-30 Thread Paul Boddie
On 29 Mar, 20:24, DS <[EMAIL PROTECTED]> wrote: > I'm pretty sure this is the wrong place to ask, but I'm hoping someone > will point me in the right direction. > > I'm getting ready to publish a first open-source project written in > python. I am planning to use GPLas the license. However, in my

Re: Licensing

2008-03-29 Thread DS
Scott David Daniels wrote: > DS wrote: > >> I'm getting ready to publish a first open-source project written in >> python. I am planning to use GPL as the license. However, in my code, >> there is a function that I like from Python Cookbook >> So, my options appear to be: >> 1. Don't u

Re: Licensing

2008-03-29 Thread Scott David Daniels
DS wrote: > I'm getting ready to publish a first open-source project written in > python. I am planning to use GPL as the license. However, in my code, > there is a function that I like from Python Cookbook > So, my options appear to be: > 1. Don't use it. > 2. Use it with no comment --

Re: Licensing and Other Questions

2005-08-26 Thread David MacQuigg
On Sat, 27 Aug 2005 01:35:58 +0300, Christos Georgiou <[EMAIL PROTECTED]> wrote: >Your method is/will_not be free (as in beer), as hinted in >http://www.ece.arizona.edu/~edatools/home/email/registry/Form-Sender01.htm >. *That* is a drawback similar to the licensing of the Microsoft's >Sender/Call

Re: Licensing Python code under the Python license

2005-03-14 Thread Leif K-Brooks
Harlin Seritt wrote: If this is for making money, make it either a proprietary license or BSD. If you're giving it away and expect nothing for it except maybe fame, do GPL. You're kidding, right? How does the BSD license possibly offer more protection for a commercial program than the GPL does? --

Re: Licensing Python code under the Python license

2005-03-14 Thread Daniel Dittmar
Leif K-Brooks wrote: Harlin Seritt wrote: If this is for making money, make it either a proprietary license or BSD. If you're giving it away and expect nothing for it except maybe fame, do GPL. You're kidding, right? How does the BSD license possibly offer more protection for a commercial program

Re: Licensing Python code under the Python license

2005-03-13 Thread "Martin v. Löwis"
JanC wrote: This is difficult to do right, if you have to consider all the laws in different countries... Right. So he points out that his explanations are for US copyright law only, and then that legislation even in different US states, or perhaps even in districts, might be different. Therefore,

Re: Licensing Python code under the Python license

2005-03-13 Thread JanC
Martin v. Löwis schreef: > Larry argues that a license should be legally meaningful, and > legally clear - or else there is little point in formulating > a license in the first place. This is difficult to do right, if you have to consider all the laws in different countries... -- JanC "Be str

Re: Licensing Python code under the Python license

2005-03-12 Thread "Martin v. Löwis"
Ville Vainio wrote: Daniel> Thanks for the advice. I'll probably go with either the Daniel> BSD license, or possibly the LGPL. But I'm leaning Daniel> towards the BSD since it fits on the screen... Isn't MIT license even shorter and simpler? A while ago some Debian guys were speculati

Re: Licensing Python code under the Python license

2005-03-12 Thread Harlin Seritt
When you ask an opinion, you can expect a long thread list... even if it's something inane like "What kind of license should I use?"... hacker/geeks/freaks/wannabes are only too happy to issue an opinion -- warranted or otherwise... Regards, Harlin Seritt -- http://mail.python.org/mailman/listi

Re: Licensing Python code under the Python license

2005-03-12 Thread Harlin Seritt
If this is for making money, make it either a proprietary license or BSD. If you're giving it away and expect nothing for it except maybe fame, do GPL. :-) Regards, Harlin Seritt -- http://mail.python.org/mailman/listinfo/python-list

Re: Licensing Python code under the Python license

2005-03-12 Thread Ville Vainio
> "Daniel" == Daniel Keep <[EMAIL PROTECTED]> writes: Daniel> Thanks for the advice. I'll probably go with either the Daniel> BSD license, or possibly the LGPL. But I'm leaning Daniel> towards the BSD since it fits on the screen... Isn't MIT license even shorter and simpler? A w

Re: Licensing Python code under the Python license

2005-03-12 Thread Daniel Keep
Wow. That was fast. PHP forums eat your heart out :P Thanks for the advice. I'll probably go with either the BSD license, or possibly the LGPL. But I'm leaning towards the BSD since it fits on the screen... -- http://mail.python.org/mailman/listinfo/python-list

Re: Licensing Python code under the Python license

2005-03-11 Thread Robert Kern
Daniel Keep wrote: I'm currently working on a Python program, and was wondering if it's possible to license the program, some associated tools, and a few other libraries I've written under the Python license. I had a look at the new PSF Python license on the list of OSI-approved licenses, but it ma

Re: Licensing Python code under the Python license

2005-03-11 Thread Tim Peters
[Daniel Keep] > I'm currently working on a Python program, and was wondering if it's > possible to license the program, some associated tools, and a few other > libraries I've written under the Python license. > > I had a look at the new PSF Python license on the list of OSI-approved > licenses, bu