Click here to Skip to main content
15,885,891 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
So we all know how Python is a generally simple, and easy-to-understand language both in syntax and logic. Now I'm thinking of a project in which I would need a slightly modified version of Python with little logic, and syntax tweaks.

So I logically have the idea to branch python and to add the changes, save, and be done. Thus I have two questions: Can I branch python to add modifications to it? And how would I go about doing that?

What I have tried:

I tried reading, googling, etc
Posted
Updated 13-Jan-22 10:22am
v2
Comments
Richard MacCutchan 13-Jan-22 16:13pm    
What do you mean by "branch Python". If you are planning to modify the source code then you need to download the latest source, which you can then modify to your requirements. But you should not post that back to the main repository unless it passes all of the compiler test suites.

1 solution

This kind of question can easily be answered with a quick Google search. But, I would like to ask you why you want to do it?

Python is an open-source programming language and is actively contributed to. If you wish to contribute, visit Python Developer's Guide[^]. You will find all the resources for this. Read the contributor's guide[^].

If you meant to create a new project (that is branched off), make sure you read the LICENSE[^] and know what are your rights. This can impact whether you can run the Python without contributing back to the open-source.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900