From Fedora Project Wiki
(→‎Testing Python 3 functionality: split out the Dive Into Python 3 test into its own section)
m (internal link cleaning)
 
(199 intermediate revisions by 10 users not shown)
Line 12: Line 12:
== Current status ==
== Current status ==
* Targeted release: [[Releases/Fedora13 | Fedora 13 ]]  
* Targeted release: [[Releases/Fedora13 | Fedora 13 ]]  
* Last updated: 2009-10-01
* Last updated: 2010-04-05
* Percentage of completion: 0%
* Percentage of completion: 100% - it's difficult to say when this is done; the more packages we have the better.  The big-ticket issues are done, but there are plenty of python3 packages [[#Python_3_code_not_yet_in_Fedora|waiting on review]] - '''Assistance with package reviews would be most welcome'''
 
=== Completed items ===
* The [https://admin.fedoraproject.org/pkgdb/packages/name/python3 python3 srpm] is in Fedora as of 2010-01-13; original package review is [https://bugzilla.redhat.com/show_bug.cgi?id=526126 here], duplicated for the purpose of import [https://bugzilla.redhat.com/show_bug.cgi?id=554799 here].
* Fedora's guidelines on [[Packaging:Python|how to package Python]] have been extended to cover dual python 2 and python 3 stacks
* Support for [http://mx.gw.com/pipermail/file/2009/000483.html identifying Python 3.0 and 3.1 .pyc and .pyo bytecode files] has been added to the "file" utility
* We have improved [https://bugzilla.redhat.com/show_bug.cgi?id=531117 rpm's handling of python bytecode] so that it can cope with multiple python versions
* We have written [https://bugzilla.redhat.com/show_bug.cgi?id=531102 new tests for rpmlint] to ensure that python bytecode within an RPM package is for the correct version of python, along with other sanity checks.
* Fedora contributor David Malcolm created the [https://fedorahosted.org/2to3c/ 2to3c] tool to help Python developers port their C extensions to Python 3.
* Python 3 modules available via RPM in Fedora 13:
** python3-chardet (though currently not yet in the F-13 Beta, it will be available in the final release ([https://admin.fedoraproject.org/updates/python3-chardet-2.0.1-2.fc13 update is stable]))
** python3-cherrypy (though currently not in main tree, but available as [https://admin.fedoraproject.org/updates/python3-cherrypy-3.2.0-0.rc1.r2567.1.fc13 an update])
** python3-coverage (built as a subpackage of python-coverage)
** python3-deltarpm (built in package deltarpm like python-deltarpm)
** python3-lxml (built as a subpackage of python-lxml)
** python3-minimock (built as a subpackage of python-minimock)
** python3-mpi4py-{openmpi,mpich2} (build as a subpackage of mpi4py)
** python3-ply (built as a subpackage of python-ply)
** python3-postgresql (though currently not in main tree, but available as [https://admin.fedoraproject.org/updates/python3-postgresql-1.0.0-1.fc13 an update])
** python3-psutil (built as a subpackage of python-psutil)
** python3-pyke (built as a subpackage of pyke)
** python3-setuptools (actually "Distribute"; built as a subpackage of python-setuptools)
** python3-smbpasswd (built as a subpackage of python-smbpasswd)
with [[Features/Python3F13#Python_3_already_in_Fedora|many more built and ready for Fedora 14]]
 
=== Items still to be done ===
* [[PackageMaintainers/CompsXml|Add a comps group]] for "Python 3"
* As many modules as can be reasonably ported/built.  See [[#Python_3_code_not_yet_in_Fedora|the list]]


== Detailed Description ==
== Detailed Description ==
Line 59: Line 86:
* get rpm bindings working with python3
* get rpm bindings working with python3
* get some useful components working e.g. a web stack: Django, TurboGears etc (though e.g. Django's py3k support is a long way off IIRC); ideas?
* get some useful components working e.g. a web stack: Django, TurboGears etc (though e.g. Django's py3k support is a long way off IIRC); ideas?
** Web stacks may not be the best thing to focus on since production largely wants to use mod_wsgi... which we won't be able to mix between py2 and py3 stacks. --[[User:Toshio|abadger1999]] 01:52, 13 November 2009 (UTC)
* solidify packaging guidelines for python 2 vs python 3 once we've got some experience with the above and hopefully proven the techniques
* solidify packaging guidelines for python 2 vs python 3 once we've got some experience with the above and hopefully proven the techniques
* look at porting major components over to python3 (but probably don't actually do this for F13; leave python 2 as the critical component, I suspect): yum (rpm), anaconda
* look at porting major components over to python3 (but probably don't actually do this for F13; leave python 2 as the critical component, I suspect): yum (rpm), anaconda
* add the new packages to the comps file.  It's not yet clear what changes to the comps file are required.


At a minimum, we'd want python 3 to be available as an rpm via yum.
At a minimum, we'd want python 3 to be available as an rpm via yum.
=== Porting status ===
These status tables have been moved to: https://fedoraproject.org/wiki/Python3#Porting_status
==== Python 3 already in Fedora ====
Moved to: https://fedoraproject.org/wiki/Python3#Python_3_already_in_Fedora
==== Python 3 code not yet in Fedora ====
Moved to: https://fedoraproject.org/wiki/Python3#Python_3_code_not_yet_in_Fedora
==== To be categorized ====
Moved to: https://fedoraproject.org/wiki/Python3#To_be_categorized
==== Python modules that appear to not yet be ready for Python 3 packaging  ====
Moved to: https://fedoraproject.org/wiki/Python3#Python_modules_that_appear_to_not_yet_be_ready_for_Python_3_packaging
=== mod_wsgi and mod_python ===
mod_wsgi and mod_python will break if the python2 and python3 versions are both loaded into the same apache process because the symbols in libpython.so.2 and libpython.so.3 will clash.  However, an admin may want to run two apache's on a server, one with the python2 version and one with the python3 versions.  We should support this.  Giving the admin some default conf files that will only let them load one set of modules is probably what we want.  The admin who wants to run two servers will need to customize their configuration to make it work.  Note that if the admin installs gets mod_python3 running on the default apache and then installs mod_python, their apps will stop working as apache will start loading the python2 version.
<pre>
<!-- in mod_wsgi.conf -->
<IfModule !mod_python3.c>
  <IfModule !mod_wsgi_py3.c>
      LoadModule wsgi_module modules/mod_wsgi.so
  </IfModule>
</IfModule>
<!-- in mod_python.conf -->
<IfModule !mod_python3.c>
  <IfModule !mod_wsgi_py3.c>
      LoadModule wsgi_module modules/mod_python.so
  </IfModule>
</IfModule>
<!-- in mod_wsgi_py3.conf -->
<IfModule !mod_python.c>
  <IfModule !mod_wsgi.c>
      LoadModule wsgi_module modules/mod_wsgi_py3.so
  </IfModule>
</IfModule>
<!-- in mod_python3.conf -->
<IfModule !mod_python.c>
  <IfModule !mod_wsgi.c>
      LoadModule wsgi_module modules/mod_python3.so
  </IfModule>
</IfModule>
</pre>


== How To Test ==
== How To Test ==
Line 93: Line 169:


=== Follow the "Dive Into Python 3" tutorial ===
=== Follow the "Dive Into Python 3" tutorial ===
If you've installed the python3 rpm, it should be possible for you to follow the tutorial on Python 3 given here: http://diveintopython3.org/
If you've installed the python3 rpm, it should be possible for you to follow the tutorial on Python 3 given here: http://diveintopython3.ep.io/


This is an excellent tutorial, and working through it with our RPMs makes a good test that all is working as expected (obviously it would be a major task to work through the whole book, but at least you'd learn a lot in the process).
This is an excellent tutorial, and working through it with our RPMs makes a good test that all is working as expected (obviously it would be a major task to work through the whole book, but at least you'd learn a lot in the process).
Line 105: Line 181:


=== Uninstallability of Python 3 ===
=== Uninstallability of Python 3 ===
* It ought to be possible for you to remove python3 without affecting other components
** A better phrasing of this point would be: It ought to be possible to remove python3 without affecting any python2 components.  If some app gets ported to python3 upstream in F13, I do think we should allow it.
* Try uninstalling python 3 using "yum remove python3".
* Try uninstalling python 3 using "yum remove python3".
* It ought to be possible for you to remove python3 without affecting other components
* Verify that other components still work as expected
* Verify that other components still work as expected
=== Upstream regression test suite ===
Run Python's regression test suite (within the python3-test subpackage)
<pre>/usr/lib/python3.1/test/regrtest.py</pre>
as root and verify that only expected errors occur.
As of 2009-10-27, if you run the above command as root, the only failure should be in test_httpservers (appears to be a permissions issue with how we've packaged the test scripts).  You may also see an error in test_socket if your machine's hostname isn't set up in DNS/hosts.
If you run using sudo, you may see an extra failure in test_distutils (test_check_environ).
If you run as a non-root user, you'll see additional failures due to tests that expect write access to certain directories
=== Static testing ===
Verify that for all subpackages, on all architectures, that the python and python3 packages are independent:
* verify that there aren't any paths (files/dirs/links) owned by both packages
* verify that there aren't any "Provides" provided by both packages
A script to automatically verify this can be seen at https://bugzilla.redhat.com/show_bug.cgi?id=526126#c17


== User Experience ==
== User Experience ==
<!-- If this feature is noticeable by its target audience, how will their experiences change as a result?  Describe what they will see or notice. -->
<!-- If this feature is noticeable by its target audience, how will their experiences change as a result?  Describe what they will see or notice. -->
It should be possible to start a Python 3 interpreter by invoking:
<pre>
$ python3
Python 3.1.1 (r311:74480, Sep 29 2009, 17:01:17)
[GCC 4.1.2 20071124 (Red Hat 4.1.2-42)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
</pre>
The python 3 install should be independent of the python 2 install.
It should be possible to have some processes on the system running python 2 code, and some processes on the system running python 3 code.  However you won't be able to run both python 2 and python 3 within the same process.


== Dependencies ==
== Dependencies ==
<!-- What other packages (RPMs) depend on this package?  Are there changes outside the developers' control on which completion of this feature depends?  In other words, completion of another feature owned by someone else and might cause you to not be able to finish on time or that you would need to coordinate?  Other upstream projects like the kernel (if this is not a kernel feature)? -->
<!-- What other packages (RPMs) depend on this package?  Are there changes outside the developers' control on which completion of this feature depends?  In other words, completion of another feature owned by someone else and might cause you to not be able to finish on time or that you would need to coordinate?  Other upstream projects like the kernel (if this is not a kernel feature)? -->
Getting the core "python3" package into Fedora requires us:
* to come up with packaging rules for Python 3.
* to ensure our packaging tools can cope with multiple, parallel python installs:
Building out the python 3 stack beyond the core interpreter component will involve working closely with many different upstream projects.  The more we can do this, the better, but it's not necessary for achieving the main goal of having the core python 3 interpreter available via rpm.
=== rpmbuild changes ===
rpmbuild currently automatically invokes /usr/lib/rpm/brp-python-bytecompile without arguments, thus using "/usr/bin/python" to byte-compile every .py file that's in a package payload, generating a bytecode file for the 2.6 ABI.
This breaks down if we're to deal with multiple python runtimes:
* the magic ABI value stored in the .pyc/.pyo file needs to match that of the python binary.  .pyc files below /usr/lib/python2.6 need to have the 2.6 magic value, whereas .pyc files below /usr/lib/python3.1 need to have the 3.1 magic value.
* the syntax of the python language can change (e.g. 2 vs 3), and the compilation can fail with syntax errors if you use the wrong python runtime
Status: I work around this "by hand" in the python3.spec.  Need to fix "properly" before building out python3- stack with further packages.
=== rpmlint changes ===
I've written a new test for rpmlint to do some of the .pyc checking.  See: https://www.zarb.org/pipermail/rpmlint-discuss/2009-October/000775.html (I also uploaded the patch here: http://dmalcolm.fedorapeople.org/rpmlint/add-tests-for-python-bytecode-files.patch )
Status: patch sent upstream, not yet in our Fedora rpmlint rpms.


== Contingency Plan ==
== Contingency Plan ==
This will be all-new RPMs within Fedora.  If there's a problem, we can simply not include them.
We will be adding all-new RPMs to Fedora.  If there's a problem, we can simply choose to not include them without impacting the rest of the Fedora 13 release.
 
Note: In order to enact this contingency plan, we '''must''' do separate packages for python2 and python3.  If we keep pursuing the one srpm to build both python2 and python3 route and we have to back out the python3 stack, we also have to backout the python3 changes in the srpms.  The same is also true of bindings to C libraries. --[[User:Toshio|abadger1999]] 02:04, 13 November 2009 (UTC)
 
Good point.  I've conditionalized support throughout the shared specfile changes, adding a <code>with_python3</code> boolean. Is this an acceptable compromise? --[[User:Dmalcolm|Dmalcolm]] 18:06, 13 November 2009 (UTC)


== Documentation ==
== Documentation ==
<!-- Is there upstream documentation on this feature, or notes you have written yourself?  Link to that material here so other interested developers can get involved. -->
<!-- Is there upstream documentation on this feature, or notes you have written yourself?  Link to that material here so other interested developers can get involved. -->
*
An excellent tutorial on Python 3 can be seen at http://diveintopython3.org/
 
Note: We may want to package this since we have the python2 version of diveintopython packaged already.
 
--[[User:Dmalcolm|Dmalcolm]] 23:24, 19 November 2009 (UTC) help packaging it would be appreciated!  I tried grabbing this from Mercurial, but the toolchain/licensing appeared to have changed greatly since the python2 version of the book


== Release Notes ==
== Release Notes ==
<!-- The Fedora Release Notes inform end-users about what is new in the release.  Examples of past release notes are here: http://docs.fedoraproject.org/release-notes/ -->
<!-- The Fedora Release Notes inform end-users about what is new in the release.  Examples of past release notes are here: http://docs.fedoraproject.org/release-notes/ -->
<!-- The release notes also help users know how to deal with platform changes such as ABIs/APIs, configuration or data file formats, or upgrade concerns.  If there are any such changes involved in this feature, indicate them here.  You can also link to upstream documentation if it satisfies this need.  This information forms the basis of the release notes edited by the documentation team and shipped with the release. -->
<!-- The release notes also help users know how to deal with platform changes such as ABIs/APIs, configuration or data file formats, or upgrade concerns.  If there are any such changes involved in this feature, indicate them here.  You can also link to upstream documentation if it satisfies this need.  This information forms the basis of the release notes edited by the documentation team and shipped with the release. -->
*
* Fedora now includes a Python 3 runtime, parallel-installable with our existing Python 2 runtime.
FIXME: obviously this will have to change based on exactly how much of the stack I manage to build out.


== Comments and Discussion ==
== Comments and Discussion ==
* See [[Talk:Features/YourFeatureName]]  <!-- This adds a link to the "discussion" tab associated with your page.  This provides the ability to have ongoing comments or conversation without bogging down the main feature page -->
* See [[Talk:Features/Python3F13]]  <!-- This adds a link to the "discussion" tab associated with your page.  This provides the ability to have ongoing comments or conversation without bogging down the main feature page -->




[[Category:FeaturePageIncomplete]]
[[Category:FeatureAcceptedF13]]
<!-- When your feature page is completed and ready for review -->
<!-- When your feature page is completed and ready for review -->
<!-- remove Category:FeaturePageIncomplete and change it to Category:FeatureReadyForWrangler -->
<!-- remove Category:FeaturePageIncomplete and change it to Category:FeatureReadyForWrangler -->
<!-- After review, the feature wrangler will move your page to Category:FeatureReadyForFesco... if it still needs more work it will move back to Category:FeaturePageIncomplete-->
<!-- After review, the feature wrangler will move your page to Category:FeatureReadyForFesco... if it still needs more work it will move back to Category:FeaturePageIncomplete-->
<!-- A pretty picture of the page category usage is at: https://fedoraproject.org/wiki/Features/Policy/Process -->
<!-- A pretty picture of the page category usage is at: https://fedoraproject.org/wiki/Features/Policy/Process -->
[[Category:Python]]

Latest revision as of 20:44, 19 September 2016

Python 3

Summary

A packaged version of python 3.* will be provided within Fedora 13 as an optional component, parallel-installable with the Python 2 stack.

The critical system components that use Python 2 (yum, anaconda) shall continue to use Python 2.

Owner

Current status

  • Targeted release: Fedora 13
  • Last updated: 2010-04-05
  • Percentage of completion: 100% - it's difficult to say when this is done; the more packages we have the better. The big-ticket issues are done, but there are plenty of python3 packages waiting on review - Assistance with package reviews would be most welcome

Completed items

  • The python3 srpm is in Fedora as of 2010-01-13; original package review is here, duplicated for the purpose of import here.
  • Fedora's guidelines on how to package Python have been extended to cover dual python 2 and python 3 stacks
  • Support for identifying Python 3.0 and 3.1 .pyc and .pyo bytecode files has been added to the "file" utility
  • We have improved rpm's handling of python bytecode so that it can cope with multiple python versions
  • We have written new tests for rpmlint to ensure that python bytecode within an RPM package is for the correct version of python, along with other sanity checks.
  • Fedora contributor David Malcolm created the 2to3c tool to help Python developers port their C extensions to Python 3.
  • Python 3 modules available via RPM in Fedora 13:
    • python3-chardet (though currently not yet in the F-13 Beta, it will be available in the final release (update is stable))
    • python3-cherrypy (though currently not in main tree, but available as an update)
    • python3-coverage (built as a subpackage of python-coverage)
    • python3-deltarpm (built in package deltarpm like python-deltarpm)
    • python3-lxml (built as a subpackage of python-lxml)
    • python3-minimock (built as a subpackage of python-minimock)
    • python3-mpi4py-{openmpi,mpich2} (build as a subpackage of mpi4py)
    • python3-ply (built as a subpackage of python-ply)
    • python3-postgresql (though currently not in main tree, but available as an update)
    • python3-psutil (built as a subpackage of python-psutil)
    • python3-pyke (built as a subpackage of pyke)
    • python3-setuptools (actually "Distribute"; built as a subpackage of python-setuptools)
    • python3-smbpasswd (built as a subpackage of python-smbpasswd)

with many more built and ready for Fedora 14

Items still to be done

Detailed Description

Python 3 is intended by upstream to be the future of Python, but we have many critical components that use Python 2. Python 2 and Python 3 are sufficiently different that we need both (try writing "print" in each). Python 2 will be around for a long time.

An interesting summary of Python 3 adoption can be seen here: http://renesd.blogspot.com/2009/09/py3kpython3-more-than-one-year-on-096.html

How to do this? I propose that Fedora shall have separate, parallel-installable Python 2 and Python 3 stacks. I believe we can get things to the point where on a Fedora box you'd be able to install both stacks, and have some processes running python 2 code, and some running python 3, simultaneously.

Where I would draw the line is on having both python 2 and python 3 running within the same _process_: the two libraries share most of their symbol names, but with differing implementations, and the result of trying to dynamically link the two into the same address space would be highly unstable.

As an example, you'd be able to install both mod_python and mod_python3 rpms, but you wouldn't be able to (sanely) configure httpd to have both running simultaneously (I guess we should add a run-time warning for this case)

Benefit to Fedora

Fedora has long been a great platform for doing Python 2 development, but we don't yet have Python 3. Having Python 3 available via rpms will extend our Python coverage.

Note also:

  • Python 3.0 was released almost 10 months ago, on 2008-12-03, and the latest release of the 3.* branch is 3.1.1, released on 2009-08-17.
  • Other distros have python 3, though not necessarily with anything "on top" resembling the full python 2 stack.
  • We have a working, valuable python 2 stack, which is used by critical system components (yum and anaconda): we must not destabilize the python 2 stack.
  • Python 3 is sufficiently different from python 2 that we need them to be independent software stacks.

Scope

A plan for packaging Python 3 and Python 3 modules was posted to fedora-devel-list here: https://www.redhat.com/archives/fedora-devel-list/2009-October/msg00054.html

A rough plan for Fedora 13 might be:

  • get python3 packaged in a manner compatible with the above
  • (persuade /usr/lib/rpm/brp-python-bytecompile to use the correct python when building rpms containing .py files)
  • get rpm bindings working with python3
  • get some useful components working e.g. a web stack: Django, TurboGears etc (though e.g. Django's py3k support is a long way off IIRC); ideas?
    • Web stacks may not be the best thing to focus on since production largely wants to use mod_wsgi... which we won't be able to mix between py2 and py3 stacks. --abadger1999 01:52, 13 November 2009 (UTC)
  • solidify packaging guidelines for python 2 vs python 3 once we've got some experience with the above and hopefully proven the techniques
  • look at porting major components over to python3 (but probably don't actually do this for F13; leave python 2 as the critical component, I suspect): yum (rpm), anaconda
  • add the new packages to the comps file. It's not yet clear what changes to the comps file are required.

At a minimum, we'd want python 3 to be available as an rpm via yum.

Porting status

These status tables have been moved to: https://fedoraproject.org/wiki/Python3#Porting_status

Python 3 already in Fedora

Moved to: https://fedoraproject.org/wiki/Python3#Python_3_already_in_Fedora

Python 3 code not yet in Fedora

Moved to: https://fedoraproject.org/wiki/Python3#Python_3_code_not_yet_in_Fedora

To be categorized

Moved to: https://fedoraproject.org/wiki/Python3#To_be_categorized

Python modules that appear to not yet be ready for Python 3 packaging

Moved to: https://fedoraproject.org/wiki/Python3#Python_modules_that_appear_to_not_yet_be_ready_for_Python_3_packaging

mod_wsgi and mod_python

mod_wsgi and mod_python will break if the python2 and python3 versions are both loaded into the same apache process because the symbols in libpython.so.2 and libpython.so.3 will clash. However, an admin may want to run two apache's on a server, one with the python2 version and one with the python3 versions. We should support this. Giving the admin some default conf files that will only let them load one set of modules is probably what we want. The admin who wants to run two servers will need to customize their configuration to make it work. Note that if the admin installs gets mod_python3 running on the default apache and then installs mod_python, their apps will stop working as apache will start loading the python2 version.

<!-- in mod_wsgi.conf -->
<IfModule !mod_python3.c>
  <IfModule !mod_wsgi_py3.c>
      LoadModule wsgi_module modules/mod_wsgi.so
  </IfModule>
</IfModule>

<!-- in mod_python.conf -->
<IfModule !mod_python3.c>
  <IfModule !mod_wsgi_py3.c>
      LoadModule wsgi_module modules/mod_python.so
  </IfModule>
</IfModule>

<!-- in mod_wsgi_py3.conf -->
<IfModule !mod_python.c>
  <IfModule !mod_wsgi.c>
      LoadModule wsgi_module modules/mod_wsgi_py3.so
  </IfModule>
</IfModule>

<!-- in mod_python3.conf -->
<IfModule !mod_python.c>
  <IfModule !mod_wsgi.c>
      LoadModule wsgi_module modules/mod_python3.so
  </IfModule>
</IfModule>

How To Test

Testing Python 3 functionality

You should be able to test the new python 3 stack using:

$ yum install python3

and then starting the python 3 interpreter using

$ python3

You should then see the Python 3 interpreter:

Python 3.1.1 (r311:74480, Sep 29 2009, 17:01:17) 
[GCC 4.1.2 20071124 (Red Hat 4.1.2-42)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

Follow the "Dive Into Python 3" tutorial

If you've installed the python3 rpm, it should be possible for you to follow the tutorial on Python 3 given here: http://diveintopython3.ep.io/

This is an excellent tutorial, and working through it with our RPMs makes a good test that all is working as expected (obviously it would be a major task to work through the whole book, but at least you'd learn a lot in the process).

Ensuring non-brokenness of Python 2 stack

The Python 3 stack should not interfere with the Python 2 stack; the latter is used by many components. The most critical ones here are yum and anaconda.

Please verify that "yum" still works after installing python3.

If there are other python 2 rpms that you are familiar with, please check that they still work after installing the python3 rpm.

Uninstallability of Python 3

  • It ought to be possible for you to remove python3 without affecting other components
    • A better phrasing of this point would be: It ought to be possible to remove python3 without affecting any python2 components. If some app gets ported to python3 upstream in F13, I do think we should allow it.
  • Try uninstalling python 3 using "yum remove python3".
  • Verify that other components still work as expected

Upstream regression test suite

Run Python's regression test suite (within the python3-test subpackage)

/usr/lib/python3.1/test/regrtest.py

as root and verify that only expected errors occur.

As of 2009-10-27, if you run the above command as root, the only failure should be in test_httpservers (appears to be a permissions issue with how we've packaged the test scripts). You may also see an error in test_socket if your machine's hostname isn't set up in DNS/hosts.

If you run using sudo, you may see an extra failure in test_distutils (test_check_environ).

If you run as a non-root user, you'll see additional failures due to tests that expect write access to certain directories

Static testing

Verify that for all subpackages, on all architectures, that the python and python3 packages are independent:

  • verify that there aren't any paths (files/dirs/links) owned by both packages
  • verify that there aren't any "Provides" provided by both packages

A script to automatically verify this can be seen at https://bugzilla.redhat.com/show_bug.cgi?id=526126#c17

User Experience

It should be possible to start a Python 3 interpreter by invoking:

$ python3
Python 3.1.1 (r311:74480, Sep 29 2009, 17:01:17) 
[GCC 4.1.2 20071124 (Red Hat 4.1.2-42)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

The python 3 install should be independent of the python 2 install.

It should be possible to have some processes on the system running python 2 code, and some processes on the system running python 3 code. However you won't be able to run both python 2 and python 3 within the same process.

Dependencies

Getting the core "python3" package into Fedora requires us:

  • to come up with packaging rules for Python 3.
  • to ensure our packaging tools can cope with multiple, parallel python installs:

Building out the python 3 stack beyond the core interpreter component will involve working closely with many different upstream projects. The more we can do this, the better, but it's not necessary for achieving the main goal of having the core python 3 interpreter available via rpm.

rpmbuild changes

rpmbuild currently automatically invokes /usr/lib/rpm/brp-python-bytecompile without arguments, thus using "/usr/bin/python" to byte-compile every .py file that's in a package payload, generating a bytecode file for the 2.6 ABI.

This breaks down if we're to deal with multiple python runtimes:

  • the magic ABI value stored in the .pyc/.pyo file needs to match that of the python binary. .pyc files below /usr/lib/python2.6 need to have the 2.6 magic value, whereas .pyc files below /usr/lib/python3.1 need to have the 3.1 magic value.
  • the syntax of the python language can change (e.g. 2 vs 3), and the compilation can fail with syntax errors if you use the wrong python runtime

Status: I work around this "by hand" in the python3.spec. Need to fix "properly" before building out python3- stack with further packages.

rpmlint changes

I've written a new test for rpmlint to do some of the .pyc checking. See: https://www.zarb.org/pipermail/rpmlint-discuss/2009-October/000775.html (I also uploaded the patch here: http://dmalcolm.fedorapeople.org/rpmlint/add-tests-for-python-bytecode-files.patch )

Status: patch sent upstream, not yet in our Fedora rpmlint rpms.

Contingency Plan

We will be adding all-new RPMs to Fedora. If there's a problem, we can simply choose to not include them without impacting the rest of the Fedora 13 release.

Note: In order to enact this contingency plan, we must do separate packages for python2 and python3. If we keep pursuing the one srpm to build both python2 and python3 route and we have to back out the python3 stack, we also have to backout the python3 changes in the srpms. The same is also true of bindings to C libraries. --abadger1999 02:04, 13 November 2009 (UTC)

Good point. I've conditionalized support throughout the shared specfile changes, adding a with_python3 boolean. Is this an acceptable compromise? --Dmalcolm 18:06, 13 November 2009 (UTC)

Documentation

An excellent tutorial on Python 3 can be seen at http://diveintopython3.org/

Note: We may want to package this since we have the python2 version of diveintopython packaged already.

--Dmalcolm 23:24, 19 November 2009 (UTC) help packaging it would be appreciated! I tried grabbing this from Mercurial, but the toolchain/licensing appeared to have changed greatly since the python2 version of the book

Release Notes

  • Fedora now includes a Python 3 runtime, parallel-installable with our existing Python 2 runtime.

FIXME: obviously this will have to change based on exactly how much of the stack I manage to build out.

Comments and Discussion