Skip to main content

Python 2.5 compatibility wrapper for Python 2.7 code.

Project description

seven is a Python 2.6+ compatibility layer for Python 2.5. It allows you to import Python 2.6 or 2.7 code in a 2.5 interpreter. It is mainly intended to be used on Google App Engine.

Basic usage

Before importing non-compatible code, you need to start the seven import hook by calling seven.start():

>>> import seven
>>> seven.start()

>>> import incompatible.modules

>>> seven.stop()  # optional

The above will install an import hook and preprocess all modules before importing them using lib2to3 from the Python 2.7 stdlib. The installed hook will process all imported python modules until you call seven.stop(). If you don’t stop it, all imports will be processed.

Import whitelists

Preprocessing all imported modules might not always be a good idea, mainly for two reasons. Firs, it comes with a slight performance penalty. Second, more important reason is that exceptions raised in modules that have been processed by the import hook can be really hard to debug. Line numbers are usually wrong, and the filename is not displayed correctly. These things might be improved in the future, but for now it is advised that only the necessary modules be processed.

The following example will only preprocess the modules foo, spam.eggs and their submodules, foo.* and spam.eggs.*:

>>> seven.start(['foo', 'spam.eggs'])

What gets fixed?

Of course, not all fixers have been implemented yet. The following features are available (without using from __future__ imports):

  • with statement (from __future__ import with_statement)

  • absolute imports (from __future__ import absolute_imports)

  • integer division (from __future__ import division)

  • class decorators

Class decorators are converted like this:

@decorated
class C:
    pass

becomes:

class C:
    pass
C = decorated(C)

How to disable logging and pickling?

On certain production environments, logging might not be very useful, or writing files might not be possible (e.g. App Engine). To disable logging or writing pickle dumps, create a module named sevenconfig and add the log = False or speedups = False globals (or both). Make sure the module is importable before importing seven.

What needs to be implemented?

The following features do not have fixers yet:

  • indented class decorators

  • except Exception as e:

  • advanced string formatting

  • print as a function

  • set literals

  • dict and set comprehensions

  • multiple context managers in one with statement

  • etc.

How to write fixers?

By subclassing seven.lib2to3.fixer_base.BaseFix. You can also fork this project on GitHub, have a look at the existing fixers in src/seven/fixes and add your own, thend send me a pull request.

Changelog

0.6 (2011-04-05)

  • Logging and pickling can now be turned off.

0.5 (2010-12-04)

  • Initial public release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

seven-0.6.tar.gz (54.4 kB view details)

Uploaded Source

File details

Details for the file seven-0.6.tar.gz.

File metadata

  • Download URL: seven-0.6.tar.gz
  • Upload date:
  • Size: 54.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for seven-0.6.tar.gz
Algorithm Hash digest
SHA256 a937c61b86fba8d0b4d0f8ee032364e8fdcd9716885eba9fadb1f74307da7631
MD5 0dd1ee591c601c6e6d021d39b98888be
BLAKE2b-256 76fc4d0b9f088fe738b8826905681321715fc0c47236a715be086d833c6fb766

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page