PKi=#Dxhh versiontools-latest/changes.html Release history — Version Tools 1.9.1 documentation

Release history

Version 1.9.1

  • Just bump version to final, sorry

Version 1.9

  • Reorganize and update documentation.
  • Add a new way of using versiontools that does not require using setup_requires. This way is based on bundling a small helper module to help you bootstrap your project when installed from source.
  • Add versiontools.Version.from_expression() that creates a Version object from a python import expression (and an optional variable identifer)
  • Move and rename private function versiontools.handle_version to versiontools.setuptools_hooks:version().
  • Move and rename private function versiontools.get_exception_message to versiontools._get_exception_message().
  • Remove private function versiontools.isstring.

Version 1.8.3

  • Fix incorrectly specified line in git support. Previosuly a KeyError may bleed to the outside calling code, depending on python version.
  • Fix incorrectly specified line in bzr support. Previously a non-bzr directory could be associated as a malformed bzr branch.

Version 1.8.2

  • Improve git support by adding code paths compatible with python-git 0.1.6 (which is easier to get on Debian)
  • Change git support to default to short commit id. If you want to access the long commit id you need to access it directly as GitIntegration.commit_id

Version 1.8.1

  • Improve performance when working with checkouts. The use of branch.nick has been replaced with branch._get_nick(local=True). This avoids network operations and is much more responsive.

Version 1.8

  • Fixed all pep8 issues (prettier syntax)
  • Fixed an issue with using __import__ on Python 2.4.
  • Fixed an issue with using :versiontools:path.to.symbol with nested modules
  • Fixed an issue with using exceptions on Python 3.x
  • Added test that demostrated that exception handling works on all Python versions.
  • Unified error handling across version control plugins.
  • General documentation improvements, installation, usage, code refrerence, and writing additional plug-ins.
  • Added a backwards incompatible constraint on serial to be greater than zero on alpha, beta and release candidates as required by PEP 386.

Version 1.7

  • Add support for Mercurial repositories
  • Fix a bug in exception handling that affected 1.6

Version 1.6

  • Add support for python2.4 and python2.5 thanks to Jannis Leidel (thanks!).
  • Add tox (http://codespeak.net/~hpk/tox/) configuration file for easier testing.

Version 1.5

  • Added Git support, contributed by Jannis Leidel (thanks!). To use it you need GitPython >= 0.3.2.RC1. It does not currently work on GitPython packaged in Ubuntu Natty (0.1.6).

Version 1.4

  • Work harder to figure out the source tree a __version__ object comes from. This is possible with a new function versiontools.Version.from_tuple_and_hint().
  • Allow people to omit the version identifier in setup.py (defaulting to __version__)

Version 1.3.2

  • Change version string produced by versiontools.Version.__str__() and versiontools.format_version to be more useful when vcs integration is not available and the release is not final. Consult the table below for details.

    Prior to 1.3.2 1.3.2 Comment

    1.2.3

    When VCS integration is not available

    1.2.3.dev When releaselevel==dev but VCS integration is not available we now add a .dev suffix to differentiate from released versions
    1.2.3a5 or 1.2.3a5.devREVNO 1.2.3a5 `

    .devREVNO is only added when releaselevel==dev.

    It will never appear on alphas , betas or release candidates.

    1.2.3b5 or 1.2.3b5.devREVNO 1.2.3b5
    1.2.3c5 or 1.2.3c5.devREVNO 1.2.3c5

Version 1.3.1

  • To make setup.py test work in third party components we cannot use versiontools in our own setup.

Version 1.3

  • Add integration with setuptools (or more accurately, distribute) so that you no longer have to try-import versiontools. This means that you may finally install your packages with pip and everything will work correctly.
  • Prevent an unexplained crash when following the backtrace in Version._find_source_tree().

See also

To get started quickly see Usage instructions

Version 1.2

  • Change how vcs objects are constructed. With this change they are only constructed lazily when needed. This speeds up common operations, delays the time any additional modules are imported (if any) and retains backwards comp ability.
  • Updated documentation on installation instructions to point to the new PPA
  • Updated recommended usage guide so that installed programs do not depend on versiontools. This allows you to use versiontools in setup.py and still benefit from the smart version formatting and keep your deployment lightweight.
  • Added basic unit tests
  • Fixed most PEP8 issues

Version 1.1

  • Change version string produced by versiontools.Version.__str__() to be compatible with PEP 386 The following table shows how old versions map to new versions:

    Old Version New Version Comment
    1.2 1.2  
    1.2.3 1.2.3  
    1.2.3.dev.5 1.2.3.devREVNO VCS revision and serial are two distinct fields. Serial is no longer displayed for development releases.
    1.2.3.alpha.5 1.2.3a5 or 1.2.3a5.devREVNO .devREVNO is only added when VCS integration is available.
    1.2.3.beta.5 1.2.3b5 or 1.2.3b5.devREVNO
    1.2.3.candidate.5 1.2.3c5 or 1.2.3c5.devREVNO
  • Add versiontools.format_version() that converts a 5-element tuple to a proper version string and is more obvious in intent.

  • Change default of Version releaselevel to “final”

  • Change default of Version serial to 0

  • Serial field is no longer initialized with revision number from vcs, instead it is used to count alphas, betas and release candidates.

  • All version components except for releaselevel must be non-negative integers or strings that can be converted to such integers

  • Do not warn about “directory foo is not a bzr branch”. This message was changed to debug as it is now legitimate for released code not to have bzr version control files.

Version 1.0.4

Version 1.0.3

  • Don’t crash when ImportError occurs during VCS integration initialization

Version 1.0.2

  • Add documentation
  • Fix chicken-and-egg problem so that packages can now depend on versiontools and still be installed correctly with pip

Version 1.0.1

  • Make VCS integration more robust in the way it locates source tree

Version 1.0

  • Initial release
Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#D@]<]<(versiontools-latest/vcs-integration.html Integration with version control — Version Tools 1.9.1 documentation

Integration with version control

versiontools supports a form of version control system integration. This code is only triggered for development versions of your project (indicated by setting releaselevel to dev")

In development mode the generated version string will include the revision number or the abbreviated hash of the current commit. This makes it nice for ongoing releases on pypi as after each commit your source tarballs will be different.

Batteries included

The following version control systems are supported out of the box. To use them you need to have the corresponding libraries installed. Check the links below for details.

Bazaar

Using bazaar appends the branch revision to the version string. See versiontools.bzr_support

Git

Using git appends the short commit id of the active branch. See versiontools.git_support

Mercurial

Mercurial plug-in appends the branch revision to the development version. See versiontools.hg_support

Custom version control systems

VCS integration is not hard-coded into versiontools. Instead any package that uses setuptools and provides an entry point versiontools.vcs_integration can add support for integration with additional version control systems.

To see how to implement this simple API refer to the bundled plug-in for Bazaar BzrIntegration, Git GitIntegration or Mercurial HgIntegration.

To make versiontools aware of additional plug-ins they need to be registered in the entry points database. To do that make sure your package uses setuptools and put the following snippet into your setup.py:

setup(
    name="foo",
    description="The imaginary foo version control system",
    entry_points="""
    [versiontools.vcs_integration]
    foo=foo.versiontools_plugin:FooIntegration
    """
    )

This will make versiontools look for the foo system by importing foo.versiontools_plugin and extracting the FooIntegration class. Remember that your foo package needs to be installed for this system to work.

Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#D"G>>versiontools-latest/usage.html Usage instructions — Version Tools 1.9.1 documentation

Usage instructions

Using versiontools is very easy. Just follow those steps to do it.

Declare package version

Put this code your package’s __init__.py or in your main module:

__version__ = (1, 2, 3, 'final', 0)  # replace with your project version

Copy versiontools_support.py

You will need to keep a copy of versiontools_support.py file in your source tree. This file will be needed by your users that don’t have versiontools to still be able to run setup.py to install your package.

Update MANIFEST.in

You will need to update (or create) MANIFEST.in to ensure that each source distribution you make with setup.py sdist will ship a copy of the support file. All that you have to do is to append this line to your MANIFEST.in:

include versiontools_support.py

Patch setup.py

Edit your setup.py to have code that looks like this:

import versiontools_support

setup(
    version = ":versiontools:your_package",
)

The trick here is to use a magic value for version keyword. The format of that magic value is:

":versiontools:" - a magic string that versiontools matches
your_package     - name of your package or module to import
":"              - colon separating package from identifier (optional)
identifier       - Object to import from your_package. (optional)
                   Can be omitted if equal to __version__.

This will make versiontools use versiontools.format_version() on whatever your_package.__version__ contains. Since your __version__ is a tuple as described above you’ll get a correctly formatted version identifier.

This code will ensure that:

  1. Your package will use version tools
  2. Your package will correctly install via pip

Developing with versiontools

While you are working on the next version of your project you should make sure that releaselevel is set to "dev". This will (if you have proper vcs integration in place) allow you to get the most benefit.

Releases

Each time you make a release (with setup.py sdist or any bdist commands) make sure to change the releaselevel to something other than "dev". You can use the following strings:

  • "alpha"
  • "beta"
  • "candidate"
  • "final"
Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#DFS##"versiontools-latest/searchindex.jsSearch.setIndex({objects:{"":{versiontools:[4,0,1,""]},versiontools:{format_version:[4,3,1,""],versiontools_support:[4,0,1,""],hg_support:[4,0,1,""],bzr_support:[4,0,1,""],Version:[4,6,1,""],setuptools_hooks:[4,0,1,""],git_support:[4,0,1,""]},"versiontools.bzr_support.BzrIntegration":{branch_nick:[4,1,1,""],revno:[4,1,1,""],from_source_tree:[4,4,1,""]},"versiontools.Version":{major:[4,1,1,""],"__new__":[4,5,1,""],from_tuple:[4,4,1,""],"__str__":[4,2,1,""],releaselevel:[4,1,1,""],from_expression:[4,4,1,""],micro:[4,1,1,""],vcs:[4,1,1,""],serial:[4,1,1,""],from_tuple_and_hint:[4,4,1,""],minor:[4,1,1,""]},"versiontools.git_support.GitIntegration":{commit_id_abbrev:[4,1,1,""],commit_id:[4,1,1,""],branch_nick:[4,1,1,""],revno:[4,1,1,""],from_source_tree:[4,4,1,""]},"versiontools.hg_support":{HgIntegration:[4,6,1,""]},"versiontools.bzr_support":{BzrIntegration:[4,6,1,""]},"versiontools.setuptools_hooks":{version:[4,3,1,""]},"versiontools.git_support":{GitIntegration:[4,6,1,""]},"versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata":{get_version:[4,2,1,""]},"versiontools.versiontools_support":{VersiontoolsEnchancedDistributionMetadata:[4,6,1,""]},"versiontools.hg_support.HgIntegration":{branch_nick:[4,1,1,""],revno:[4,1,1,""],from_source_tree:[4,4,1,""]}},terms:{represent:[1,4],all:[0,1,3,4],code:[0,1,2,3,4],dist:4,edg:1,queri:[1,4],per:1,abil:3,follow:[0,1,2,3,4],"3a1":[1,4],"3a5":3,privat:3,accur:3,depend:[1,3,4],sorri:3,friendli:[1,4],program:3,sourc:[0,2,3,4],string:[0,1,2,3,4],candid:[0,1,3,4],veri:[0,4],appar:4,magic:0,level:[1,4],refrer:3,"try":3,plain:4,small:[1,3,4],prevent:[3,4],slower:4,natur:[1,4],direct:[1,4],zero:[1,3,4],design:4,pass:4,download:4,odd:4,append:[0,1,2,4],compat:[3,4],index:1,what:[1,4],lazili:3,compar:[1,4],neg:[3,4],section:[1,4],abl:0,access:[3,4],abbrevi:[2,4],version:[0,1,2,3,4],"new":[1,3,4],net:3,method:[1,4],metadata:4,ongo:2,full:[1,4],hash:2,gener:[1,2,3,4],never:3,here:0,intercept:4,ubuntu:[3,4],path:[3,4],sinc:[0,4],valu:[0,1,4],versintool:4,box:[1,2],convert:[1,3,4],convers:1,host:4,prior:3,permit:4,chang:[0,3],overrid:4,via:[0,3],extra:4,janni:3,modul:[0,1,3,4],releaselevel:[0,2,3,4],put:[0,2],api:2,instal:[0,1,2,3,4],unit:3,from:[0,1,3,4],describ:[0,1,4],would:4,distinct:3,regist:2,two:3,next:0,few:4,handler:4,call:[3,4],recommend:[3,4],checkout:3,start:[1,3,4],minor:4,more:[1,3,4],sort:[1,4],version_tupl:4,peopl:3,enhanc:4,warn:[3,4],particular:4,hold:4,must:[3,4],none:4,gitpython:[3,4],setup:[0,1,2,3,4],work:[0,2,3,4],dev:[0,1,2,3,4],histori:[1,3],annoi:4,handle_vers:3,whatev:0,learn:1,control:[1,2,3,4],malform:3,sdist:0,indic:[1,2,4],want:[3,4],tarbal:[1,2],serial:[3,4],occur:3,contribut:3,delai:3,alwai:[1,4],differenti:3,mai:[1,3,4],rather:4,snippet:2,how:[1,2,3,4],instead:[1,2,3,4],simpl:2,updat:[0,1,3],commit_id:[3,4],map:3,overridden:1,after:2,date:1,data:4,ident:4,github:4,practic:4,third:3,classmethod:4,counter:4,correspond:2,element:[3,4],issu:[3,4],inform:[1,4],maintain:1,allow:[0,1,3,4],egg:3,origin:4,least:4,help:[3,4],move:3,ppa:3,affect:3,gitintegr:[2,3,4],still:[0,3,4],paramet:4,write:3,thank:3,fix:3,window:4,helper:3,main:0,getsourcefil:4,easier:3,non:3,good:[1,4],crash:3,greater:[3,4],thei:[2,3],python:[1,3,4],smarter:4,spell:4,bzr_support:[1,2,4],initi:[3,4],"break":4,framework:4,now:[1,3,4],discuss:4,vcs_integr:2,"__version__":[0,1,3,4],somewher:1,name:[0,1,2,4],anyth:4,edit:0,separ:0,micro:4,mode:[2,4],each:[0,1,2,4],debug:3,backtrac:3,mean:3,bump:3,replac:[0,1,3],hard:2,idea:4,"static":4,our:3,happen:[1,4],"_get_nick":3,special:4,out:[1,2,3,4],variabl:[3,4],network:3,"3rd":1,publish:1,verbatim:4,nest:3,common:3,incorrectli:3,insid:[1,4],differ:[2,4],standard:4,standalon:4,base:[1,3,4],releas:[0,1,2,3,4],org:1,bleed:[1,3],care:1,versiontools_plugin:2,wai:[3,4],could:3,omit:[0,3],keep:[0,1,3],thing:[1,4],place:0,outsid:3,retain:[3,4],nicknam:[3,4],bzrlib:4,first:4,oper:3,major:4,suffix:[1,3,4],directli:[3,4],number:[1,2,3,4],natti:3,hook:4,instruct:[0,1,3],construct:[3,4],tox:3,silent:4,script:4,associ:3,system:[1,2,4],messag:3,mercuri:[1,2,3,4],monkei:4,deploy:3,"final":[0,1,3,4],prettier:3,option:[0,3],inspect:4,especi:4,format_vers:[0,3,4],tool:[0,1,4],copi:[0,1,4],setuptool:[2,3,4],specifi:[3,4],"short":[1,2,3,4],consult:3,than:[0,3,4],keyword:[0,4],provid:[2,4],remov:[3,4],tree:[0,1,3,4],charact:4,project:[0,1,2,3,4],str:4,bootstrap:3,"_find_source_tre":3,ani:[0,2,3,4],"_get_exception_messag":3,packag:[0,1,2,3,4],have:[0,1,2,3,4],tabl:[1,3,4],need:[0,1,2,3,4],incompat:3,"__new__":4,equival:4,note:[1,4],also:[1,3],exampl:[1,4],take:4,which:[1,3,4],singl:[1,4],simplifi:4,snaphot:1,revno:[1,4],distribut:[0,3,4],though:1,object:[0,1,3,4],most:[0,3],beta:[0,1,3,4],alpha:[0,1,3,4],"class":[1,2,4],appear:3,don:[0,1,3,4],bzr:[3,4],unexplain:3,doe:[3,4],declar:[0,1,4],left:[1,4],came:4,changeset:[1,4],show:[1,3,4],"__str__":[1,3,4],syntax:3,entry_point:2,pkg:4,hack:1,versiontool:[0,1,2,3,4],chicken:3,find:4,current:[1,2,3,4],onli:[2,3,4],explicitli:[1,4],locat:[3,4],pretti:4,configur:3,activ:[1,2,4],should:[0,4],local:3,count:3,pypa:4,get_vers:4,variou:4,get:[0,1,3,4],express:3,pypi:[2,4],repo:4,obviou:[3,4],cannot:[3,4],requir:[1,3,4],rtfd:1,patch:[0,1,4],integr:[0,1,2,3,4],contain:[0,4],where:[1,4],set:[0,1,2,4],from_tupl:4,displai:3,see:[1,2,3,4],respons:3,"3c5":3,"3c1":[1,4],awar:2,correctli:[0,3],databas:2,someth:[0,4],bzrintegr:[2,3,4],figur:3,"import":[0,2,3,4],approach:4,across:3,attribut:[3,4],inabl:4,setup_requir:[1,3,4],comp:3,extens:4,advertis:4,come:3,addit:[2,3,4],both:4,plugin:[1,3,4],branch_nick:[3,4],equal:0,hgintegr:[2,4],instanc:[1,4],logic:[1,4],improv:[3,4],com:4,comment:3,simpli:4,technic:4,can:[0,1,2,3,4],instanti:4,colon:[0,4],batteri:[1,2],guid:3,duplic:1,been:3,compon:[1,3,4],much:3,interpret:4,interest:[1,4],basic:3,valueerror:4,quickli:[1,3],field:3,search:1,argument:4,understand:1,those:[0,1,4],git_support:[1,2,4],look:[0,1,2,4],isstr:3,distributionmetadata:4,properti:[3,4],harder:3,histor:4,trick:0,defin:4,"while":0,unifi:3,smart:[3,4],abov:0,error:3,exist:4,codespeak:3,exot:4,advantag:4,"__import__":3,them:2,pip:[0,1,3,4],lightweight:3,"return":[1,4],revis:[1,2,3,4],setuptools_hook:[1,3,4],"__init__":[0,4],develop:[0,1,2,3],demostr:3,dev54:[1,4],perform:3,parti:[1,3],make:[0,2,3,4],same:4,handl:[1,3,4],split:4,document:[1,3],complet:4,http:[1,3,4],version_info:4,interrog:4,rais:4,user:0,extern:4,robust:3,distutil:4,typic:4,pull:1,entri:[2,4],thu:4,pep8:3,without:4,command:[0,4],thi:[0,1,2,3,4],everyth:3,usual:4,load:4,identifi:[0,1,3,4],"763fbe3":[1,4],just:[0,1,3,4],less:4,when:[1,3,4],obtain:[3,4],devrevno:3,human:[1,4],world:4,speed:3,previous:3,previosuli:3,easi:0,hint:4,point:[2,3,4],except:[3,4],littl:4,identif:3,add:[2,3,4],els:[1,4],match:0,real:4,branch:[1,2,3,4],format:[0,1,3,4],piec:1,five:4,redesign:4,from_tuple_and_hint:[3,4],python3:4,python2:3,like:[0,1,4],specif:1,arbitrari:4,manual:4,integ:[3,4],manifest:[0,1],from_source_tre:4,benefit:[0,1,3],either:4,install_requir:1,page:1,old:[3,4],some:4,sure:[0,2],"export":4,proper:[0,3],successfulli:4,librari:[2,4],render:4,avoid:3,normal:4,definit:1,subclass:4,foo:[2,3],refer:[1,2,3,4],"3b1":[1,4],run:[0,4],"3b5":3,importerror:3,imaginari:2,bdist:0,usag:[0,1,3],broken:4,step:0,repositori:[3,4],bazaar:[1,2,4],plug:[2,3],sub:1,about:[1,3],pep:[1,3,4],actual:4,constraint:[3,4],your_packag:0,constructor:4,commit:[1,2,3,4],produc:[1,3],foointegr:2,own:3,automat:4,ensur:0,your:[0,1,2,3,4],git:[1,2,3,4],suffici:4,support:[0,1,2,3,4],"long":3,custom:[1,2],avail:[1,3],get_exception_messag:3,compliant:[1,4],trigger:[2,4],interfac:4,includ:[0,1,2],biggest:4,"function":[3,4],properli:1,reorgan:3,form:2,tupl:[0,1,3,4],bundl:[1,2,3,4],leidel:3,keyerror:3,link:2,might:[1,4],renam:3,line:[0,1,3],"true":3,bug:3,info:4,concaten:[1,4],made:4,attr:4,possibl:[1,3,4],"default":[3,4],wish:4,rc1:3,directori:[3,4],below:[2,3],limit:4,problem:3,similar:4,featur:[1,4],creat:[0,1,3,4],"int":4,certain:[1,4],dure:3,versiontoolsenchanceddistributionmetadata:4,implement:[1,2,4],file:[0,1,3,4],pkg_express:4,ship:[0,4],source_tre:4,check:[1,2],incorrect:4,extract:2,tip:[1,4],detail:[2,3,4],hpk:3,nick:3,other:[0,4],lookup:4,futur:4,rememb:[2,4],test:3,you:[0,1,2,3,4],nice:[1,2],legitim:3,versiontools_support:[0,1,4],symbol:3,hg_support:[1,2,4],formatt:[1,4],intent:3,debian:3,stai:4,from_express:[3,4],longer:3,commit_id_abbrev:4,descript:2,time:[0,1,3,4],backward:[3,4]},objtypes:{"0":"py:module","1":"py:attribute","2":"py:method","3":"py:function","4":"py:classmethod","5":"py:staticmethod","6":"py:class"},titles:["Usage instructions","Version Tools Documentation","Integration with version control","Release history","Code reference"],objnames:{"0":["py","module","Python module"],"1":["py","attribute","Python attribute"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","classmethod","Python class method"],"5":["py","staticmethod","Python static method"],"6":["py","class","Python class"]},filenames:["usage","index","vcs-integration","changes","reference"]})PKi=#DTh.h.$versiontools-latest/py-modindex.html Python Module Index — Version Tools 1.9.1 documentation
Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#D;mF)F)versiontools-latest/search.html Search — Version Tools 1.9.1 documentation

Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#D|Øversiontools-latest/.buildinfo# Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. config: 1dc697715a60707bfdfa14d8d4caa402 tags: fbb0d17656682115ca4d033fb2f83ba1 PKi=#DPRC"versiontools-latest/reference.html Code reference — Version Tools 1.9.1 documentation

Code reference

versiontools

Define single and useful __version__ of a project.

class versiontools.Version

Smart version class.

Version class is a tuple of five elements and has the same logical components as sys.version_info.

In addition to the tuple elements there is a special vcs attribute that has all of the data exported by the version control system.

static __new__(major, minor, micro=0, releaselevel='final', serial=0)

Construct a new version tuple.

There is some extra logic when initializing tuple elements. All variables except for releaselevel are silently converted to integers That is:

>>> Version("1.2.3.dev".split("."))
(1, 2, 3, "dev", 0)
Parameters:
  • major (int or str) – Major version number
  • minor (int or str) – Minor version number
  • micro (int or str) – Micro version number, defaults to 0.
  • releaselevel (str) –

    Release level name.

    There is a constraint on allowed values of releaselevel. Only the following values are permitted:

    • ‘dev’
    • ‘alpha’
    • ‘beta’
    • ‘candidate’
    • ‘final’
  • serial – Serial number, usually zero, only used for alpha, beta and candidate versions where it must be greater than zero.
Raises ValueError:
 

If releaselevel is incorrect, a version component is negative or serial is 0 and releaselevel is alpha, beta or candidate.

major

Major version number

minor

Minor version number

micro

Micro version number

releaselevel

Release level string

serial

Serial number

classmethod from_tuple(version_tuple)

Create version from 5-element tuple

Note

This method is identical to the constructor, just spelled in a way that is more obvious to use.

New in version 1.1.

classmethod from_tuple_and_hint(version_tuple, hint)

Create version from a 5-element tuple and VCS location hint.

Similar to from_tuple() but uses the hint object to locate the source tree if needed. A good candidate for hint object is the module that contains the version_tuple. In general anything that works with inspect.getsourcefile() is good.

New in version 1.4.

classmethod from_expression(pkg_expression)

Create a version from a python module name.

The argument must describe a module to import. The module must declare a variable that holds the actual version. The version cannot be a plain string and instead must be a tuple of five elements as described by the Version class.

The variable that holds the version should be called __version__. If it is called something else the actual name has to be specified explicitly in pkg_expression by appending a colon (:) and the name of the variable (for example package:version).

New in version 1.9.

vcs

Return VCS integration object, if any.

Accessing this attribute for the first time will query VCS lookup (may be slower, will trigger imports of various VCS plugins).

The returned object, if not None, should have at least the revno property. For details see your particular version control integration plugin.

Note

This attribute is not an element of the version tuple and thus does not break sorting.

New in version 1.0.4.

__str__()

Return a string representation of the version tuple.

The string is not a direct concatenation of all version components. Instead it’s a more natural ‘human friendly’ version where components with certain values are left out.

The following table shows how a version tuple gets converted to a version string.

__version__ Formatter version
(1, 2, 0, "final", 0) "1.2"
(1, 2, 3, "final", 0) "1.2.3"
(1, 3, 0, "alpha", 1) "1.3a1"
(1, 3, 0, "beta", 1) "1.3b1"
(1, 3, 0, "candidate", 1) "1.3c1"
(1, 3, 0, "dev", 0) "1.3.dev"

Now when release level is set to "dev" then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: "1.3.dev54" which indicates that the tree was at revision 54 at that time.

The following table describes what gets appended by each version control system.

VCS Formatted version suffix
Bazaar Revision number (revno), e.g. 54
Git Short commit ID of the current branch e.g. "763fbe3"
Mercurial Tip revision number, e.g. 54
versiontools.format_version(version, hint=None)

Pretty formatting for 5-element version tuple.

Instead of using Version class directly you may want to use this simplified interface where you simply interpret an arbitrary five-element version tuple as a version to get the pretty and PEP 386-compliant version string.

Parameters:
  • version (A tuple with five elements, as the one provided to versiontools.Version.from_tuple(), or an existing instance of versiontools.Version.) – The version to format
  • hint (either None, or a module.) – The hint object, if provided, helps versiontools to locate the directory which might host the project’s source code. The idea is to pass module.__version__ as the first argument and module as the hint. This way we can lookup where module came from, and look for version control system data in that directory. Technically passing hint will make us call from_tuple_and_hint() instead of from_tuple().

New in version 1.1.

versiontools.setuptools_hooks

Plugins for setuptools that add versintools features.

Setuptools has a framework where external packages, such as versiontools, can hook into setup.py metadata and commands. We use this feature to intercept special values of the version keyword argument to setup(). This argument handled by the following method:

versiontools.setuptools_hooks.version(dist, attr, value)

Handle the version keyword to setuptools.setup()

Note

This function is normally called by setuptools, it is advertised in the entry points of versiontools as setuptools extension. There is no need to call in manually.

New in version 1.3.

versiontools.versiontools_support

A small standalone module that allows any package to use versiontools.

Typically you should copy this file verbatim into your source distribution.

Historically versiontools was depending on a exotic feature of setuptools to work. Setuptools has so-called setup-time dependencies, that is modules that need to be downloaded and imported/interrogated for setup.py to run successfully. Versiontools supports this by installing a handler for the ‘version’ keyword of the setup() function.

This approach was always a little annoying as this setuptools feature is rather odd and very few other packages made any use of it. In the future the standard tools for python packaging (especially in python3 world) this feature may be removed or have equivalent thus rendering versiontools completely broken.

Currently the biggest practical issue is the apparent inability to prevent setuptools from downloading packages designated as setup_requires. This is discussed in this pip issue: https://github.com/pypa/pip/issues/410

To counter this issue I’ve redesigned versiontools to be a little smarter. The old mode stays as-is for compatibility. The new mode works differently, without the need for using setup_requires in your setup() call. Instead it requires each package that uses versiontools to ship a verbatim copy of this module and to import it in their setup.py script. This module helps setuptools find package version in the standard PKG-INFO file that is created for all source distributions. Remember that you only need this mode when you don’t want to add a dependency on versiontools. This will still allow you to use versiontools (in a limited way) in your setup.py file.

Technically this module defines an improved version of one of distutils.dist.DistributionMetadata class and monkey-patches distutils to use it. To retain backward compatibility the new feature is only active when a special version string is passed to the setup() call.

class versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata(path=None)

A subclass of distutils.dist.DistributionMetadata that uses versiontools

Typically you would not instantiate this class directly. It is constructed by distutils.dist.Distribution.__init__() method. Since there is no other way to do it, this module monkey-patches distutils to override the original version of DistributionMetadata

get_version()

Get distribution version.

This method is enhanced compared to original distutils implementation. If the version string is set to a special value then instead of using the actual value the real version is obtained by querying versiontools.

If versiontools package is not installed then the version is obtained from the standard section of the PKG-INFO file. This file is automatically created by any source distribution. This method is less useful as it cannot take advantage of version control information that is automatically loaded by versiontools. It has the advantage of not requiring versiontools installation and that it does not depend on setup_requires feature of setuptools.

versiontools.bzr_support

Bazaar support for versiontools

Note

To work with Bazaar repositories you will need bzrlib. You can install it with pip or from the bzr package on Ubuntu.

Warning

On Windows the typical Bazaar installation bundles both the python interpreter and a host of libraries and those libraries are not accessible by the typically-installed python interpreter. If you wish to use Bazaar on windows we would recommend to install Bazaar directly from pypi.

class versiontools.bzr_support.BzrIntegration(branch)

Bazaar integration for versiontools

branch_nick

Nickname of the branch

New in version 1.0.4.

classmethod from_source_tree(source_tree)

Initialize BzrIntegration by pointing at the source tree. Any file or directory inside the source tree may be used.

revno

Revision number of the branch

versiontools.git_support

Git support for versiontools

Note

To work with Git repositories you will need GitPython. Version 0.1.6 is sufficient to run the code. You can install it with pip.

class versiontools.git_support.GitIntegration(repo)

Git integration for versiontools

branch_nick

Nickname of the branch

New in version 1.0.4.

commit_id

The full commit id

commit_id_abbrev

The abbreviated, 7 character commit id

classmethod from_source_tree(source_tree)

Initialize GitIntegration by pointing at the source tree. Any file or directory inside the source tree may be used.

revno

Same as commit_id_abbrev

versiontools.hg_support

Mercurial (Hg) support for versiontools.

Note

To work with Mercurial repositories you will need Mercurial. You can install it with pip or from the mercurial package on Ubuntu.

class versiontools.hg_support.HgIntegration(repo)

Hg integration for versiontools

branch_nick

Nickname of the branch

New in version 1.0.4.

classmethod from_source_tree(source_tree)

Initialize HgIntegration by pointing at the source tree. Any file or directory inside the source tree may be used.

revno

Revision number of the branch

Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#DEGG!versiontools-latest/genindex.html Index — Version Tools 1.9.1 documentation

Index

_ | B | C | F | G | H | M | P | R | S | V

_

__new__() (versiontools.Version static method)
__str__() (versiontools.Version method)

B

branch_nick (versiontools.bzr_support.BzrIntegration attribute)
(versiontools.git_support.GitIntegration attribute)
(versiontools.hg_support.HgIntegration attribute)
BzrIntegration (class in versiontools.bzr_support)

C

commit_id (versiontools.git_support.GitIntegration attribute)
commit_id_abbrev (versiontools.git_support.GitIntegration attribute)

F

format_version() (in module versiontools)
from_expression() (versiontools.Version class method)
from_source_tree() (versiontools.bzr_support.BzrIntegration class method)
(versiontools.git_support.GitIntegration class method)
(versiontools.hg_support.HgIntegration class method)
from_tuple() (versiontools.Version class method)
from_tuple_and_hint() (versiontools.Version class method)

G

get_version() (versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata method)
GitIntegration (class in versiontools.git_support)

H

HgIntegration (class in versiontools.hg_support)

M

major (versiontools.Version attribute)
micro (versiontools.Version attribute)
minor (versiontools.Version attribute)

P

Python Enhancement Proposals
PEP 386, [1], [2], [3]

R

releaselevel (versiontools.Version attribute)
revno (versiontools.bzr_support.BzrIntegration attribute)
(versiontools.git_support.GitIntegration attribute)
(versiontools.hg_support.HgIntegration attribute)

S

serial (versiontools.Version attribute)

V

vcs (versiontools.Version attribute)
Version (class in versiontools)
version() (in module versiontools.setuptools_hooks)
versiontools (module)
versiontools.bzr_support (module)
versiontools.git_support (module)
versiontools.hg_support (module)
versiontools.setuptools_hooks (module)
versiontools.versiontools_support (module)
VersiontoolsEnchancedDistributionMetadata (class in versiontools.versiontools_support)
Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#D-<<versiontools-latest/objects.inv# Sphinx inventory version 2 # Project: Version Tools # Version: 1.9 # The remainder of this file is compressed using zlib. xڽˎ0}ʳSPrnώ1h/|7Xتelj>W,;BlMClChزe|eٷU`痩n@׻-ɅxsJPBֲHj [.AU>r I9 /s_kuq6_f υje͓'4hrh :^z"@"ۚ7;A+螩 ˹"JԒ JszFL-$치0Az]jpCW1o$@yٛ_GdQ=rShL0h_ ř*H MžBwTywNU ۣo*ŠU&Qk==/23"C9Pzو/`hzqV?e'AY܋w=^;Q'PKi=#DN]N]versiontools-latest/index.html Version Tools Documentation — Version Tools 1.9.1 documentation

Version Tools Documentation

See also

To get started quickly see Usage instructions

See also

See what’s new in Version 1.9.1

Note

This document may be out of date, the bleeding edge version is always available at http://versiontools.rtfd.org/

Installation

This package is being actively maintained and published in the Python Package Index. You can install it if you have pip tool using just one line:

$ pip install versiontools

Features

  • A piece of code that allows you to keep a single version definition inside your package or module. No more hacks in setup.py, no more duplicates in setup.py and somewhere else. Just one version per package.
  • Version objects can produce nice version strings for released files that are compliant with PEP 386. Releases, alphas, betas, development snaphots. All of those get good version strings out of the box.
  • Version objects understand the VCS used by your project. Git, Mercurial and Bazaar are supported out of the box. Custom systems can be added by 3rd party plugins.
  • Version object that compares as a tuple of values and sorts properly.
  • Zero-dependency install! If all you care about is handling setup() to get nice tarball names then you don’t need to depend on versiontools (no setup_requires, no install_requires!). You will need to bundle a small support module though.

__version__ to string conversion

This is pulled from the documentation of the string method on the Version class. In general you don’t need to explicitly use that class to benefit from this system. To learn more check the Usage instructions section.

Version.__str__()

Return a string representation of the version tuple.

The string is not a direct concatenation of all version components. Instead it’s a more natural ‘human friendly’ version where components with certain values are left out.

The following table shows how a version tuple gets converted to a version string.

__version__ Formatter version
(1, 2, 0, "final", 0) "1.2"
(1, 2, 3, "final", 0) "1.2.3"
(1, 3, 0, "alpha", 1) "1.3a1"
(1, 3, 0, "beta", 1) "1.3b1"
(1, 3, 0, "candidate", 1) "1.3c1"
(1, 3, 0, "dev", 0) "1.3.dev"

Now when release level is set to "dev" then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: "1.3.dev54" which indicates that the tree was at revision 54 at that time.

The following table describes what gets appended by each version control system.

VCS Formatted version suffix
Bazaar Revision number (revno), e.g. 54
Git Short commit ID of the current branch e.g. "763fbe3"
Mercurial Tip revision number, e.g. 54

Note

This logic is implemented in versiontools.Version.__str__() and can be overridden by sub-classes. You can use project-specific logic if required. To do that replace __version__ with an instance of your sub-class.

Read the Docs v: latest
Versions
release-1.9.1
latest
1.10
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.
PKi=#D.!(!(0versiontools-latest/.doctrees/environment.pickle(csphinx.environment BuildEnvironment qoq}q(Udlfilesqcsphinx.util FilenameUniqDict q)qc__builtin__ set q]RqbUintersphinx_named_inventoryq }Uappq NU _warnfuncq NUtitlesq }q (Uusageqcdocutils.nodes title q)q}q(U rawsourceqUU attributesq}q(Udupnamesq]Uclassesq]Ubackrefsq]Uidsq]Unamesq]uUchildrenq]qcdocutils.nodes Text qXUsage instructionsqq}q(hXUsage instructionsq Uparentq!hubaUtagnameq"Utitleq#ubUindexq$h)q%}q&(hUh}q'(h]h]h]h]h]uh]q(hXVersion Tools Documentationq)q*}q+(hXVersion Tools Documentationq,h!h%ubah"h#ubUvcs-integrationq-h)q.}q/(hUh}q0(h]h]h]h]h]uh]q1hX Integration with version controlq2q3}q4(hX Integration with version controlq5h!h.ubah"h#ubUchangesq6h)q7}q8(hUh}q9(h]h]h]h]h]uh]q:hXRelease historyq;q<}q=(hXRelease historyq>h!h7ubah"h#ubU referenceq?h)q@}qA(hUh}qB(h]h]h]h]h]uh]qChXCode referenceqDqE}qF(hXCode referenceqGh!h@ubah"h#ubuU domaindataqH}qI(UstdqJ}qK(UversionqLKU anonlabelsqM}qN(Xcode_referenceqOh?Ucode-referenceqPUmodindexqQU py-modindexUX version_1_8qRh6U version-1-8qSX version_1_9qTh6U version-1-9qUX version_1_6qVh6U version-1-6qWX version_1_7qXh6U version-1-7qYX version_1_4qZh6U version-1-4q[X version_1_5q\h6U version-1-5q]X version_1_2q^h6U version-1-2q_X version_1_3q`h6U version-1-3qaX version_1_1qbh6U version-1-1qcXgitqdh?UgitqeX version_1_3_2qfh6U version-1-3-2qgX version_1_3_1qhh6U version-1-3-1qiX version_1_9_1qjh6U version-1-9-1qkXusageqlhUusageqmUgenindexqnhnUX version_1_0_4qoh6U version-1-0-4qpXhgqqh?UhgqrUsearchqsUsearchUX version_1_8_1qth6U version-1-8-1quXbzrqvh?UbzrqwX version_1_8_3qxh6U version-1-8-3qyX version_1_8_2qzh6U version-1-8-2q{uUlabelsq|}q}(hOh?hPXCode referencehQU py-modindexUcsphinx.locale _TranslationProxy q~csphinx.locale mygettext qU Module IndexqqhhqbhRh6hSX Version 1.8hTh6hUX Version 1.9hVh6hWX Version 1.6hXh6hYX Version 1.7hZh6h[X Version 1.4h\h6h]X Version 1.5h^h6h_X Version 1.2h`h6haX Version 1.3hbh6hcX Version 1.1hdh?heXversiontools.git_supporthfh6hgX Version 1.3.2hhh6hiX Version 1.3.1hjh6hkX Version 1.9.1hlhhmXUsage instructionshnhnUh~hUIndexqqhhqbhoh6hpX Version 1.0.4hqh?hrXversiontools.hg_supporthshsUh~hU Search Pageqqhhqbhth6huX Version 1.8.1hvh?hwXversiontools.bzr_supporthxh6hyX Version 1.8.3hzh6h{X Version 1.8.2uU progoptionsq}qUobjectsq}quUc}q(h}qhLKuUpyq}q(h}q(Xversiontools.Version.majorqh?X attributeqX3versiontools.bzr_support.BzrIntegration.branch_nickqh?X attributeqXWversiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata.get_versionqh?XmethodqX%versiontools.setuptools_hooks.versionqh?XfunctionqXversiontools.Version.vcsqh?X attributeqX8versiontools.bzr_support.BzrIntegration.from_source_treeqh?X classmethodqXversiontools.Version.microqh?X attributeqX+versiontools.hg_support.HgIntegration.revnoqh?X attributeqX-versiontools.bzr_support.BzrIntegration.revnoqh?X attributeqXversiontools.Version.__new__qh?X staticmethodqX1versiontools.hg_support.HgIntegration.branch_nickqh?X attributeqX!versiontools.Version.releaselevelqh?X attributeqXKversiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadataqh?XclassqX'versiontools.bzr_support.BzrIntegrationqh?XclassqX%versiontools.hg_support.HgIntegrationqh?XclassqX6versiontools.hg_support.HgIntegration.from_source_treeqh?X classmethodqX8versiontools.git_support.GitIntegration.commit_id_abbrevqh?X attributeqX versiontoolsqh?UmoduleqX8versiontools.git_support.GitIntegration.from_source_treeqh?X classmethodqXversiontools.Versionqh?XclassqXversiontools.Version.serialqh?X attributeqXversiontools.setuptools_hooksqh?hX-versiontools.git_support.GitIntegration.revnoqh?X attributeqXversiontools.format_versionqh?XfunctionqXversiontools.Version.from_tupleqh?X classmethodq†Xversiontools.Version.minorqh?X attributeqĆXversiontools.Version.__str__qh?XmethodqƆX1versiontools.git_support.GitIntegration.commit_idqh?X attributeqȆX(versiontools.Version.from_tuple_and_hintqh?X classmethodqʆX'versiontools.git_support.GitIntegrationqh?Xclassq̆Xversiontools.hg_supportqh?hX3versiontools.git_support.GitIntegration.branch_nickqh?X attributeqφXversiontools.bzr_supportqh?hXversiontools.git_supportqh?hX$versiontools.Version.from_expressionqh?X classmethodqӆX!versiontools.versiontools_supportqh?huUmodulesq}q(h(h?UUth(h?UUth(h?UUth(h?UUth(h?UUth(h?UUtuhLKuUjsq}q(h}qhLKuUrstq}q(h}qhLKuUcppq}q(h}qhLKuuU glob_toctreesqh]RqU reread_alwaysqh]RqU doctreedirqUN/var/build/user_builds/versiontools/checkouts/latest/doc/_build/html/.doctreesqUversioning_conditionqU citationsq}hLK)Utodo_all_todosq]Uintersphinx_inventoryq}q(X std:optionq}q(X-Eq(XPythonqX2.7qX5http://docs.python.org/using/cmdline.html#cmdoption-EX-tqX-Cq(hhX;http://docs.python.org/library/trace.html#cmdoption-trace-CX-tqX-Bq(hhX5http://docs.python.org/using/cmdline.html#cmdoption-BX-tqX-Oq(hhX5http://docs.python.org/using/cmdline.html#cmdoption-OX-tqX-Jq(hhX5http://docs.python.org/using/cmdline.html#cmdoption-JX-tqX-Uq(hhX5http://docs.python.org/using/cmdline.html#cmdoption-UX-tqX-Tq(hhX;http://docs.python.org/library/trace.html#cmdoption-trace-TX-tqX-Wq(hhX5http://docs.python.org/using/cmdline.html#cmdoption-WX-tqX-Vq(hhX5http://docs.python.org/using/cmdline.html#cmdoption-VX-trX-Qr(hhX5http://docs.python.org/using/cmdline.html#cmdoption-QX-trX-Sr(hhX5http://docs.python.org/using/cmdline.html#cmdoption-SX-trX-Rr(hhX5http://docs.python.org/using/cmdline.html#cmdoption-RX-trX-Xr(hhX5http://docs.python.org/using/cmdline.html#cmdoption-XX-trX-dr (hhX5http://docs.python.org/using/cmdline.html#cmdoption-dX-tr X-gr (hhX;http://docs.python.org/library/trace.html#cmdoption-trace-gX-tr X-fr (hhXAhttp://docs.python.org/library/unittest.html#cmdoption-unittest-fX-trX-cr(hhXAhttp://docs.python.org/library/unittest.html#cmdoption-unittest-cX-trX-br(hhXAhttp://docs.python.org/library/unittest.html#cmdoption-unittest-bX-trX-mr(hhX5http://docs.python.org/using/cmdline.html#cmdoption-mX-trX-lr(hhXEhttp://docs.python.org/library/compileall.html#cmdoption-compileall-lX-trX-nr(hhX=http://docs.python.org/library/timeit.html#cmdoption-timeit-nX-trX-ir(hhXEhttp://docs.python.org/library/compileall.html#cmdoption-compileall-iX-trX-hr(hhX=http://docs.python.org/library/timeit.html#cmdoption-timeit-hX-trX-ur(hhX5http://docs.python.org/using/cmdline.html#cmdoption-uX-trX-tr(hhXJhttp://docs.python.org/library/unittest.html#cmdoption-unittest-discover-tX-tr X-vr!(hhX=http://docs.python.org/library/timeit.html#cmdoption-timeit-vX-tr"X-qr#(hhXEhttp://docs.python.org/library/compileall.html#cmdoption-compileall-qX-tr$X-pr%(hhXJhttp://docs.python.org/library/unittest.html#cmdoption-unittest-discover-pX-tr&X-sr'(hhX;http://docs.python.org/library/trace.html#cmdoption-trace-sX-tr(X-rr)(hhX;http://docs.python.org/library/trace.html#cmdoption-trace-rX-tr*X-xr+(hhXEhttp://docs.python.org/library/compileall.html#cmdoption-compileall-xX-tr,X --versionr-(hhXBhttp://docs.python.org/library/trace.html#cmdoption-trace--versionX-tr.X --user-baser/(hhXBhttp://docs.python.org/library/site.html#cmdoption-site--user-baseX-tr0X-OOr1(hhX6http://docs.python.org/using/cmdline.html#cmdoption-OOX-tr2X --ignore-dirr3(hhXEhttp://docs.python.org/library/trace.html#cmdoption-trace--ignore-dirX-tr4X--ignore-moduler5(hhXHhttp://docs.python.org/library/trace.html#cmdoption-trace--ignore-moduleX-tr6X-3r7(hhX5http://docs.python.org/using/cmdline.html#cmdoption-3X-tr8X--helpr9(hhX9http://docs.python.org/using/cmdline.html#cmdoption--helpX-tr:X --user-siter;(hhXBhttp://docs.python.org/library/site.html#cmdoption-site--user-siteX-tr<uX c:functionr=}r>(XPyUnicode_AsUTF16Stringr?(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_AsUTF16StringX-tr@XPyList_GET_SIZErA(hhX6http://docs.python.org/c-api/list.html#PyList_GET_SIZEX-trBXPyDict_SetItemrC(hhX5http://docs.python.org/c-api/dict.html#PyDict_SetItemX-trDXPyComplex_CheckrE(hhX9http://docs.python.org/c-api/complex.html#PyComplex_CheckX-trFXPyRun_InteractiveLooprG(hhX@http://docs.python.org/c-api/veryhigh.html#PyRun_InteractiveLoopX-trHX PyDict_ItemsrI(hhX3http://docs.python.org/c-api/dict.html#PyDict_ItemsX-trJXPyModule_CheckrK(hhX7http://docs.python.org/c-api/module.html#PyModule_CheckX-trLXPyLong_AsUnsignedLongrM(hhX<http://docs.python.org/c-api/long.html#PyLong_AsUnsignedLongX-trNXPyUnicode_DecodeUTF8StatefulrO(hhXFhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF8StatefulX-trPXPySequence_Fast_GET_ITEMrQ(hhXChttp://docs.python.org/c-api/sequence.html#PySequence_Fast_GET_ITEMX-trRX PyLong_CheckrS(hhX3http://docs.python.org/c-api/long.html#PyLong_CheckX-trTXPyType_HasFeaturerU(hhX8http://docs.python.org/c-api/type.html#PyType_HasFeatureX-trVXPyDateTime_TIME_GET_HOURrW(hhXChttp://docs.python.org/c-api/datetime.html#PyDateTime_TIME_GET_HOURX-trXXPyEval_SetTracerY(hhX6http://docs.python.org/c-api/init.html#PyEval_SetTraceX-trZXPyFloat_ClearFreeListr[(hhX=http://docs.python.org/c-api/float.html#PyFloat_ClearFreeListX-tr\XPySlice_GetIndicesr](hhX:http://docs.python.org/c-api/slice.html#PySlice_GetIndicesX-tr^XPyTuple_GetItemr_(hhX7http://docs.python.org/c-api/tuple.html#PyTuple_GetItemX-tr`X PyGen_Checkra(hhX1http://docs.python.org/c-api/gen.html#PyGen_CheckX-trbXPy_FdIsInteractiverc(hhX8http://docs.python.org/c-api/sys.html#Py_FdIsInteractiveX-trdX PyUnicode_EncodeRawUnicodeEscapere(hhXJhttp://docs.python.org/c-api/unicode.html#PyUnicode_EncodeRawUnicodeEscapeX-trfX$PyErr_SetFromErrnoWithFilenameObjectrg(hhXQhttp://docs.python.org/c-api/exceptions.html#PyErr_SetFromErrnoWithFilenameObjectX-trhXPyErr_ExceptionMatchesri(hhXChttp://docs.python.org/c-api/exceptions.html#PyErr_ExceptionMatchesX-trjXPySys_ResetWarnOptionsrk(hhX<http://docs.python.org/c-api/sys.html#PySys_ResetWarnOptionsX-trlXPyDict_MergeFromSeq2rm(hhX;http://docs.python.org/c-api/dict.html#PyDict_MergeFromSeq2X-trnXPyMemoryView_FromBufferro(hhX@http://docs.python.org/c-api/buffer.html#PyMemoryView_FromBufferX-trpXPyUnicodeEncodeError_SetReasonrq(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_SetReasonX-trrXPyUnicode_AsCharmapStringrs(hhXChttp://docs.python.org/c-api/unicode.html#PyUnicode_AsCharmapStringX-trtXPyUnicode_AsUTF8Stringru(hhX@http://docs.python.org/c-api/unicode.html#PyUnicode_AsUTF8StringX-trvXPyRun_InteractiveLoopFlagsrw(hhXEhttp://docs.python.org/c-api/veryhigh.html#PyRun_InteractiveLoopFlagsX-trxX PyList_Newry(hhX1http://docs.python.org/c-api/list.html#PyList_NewX-trzXPyErr_Occurredr{(hhX;http://docs.python.org/c-api/exceptions.html#PyErr_OccurredX-tr|XPyRun_AnyFileExFlagsr}(hhX?http://docs.python.org/c-api/veryhigh.html#PyRun_AnyFileExFlagsX-tr~XPySys_WriteStderrr(hhX7http://docs.python.org/c-api/sys.html#PySys_WriteStderrX-trXPyUnicode_EncodeUTF7r(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeUTF7X-trXPyErr_CheckSignalsr(hhX?http://docs.python.org/c-api/exceptions.html#PyErr_CheckSignalsX-trXPyFile_DecUseCountr(hhX9http://docs.python.org/c-api/file.html#PyFile_DecUseCountX-trX PyNumber_Addr(hhX5http://docs.python.org/c-api/number.html#PyNumber_AddX-trX PyCode_Checkr(hhX3http://docs.python.org/c-api/code.html#PyCode_CheckX-trXPyUnicode_DecodeMBCSr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeMBCSX-trX PyDict_Updater(hhX4http://docs.python.org/c-api/dict.html#PyDict_UpdateX-trXPyList_CheckExactr(hhX8http://docs.python.org/c-api/list.html#PyList_CheckExactX-trX PyCell_Getr(hhX1http://docs.python.org/c-api/cell.html#PyCell_GetX-trXPyByteArray_Resizer(hhX>http://docs.python.org/c-api/bytearray.html#PyByteArray_ResizeX-trXPyErr_SetFromErrnoWithFilenamer(hhXKhttp://docs.python.org/c-api/exceptions.html#PyErr_SetFromErrnoWithFilenameX-trX PyOS_snprintfr(hhX:http://docs.python.org/c-api/conversion.html#PyOS_snprintfX-trXPyString_Formatr(hhX8http://docs.python.org/c-api/string.html#PyString_FormatX-trXPyUnicode_ClearFreeListr(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_ClearFreeListX-trXPyInstance_NewRawr(hhX9http://docs.python.org/c-api/class.html#PyInstance_NewRawX-trX PyErr_SetNoner(hhX:http://docs.python.org/c-api/exceptions.html#PyErr_SetNoneX-trXPy_Exitr(hhX-http://docs.python.org/c-api/sys.html#Py_ExitX-trXPyCodec_IncrementalEncoderr(hhXBhttp://docs.python.org/c-api/codec.html#PyCodec_IncrementalEncoderX-trXPySequence_DelItemr(hhX=http://docs.python.org/c-api/sequence.html#PySequence_DelItemX-trXPyCodec_Encoder(hhX6http://docs.python.org/c-api/codec.html#PyCodec_EncodeX-trX _Py_c_prodr(hhX4http://docs.python.org/c-api/complex.html#_Py_c_prodX-trXPyUnicode_FromObjectr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_FromObjectX-trXPyNumber_ToBaser(hhX8http://docs.python.org/c-api/number.html#PyNumber_ToBaseX-trXPyModule_AddIntMacror(hhX=http://docs.python.org/c-api/module.html#PyModule_AddIntMacroX-trXPyDateTime_FromDateAndTimer(hhXEhttp://docs.python.org/c-api/datetime.html#PyDateTime_FromDateAndTimeX-trXPyUnicode_Containsr(hhX<http://docs.python.org/c-api/unicode.html#PyUnicode_ContainsX-trXPyFile_SoftSpacer(hhX7http://docs.python.org/c-api/file.html#PyFile_SoftSpaceX-trXPyFloat_FromDoubler(hhX:http://docs.python.org/c-api/float.html#PyFloat_FromDoubleX-trXPyDict_DelItemr(hhX5http://docs.python.org/c-api/dict.html#PyDict_DelItemX-trXPyAnySet_Checkr(hhX4http://docs.python.org/c-api/set.html#PyAnySet_CheckX-trXPy_UNICODE_TOUPPERr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_TOUPPERX-trXPyUnicodeDecodeError_GetReasonr(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_GetReasonX-trX PyMethod_Newr(hhX5http://docs.python.org/c-api/method.html#PyMethod_NewX-trXPyCapsule_SetContextr(hhX>http://docs.python.org/c-api/capsule.html#PyCapsule_SetContextX-trX _Py_c_sumr(hhX3http://docs.python.org/c-api/complex.html#_Py_c_sumX-trXPyMapping_Itemsr(hhX9http://docs.python.org/c-api/mapping.html#PyMapping_ItemsX-trX _Py_c_negr(hhX3http://docs.python.org/c-api/complex.html#_Py_c_negX-trXPyUnicode_AsUnicodeEscapeStringr(hhXIhttp://docs.python.org/c-api/unicode.html#PyUnicode_AsUnicodeEscapeStringX-trXPyObject_NewVarr(hhX<http://docs.python.org/c-api/allocation.html#PyObject_NewVarX-trXPyUnicode_FromStringr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_FromStringX-trXPyOS_ascii_formatdr(hhX?http://docs.python.org/c-api/conversion.html#PyOS_ascii_formatdX-trXPyImport_GetMagicNumberr(hhX@http://docs.python.org/c-api/import.html#PyImport_GetMagicNumberX-trXPyNumber_InPlaceAddr(hhX<http://docs.python.org/c-api/number.html#PyNumber_InPlaceAddX-trXPyCodec_IncrementalDecoderr(hhXBhttp://docs.python.org/c-api/codec.html#PyCodec_IncrementalDecoderX-trXPyString_AS_STRINGr(hhX;http://docs.python.org/c-api/string.html#PyString_AS_STRINGX-trXPyRun_InteractiveOner(hhX?http://docs.python.org/c-api/veryhigh.html#PyRun_InteractiveOneX-trXPyCodec_RegisterErrorr(hhX=http://docs.python.org/c-api/codec.html#PyCodec_RegisterErrorX-trXPyMarshal_WriteLongToFiler(hhXChttp://docs.python.org/c-api/marshal.html#PyMarshal_WriteLongToFileX-trXPyFunction_Newr(hhX9http://docs.python.org/c-api/function.html#PyFunction_NewX-trXPyList_SET_ITEMr(hhX6http://docs.python.org/c-api/list.html#PyList_SET_ITEMX-trX PyMem_Resizer(hhX5http://docs.python.org/c-api/memory.html#PyMem_ResizeX-trXPyObject_RichCompareBoolr(hhXAhttp://docs.python.org/c-api/object.html#PyObject_RichCompareBoolX-trXPyDescr_NewMethodr(hhX>http://docs.python.org/c-api/descriptor.html#PyDescr_NewMethodX-trXPyUnicode_FromWideCharr(hhX@http://docs.python.org/c-api/unicode.html#PyUnicode_FromWideCharX-trXPyInterpreterState_Headr(hhX>http://docs.python.org/c-api/init.html#PyInterpreterState_HeadX-trXPyNumber_Negativer(hhX:http://docs.python.org/c-api/number.html#PyNumber_NegativeX-trXPyParser_SimpleParseFiler(hhXChttp://docs.python.org/c-api/veryhigh.html#PyParser_SimpleParseFileX-trXPyUnicodeEncodeError_GetReasonr(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_GetReasonX-trXPyNumber_Divider(hhX8http://docs.python.org/c-api/number.html#PyNumber_DivideX-trXPyFunction_GetDefaultsr(hhXAhttp://docs.python.org/c-api/function.html#PyFunction_GetDefaultsX-trXPyImport_Cleanupr(hhX9http://docs.python.org/c-api/import.html#PyImport_CleanupX-trXPyEval_GetFramer(hhX<http://docs.python.org/c-api/reflection.html#PyEval_GetFrameX-trXPyString_AsEncodedObjectr(hhXAhttp://docs.python.org/c-api/string.html#PyString_AsEncodedObjectX-trXPyInt_AsUnsignedLongLongMaskr(hhXBhttp://docs.python.org/c-api/int.html#PyInt_AsUnsignedLongLongMaskX-trX PyTuple_Newr(hhX3http://docs.python.org/c-api/tuple.html#PyTuple_NewX-trXPyInterpreterState_Nextr(hhX>http://docs.python.org/c-api/init.html#PyInterpreterState_NextX-trXPyGen_CheckExactr(hhX6http://docs.python.org/c-api/gen.html#PyGen_CheckExactX-trXPyUnicode_RichComparer(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_RichCompareX-trXPyObject_GC_NewVarr (hhX>http://docs.python.org/c-api/gcsupport.html#PyObject_GC_NewVarX-tr XPyBuffer_IsContiguousr (hhX>http://docs.python.org/c-api/buffer.html#PyBuffer_IsContiguousX-tr XPyCapsule_GetContextr (hhX>http://docs.python.org/c-api/capsule.html#PyCapsule_GetContextX-trXPyFunction_GetGlobalsr(hhX@http://docs.python.org/c-api/function.html#PyFunction_GetGlobalsX-trX PyIter_Checkr(hhX3http://docs.python.org/c-api/iter.html#PyIter_CheckX-trXPyFunction_SetClosurer(hhX@http://docs.python.org/c-api/function.html#PyFunction_SetClosureX-trXPyObject_IsTruer(hhX8http://docs.python.org/c-api/object.html#PyObject_IsTrueX-trXPyNumber_InPlaceSubtractr(hhXAhttp://docs.python.org/c-api/number.html#PyNumber_InPlaceSubtractX-trX PyObject_Dirr(hhX5http://docs.python.org/c-api/object.html#PyObject_DirX-trXPyUnicode_FromFormatr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_FromFormatX-trXPyObject_HasAttrr(hhX9http://docs.python.org/c-api/object.html#PyObject_HasAttrX-trXPy_NewInterpreterr(hhX8http://docs.python.org/c-api/init.html#Py_NewInterpreterX-tr XPySequence_SetItemr!(hhX=http://docs.python.org/c-api/sequence.html#PySequence_SetItemX-tr"XPyUnicodeEncodeError_Creater#(hhXHhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_CreateX-tr$XPySequence_Indexr%(hhX;http://docs.python.org/c-api/sequence.html#PySequence_IndexX-tr&XPyObject_GetItemr'(hhX9http://docs.python.org/c-api/object.html#PyObject_GetItemX-tr(XPyLong_AsVoidPtrr)(hhX7http://docs.python.org/c-api/long.html#PyLong_AsVoidPtrX-tr*XPyUnicode_GET_SIZEr+(hhX<http://docs.python.org/c-api/unicode.html#PyUnicode_GET_SIZEX-tr,XPyEval_GetFuncDescr-(hhX?http://docs.python.org/c-api/reflection.html#PyEval_GetFuncDescX-tr.X PyNumber_Andr/(hhX5http://docs.python.org/c-api/number.html#PyNumber_AndX-tr0X PyObject_Callr1(hhX6http://docs.python.org/c-api/object.html#PyObject_CallX-tr2XPyObject_GetIterr3(hhX9http://docs.python.org/c-api/object.html#PyObject_GetIterX-tr4XPyDateTime_DATE_GET_SECONDr5(hhXEhttp://docs.python.org/c-api/datetime.html#PyDateTime_DATE_GET_SECONDX-tr6XPyGILState_GetThisThreadStater7(hhXDhttp://docs.python.org/c-api/init.html#PyGILState_GetThisThreadStateX-tr8X PyNumber_Intr9(hhX5http://docs.python.org/c-api/number.html#PyNumber_IntX-tr:XPyEval_EvalCodeExr;(hhX<http://docs.python.org/c-api/veryhigh.html#PyEval_EvalCodeExX-tr<XPyObject_RichComparer=(hhX=http://docs.python.org/c-api/object.html#PyObject_RichCompareX-tr>XPyNumber_Divmodr?(hhX8http://docs.python.org/c-api/number.html#PyNumber_DivmodX-tr@XPyDict_GetItemrA(hhX5http://docs.python.org/c-api/dict.html#PyDict_GetItemX-trBXPyMemoryView_FromObjectrC(hhX@http://docs.python.org/c-api/buffer.html#PyMemoryView_FromObjectX-trDXPyMapping_GetItemStringrE(hhXAhttp://docs.python.org/c-api/mapping.html#PyMapping_GetItemStringX-trFXPyInterpreterState_ClearrG(hhX?http://docs.python.org/c-api/init.html#PyInterpreterState_ClearX-trHXPyUnicode_CheckExactrI(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_CheckExactX-trJXPyString_FromStringrK(hhX<http://docs.python.org/c-api/string.html#PyString_FromStringX-trLXPyUnicode_FromUnicoderM(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_FromUnicodeX-trNXPyUnicode_DecodeUTF32StatefulrO(hhXGhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF32StatefulX-trPXPyUnicode_CheckrQ(hhX9http://docs.python.org/c-api/unicode.html#PyUnicode_CheckX-trRXPyTime_FromTimerS(hhX:http://docs.python.org/c-api/datetime.html#PyTime_FromTimeX-trTX PyList_SortrU(hhX2http://docs.python.org/c-api/list.html#PyList_SortX-trVXPySequence_InPlaceConcatrW(hhXChttp://docs.python.org/c-api/sequence.html#PySequence_InPlaceConcatX-trXXPyDescr_NewGetSetrY(hhX>http://docs.python.org/c-api/descriptor.html#PyDescr_NewGetSetX-trZXPyArg_UnpackTupler[(hhX7http://docs.python.org/c-api/arg.html#PyArg_UnpackTupleX-tr\X PySet_Discardr](hhX3http://docs.python.org/c-api/set.html#PySet_DiscardX-tr^X!PyUnicodeTranslateError_GetObjectr_(hhXNhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_GetObjectX-tr`XPyTuple_SetItemra(hhX7http://docs.python.org/c-api/tuple.html#PyTuple_SetItemX-trbXPyLong_FromVoidPtrrc(hhX9http://docs.python.org/c-api/long.html#PyLong_FromVoidPtrX-trdXPyUnicode_Concatre(hhX:http://docs.python.org/c-api/unicode.html#PyUnicode_ConcatX-trfX PyClass_Checkrg(hhX5http://docs.python.org/c-api/class.html#PyClass_CheckX-trhXPyEval_SetProfileri(hhX8http://docs.python.org/c-api/init.html#PyEval_SetProfileX-trjXPyNumber_InPlaceRemainderrk(hhXBhttp://docs.python.org/c-api/number.html#PyNumber_InPlaceRemainderX-trlXPyNumber_Subtractrm(hhX:http://docs.python.org/c-api/number.html#PyNumber_SubtractX-trnX PyList_Sizero(hhX2http://docs.python.org/c-api/list.html#PyList_SizeX-trpXPyErr_WarnExplicitrq(hhX?http://docs.python.org/c-api/exceptions.html#PyErr_WarnExplicitX-trrXPyRun_InteractiveOneFlagsrs(hhXDhttp://docs.python.org/c-api/veryhigh.html#PyRun_InteractiveOneFlagsX-trtXPyLong_AsDoubleru(hhX6http://docs.python.org/c-api/long.html#PyLong_AsDoubleX-trvX_PyObject_GC_UNTRACKrw(hhX@http://docs.python.org/c-api/gcsupport.html#_PyObject_GC_UNTRACKX-trxX Py_XINCREFry(hhX8http://docs.python.org/c-api/refcounting.html#Py_XINCREFX-trzXPy_GetExecPrefixr{(hhX7http://docs.python.org/c-api/init.html#Py_GetExecPrefixX-tr|X PyType_Readyr}(hhX3http://docs.python.org/c-api/type.html#PyType_ReadyX-tr~XPySys_SetArgvExr(hhX6http://docs.python.org/c-api/init.html#PySys_SetArgvExX-trXPyUnicodeDecodeError_GetStartr(hhXJhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_GetStartX-trX _PyObject_Newr(hhX:http://docs.python.org/c-api/allocation.html#_PyObject_NewX-trXPyObject_Comparer(hhX9http://docs.python.org/c-api/object.html#PyObject_CompareX-trX PyIter_Nextr(hhX2http://docs.python.org/c-api/iter.html#PyIter_NextX-trXPyUnicode_AsMBCSStringr(hhX@http://docs.python.org/c-api/unicode.html#PyUnicode_AsMBCSStringX-trXPyEval_ThreadsInitializedr(hhX@http://docs.python.org/c-api/init.html#PyEval_ThreadsInitializedX-trXPyImport_GetModuleDictr(hhX?http://docs.python.org/c-api/import.html#PyImport_GetModuleDictX-trXPyLong_FromUnsignedLongr(hhX>http://docs.python.org/c-api/long.html#PyLong_FromUnsignedLongX-trXPyCodec_BackslashReplaceErrorsr(hhXFhttp://docs.python.org/c-api/codec.html#PyCodec_BackslashReplaceErrorsX-trXPyMethod_Classr(hhX7http://docs.python.org/c-api/method.html#PyMethod_ClassX-trXPyCodec_Encoderr(hhX7http://docs.python.org/c-api/codec.html#PyCodec_EncoderX-trXPyCapsule_GetPointerr(hhX>http://docs.python.org/c-api/capsule.html#PyCapsule_GetPointerX-trXPyTime_CheckExactr(hhX<http://docs.python.org/c-api/datetime.html#PyTime_CheckExactX-trXPySequence_Concatr(hhX<http://docs.python.org/c-api/sequence.html#PySequence_ConcatX-trXPyTuple_GetSlicer(hhX8http://docs.python.org/c-api/tuple.html#PyTuple_GetSliceX-trXPyNumber_AsSsize_tr(hhX;http://docs.python.org/c-api/number.html#PyNumber_AsSsize_tX-trXPyString_InternFromStringr(hhXBhttp://docs.python.org/c-api/string.html#PyString_InternFromStringX-trXPyCodec_XMLCharRefReplaceErrorsr(hhXGhttp://docs.python.org/c-api/codec.html#PyCodec_XMLCharRefReplaceErrorsX-trXPyUnicode_AsWideCharr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_AsWideCharX-trXPyFrozenSet_Checkr(hhX7http://docs.python.org/c-api/set.html#PyFrozenSet_CheckX-trXPyImport_ImportModuleNoBlockr(hhXEhttp://docs.python.org/c-api/import.html#PyImport_ImportModuleNoBlockX-trXPyTuple_CheckExactr(hhX:http://docs.python.org/c-api/tuple.html#PyTuple_CheckExactX-trXPy_UNICODE_TOLOWERr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_TOLOWERX-trXPyWeakref_Checkr(hhX9http://docs.python.org/c-api/weakref.html#PyWeakref_CheckX-trXPyDate_FromDater(hhX:http://docs.python.org/c-api/datetime.html#PyDate_FromDateX-trX PyDict_Newr(hhX1http://docs.python.org/c-api/dict.html#PyDict_NewX-trXPyObject_GetAttrr(hhX9http://docs.python.org/c-api/object.html#PyObject_GetAttrX-trXPyCodec_StreamReaderr(hhX<http://docs.python.org/c-api/codec.html#PyCodec_StreamReaderX-trXPyList_SetSlicer(hhX6http://docs.python.org/c-api/list.html#PyList_SetSliceX-trXPyObject_IsSubclassr(hhX<http://docs.python.org/c-api/object.html#PyObject_IsSubclassX-trXPy_UNICODE_ISNUMERICr(hhX>http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISNUMERICX-trXPyThreadState_Getr(hhX8http://docs.python.org/c-api/init.html#PyThreadState_GetX-trXPyUnicode_TranslateCharmapr(hhXDhttp://docs.python.org/c-api/unicode.html#PyUnicode_TranslateCharmapX-trXPyObject_CallFunctionObjArgsr(hhXEhttp://docs.python.org/c-api/object.html#PyObject_CallFunctionObjArgsX-trXPyImport_AddModuler(hhX;http://docs.python.org/c-api/import.html#PyImport_AddModuleX-trX PyFile_AsFiler(hhX4http://docs.python.org/c-api/file.html#PyFile_AsFileX-trXPyUnicodeEncodeError_GetObjectr(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_GetObjectX-trXPyCodec_StreamWriterr(hhX<http://docs.python.org/c-api/codec.html#PyCodec_StreamWriterX-trXPyCode_GetNumFreer(hhX8http://docs.python.org/c-api/code.html#PyCode_GetNumFreeX-trXPy_CompileStringFlagsr(hhX@http://docs.python.org/c-api/veryhigh.html#Py_CompileStringFlagsX-trXPyUnicode_EncodeMBCSr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeMBCSX-trXPyModule_AddStringConstantr(hhXChttp://docs.python.org/c-api/module.html#PyModule_AddStringConstantX-trXPyCObject_FromVoidPtrr(hhX?http://docs.python.org/c-api/cobject.html#PyCObject_FromVoidPtrX-trXPyString_FromFormatVr(hhX=http://docs.python.org/c-api/string.html#PyString_FromFormatVX-trX PyArg_Parser(hhX1http://docs.python.org/c-api/arg.html#PyArg_ParseX-trXPyObject_GC_Newr(hhX;http://docs.python.org/c-api/gcsupport.html#PyObject_GC_NewX-trXPy_IsInitializedr(hhX7http://docs.python.org/c-api/init.html#Py_IsInitializedX-trXPy_UNICODE_ISLINEBREAKr(hhX@http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISLINEBREAKX-trXPyWeakref_CheckRefr(hhX<http://docs.python.org/c-api/weakref.html#PyWeakref_CheckRefX-trXPyInterpreterState_ThreadHeadr(hhXDhttp://docs.python.org/c-api/init.html#PyInterpreterState_ThreadHeadX-trX PyCell_Newr(hhX1http://docs.python.org/c-api/cell.html#PyCell_NewX-trXPyDescr_NewWrapperr(hhX?http://docs.python.org/c-api/descriptor.html#PyDescr_NewWrapperX-trXPyCodec_LookupErrorr(hhX;http://docs.python.org/c-api/codec.html#PyCodec_LookupErrorX-trXPyCObject_SetVoidPtrr(hhX>http://docs.python.org/c-api/cobject.html#PyCObject_SetVoidPtrX-trX PyDate_Checkr(hhX7http://docs.python.org/c-api/datetime.html#PyDate_CheckX-trXPyImport_ImportModuleLevelr(hhXChttp://docs.python.org/c-api/import.html#PyImport_ImportModuleLevelX-trXPyString_FromStringAndSizer(hhXChttp://docs.python.org/c-api/string.html#PyString_FromStringAndSizeX-trXPyRun_SimpleFileExFlagsr(hhXBhttp://docs.python.org/c-api/veryhigh.html#PyRun_SimpleFileExFlagsX-trXPyFloat_FromStringr(hhX:http://docs.python.org/c-api/float.html#PyFloat_FromStringX-trXPyType_ClearCacher(hhX8http://docs.python.org/c-api/type.html#PyType_ClearCacheX-trXPyUnicode_Splitr(hhX9http://docs.python.org/c-api/unicode.html#PyUnicode_SplitX-trXPyCapsule_GetNamer(hhX;http://docs.python.org/c-api/capsule.html#PyCapsule_GetNameX-trXPyString_FromFormatr(hhX<http://docs.python.org/c-api/string.html#PyString_FromFormatX-trX PyInt_AsLongr(hhX2http://docs.python.org/c-api/int.html#PyInt_AsLongX-trXPyCodec_KnownEncodingr(hhX=http://docs.python.org/c-api/codec.html#PyCodec_KnownEncodingX-trXPyLong_FromUnicoder(hhX9http://docs.python.org/c-api/long.html#PyLong_FromUnicodeX-trXPy_UNICODE_TONUMERICr(hhX>http://docs.python.org/c-api/unicode.html#Py_UNICODE_TONUMERICX-trXPySequence_Repeatr(hhX<http://docs.python.org/c-api/sequence.html#PySequence_RepeatX-trXPyFrame_GetLineNumberr (hhXBhttp://docs.python.org/c-api/reflection.html#PyFrame_GetLineNumberX-tr X PyModule_Newr (hhX5http://docs.python.org/c-api/module.html#PyModule_NewX-tr XPyUnicode_DecodeUTF32r (hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF32X-trXPy_GetProgramFullPathr(hhX<http://docs.python.org/c-api/init.html#Py_GetProgramFullPathX-trXPyMarshal_WriteObjectToFiler(hhXEhttp://docs.python.org/c-api/marshal.html#PyMarshal_WriteObjectToFileX-trX PyUnicodeTranslateError_SetStartr(hhXMhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_SetStartX-trXPyByteArray_CheckExactr(hhXBhttp://docs.python.org/c-api/bytearray.html#PyByteArray_CheckExactX-trXPyUnicode_EncodeUnicodeEscaper(hhXGhttp://docs.python.org/c-api/unicode.html#PyUnicode_EncodeUnicodeEscapeX-trXPyImport_ReloadModuler(hhX>http://docs.python.org/c-api/import.html#PyImport_ReloadModuleX-trXPyFunction_GetCoder(hhX=http://docs.python.org/c-api/function.html#PyFunction_GetCodeX-trXPyString_ConcatAndDelr(hhX>http://docs.python.org/c-api/string.html#PyString_ConcatAndDelX-trX PyDict_Copyr(hhX2http://docs.python.org/c-api/dict.html#PyDict_CopyX-tr XPyDict_GetItemStringr!(hhX;http://docs.python.org/c-api/dict.html#PyDict_GetItemStringX-tr"XPyLong_FromLongr#(hhX6http://docs.python.org/c-api/long.html#PyLong_FromLongX-tr$XPyMethod_Functionr%(hhX:http://docs.python.org/c-api/method.html#PyMethod_FunctionX-tr&X PySlice_Checkr'(hhX5http://docs.python.org/c-api/slice.html#PySlice_CheckX-tr(X PyErr_Restorer)(hhX:http://docs.python.org/c-api/exceptions.html#PyErr_RestoreX-tr*XPyErr_SetExcFromWindowsErrr+(hhXGhttp://docs.python.org/c-api/exceptions.html#PyErr_SetExcFromWindowsErrX-tr,XPyUnicode_DecodeUTF7Statefulr-(hhXFhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF7StatefulX-tr.XPy_UNICODE_ISTITLEr/(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISTITLEX-tr0X PyGen_Newr1(hhX/http://docs.python.org/c-api/gen.html#PyGen_NewX-tr2X PyMem_Newr3(hhX2http://docs.python.org/c-api/memory.html#PyMem_NewX-tr4XPyUnicodeEncodeError_GetStartr5(hhXJhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_GetStartX-tr6XPyUnicode_Replacer7(hhX;http://docs.python.org/c-api/unicode.html#PyUnicode_ReplaceX-tr8XPyNumber_Floatr9(hhX7http://docs.python.org/c-api/number.html#PyNumber_FloatX-tr:XPyNumber_Invertr;(hhX8http://docs.python.org/c-api/number.html#PyNumber_InvertX-tr<XPy_UNICODE_TODECIMALr=(hhX>http://docs.python.org/c-api/unicode.html#Py_UNICODE_TODECIMALX-tr>XPyObject_GC_Delr?(hhX;http://docs.python.org/c-api/gcsupport.html#PyObject_GC_DelX-tr@XPySequence_GetItemrA(hhX=http://docs.python.org/c-api/sequence.html#PySequence_GetItemX-trBXPyImport_ImportModuleExrC(hhX@http://docs.python.org/c-api/import.html#PyImport_ImportModuleExX-trDX PyMem_DelrE(hhX2http://docs.python.org/c-api/memory.html#PyMem_DelX-trFXPyNumber_InPlaceMultiplyrG(hhXAhttp://docs.python.org/c-api/number.html#PyNumber_InPlaceMultiplyX-trHX PyNumber_XorrI(hhX5http://docs.python.org/c-api/number.html#PyNumber_XorX-trJXPyUnicodeTranslateError_GetEndrK(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_GetEndX-trLXPyList_ReverserM(hhX5http://docs.python.org/c-api/list.html#PyList_ReverseX-trNXPyUnicode_TranslaterO(hhX=http://docs.python.org/c-api/unicode.html#PyUnicode_TranslateX-trPXPyNumber_InPlaceTrueDividerQ(hhXChttp://docs.python.org/c-api/number.html#PyNumber_InPlaceTrueDivideX-trRXPyUnicodeEncodeError_SetStartrS(hhXJhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_SetStartX-trTXPyUnicode_GET_DATA_SIZErU(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_GET_DATA_SIZEX-trVXPyUnicode_EncodeCharmaprW(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_EncodeCharmapX-trXXPyEval_RestoreThreadrY(hhX;http://docs.python.org/c-api/init.html#PyEval_RestoreThreadX-trZXPyUnicode_DecodeUTF7r[(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF7X-tr\XPyInt_FromSsize_tr](hhX7http://docs.python.org/c-api/int.html#PyInt_FromSsize_tX-tr^XPyErr_BadArgumentr_(hhX>http://docs.python.org/c-api/exceptions.html#PyErr_BadArgumentX-tr`X PyRun_Filera(hhX5http://docs.python.org/c-api/veryhigh.html#PyRun_FileX-trbX&PyErr_SetExcFromWindowsErrWithFilenamerc(hhXShttp://docs.python.org/c-api/exceptions.html#PyErr_SetExcFromWindowsErrWithFilenameX-trdX PyDict_Keysre(hhX2http://docs.python.org/c-api/dict.html#PyDict_KeysX-trfXPy_Mainrg(hhX2http://docs.python.org/c-api/veryhigh.html#Py_MainX-trhXPyString_Concatri(hhX8http://docs.python.org/c-api/string.html#PyString_ConcatX-trjX PyDict_Valuesrk(hhX4http://docs.python.org/c-api/dict.html#PyDict_ValuesX-trlX PySet_Checkrm(hhX1http://docs.python.org/c-api/set.html#PySet_CheckX-trnX _Py_c_quotro(hhX4http://docs.python.org/c-api/complex.html#_Py_c_quotX-trpXPyObject_TypeCheckrq(hhX;http://docs.python.org/c-api/object.html#PyObject_TypeCheckX-trrX PySeqIter_Newrs(hhX8http://docs.python.org/c-api/iterator.html#PySeqIter_NewX-trtXPyBool_FromLongru(hhX6http://docs.python.org/c-api/bool.html#PyBool_FromLongX-trvXPyErr_SetInterruptrw(hhX?http://docs.python.org/c-api/exceptions.html#PyErr_SetInterruptX-trxXPyEval_GetFuncNamery(hhX?http://docs.python.org/c-api/reflection.html#PyEval_GetFuncNameX-trzXPyOS_ascii_atofr{(hhX<http://docs.python.org/c-api/conversion.html#PyOS_ascii_atofX-tr|X Py_GetPrefixr}(hhX3http://docs.python.org/c-api/init.html#Py_GetPrefixX-tr~XPyUnicodeTranslateError_SetEndr(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_SetEndX-trXPy_GetBuildInfor(hhX6http://docs.python.org/c-api/init.html#Py_GetBuildInfoX-trXPyDateTime_Checkr(hhX;http://docs.python.org/c-api/datetime.html#PyDateTime_CheckX-trXPyDict_Containsr(hhX6http://docs.python.org/c-api/dict.html#PyDict_ContainsX-trXPyByteArray_Sizer(hhX<http://docs.python.org/c-api/bytearray.html#PyByteArray_SizeX-trXPyComplex_AsCComplexr(hhX>http://docs.python.org/c-api/complex.html#PyComplex_AsCComplexX-trX PyTime_Checkr(hhX7http://docs.python.org/c-api/datetime.html#PyTime_CheckX-trXPyFrozenSet_Newr(hhX5http://docs.python.org/c-api/set.html#PyFrozenSet_NewX-trXPyMarshal_ReadLongFromFiler(hhXDhttp://docs.python.org/c-api/marshal.html#PyMarshal_ReadLongFromFileX-trXPyMethod_Checkr(hhX7http://docs.python.org/c-api/method.html#PyMethod_CheckX-trXPyObject_GC_Trackr(hhX=http://docs.python.org/c-api/gcsupport.html#PyObject_GC_TrackX-trX _PyObject_Delr(hhX:http://docs.python.org/c-api/allocation.html#_PyObject_DelX-trXPyEval_AcquireLockr(hhX9http://docs.python.org/c-api/init.html#PyEval_AcquireLockX-trX PySys_SetArgvr(hhX4http://docs.python.org/c-api/init.html#PySys_SetArgvX-trX PyCell_GETr(hhX1http://docs.python.org/c-api/cell.html#PyCell_GETX-trXPyTZInfo_Checkr(hhX9http://docs.python.org/c-api/datetime.html#PyTZInfo_CheckX-trX PySys_GetFiler(hhX3http://docs.python.org/c-api/sys.html#PySys_GetFileX-trXPyMarshal_ReadObjectFromStringr(hhXHhttp://docs.python.org/c-api/marshal.html#PyMarshal_ReadObjectFromStringX-trXPyNumber_CoerceExr(hhX:http://docs.python.org/c-api/number.html#PyNumber_CoerceExX-trXPyUnicode_Comparer(hhX;http://docs.python.org/c-api/unicode.html#PyUnicode_CompareX-trXPyCallable_Checkr(hhX9http://docs.python.org/c-api/object.html#PyCallable_CheckX-trX Py_GetVersionr(hhX4http://docs.python.org/c-api/init.html#Py_GetVersionX-trXPyClass_IsSubclassr(hhX:http://docs.python.org/c-api/class.html#PyClass_IsSubclassX-trXPyUnicode_EncodeUTF32r(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeUTF32X-trXPyObject_GetBufferr(hhX;http://docs.python.org/c-api/buffer.html#PyObject_GetBufferX-trXPyDateTime_GET_YEARr(hhX>http://docs.python.org/c-api/datetime.html#PyDateTime_GET_YEARX-trXPyList_GetItemr(hhX5http://docs.python.org/c-api/list.html#PyList_GetItemX-trXPyString_CheckExactr(hhX<http://docs.python.org/c-api/string.html#PyString_CheckExactX-trX PyObject_Sizer(hhX6http://docs.python.org/c-api/object.html#PyObject_SizeX-trXPySequence_Listr(hhX:http://docs.python.org/c-api/sequence.html#PySequence_ListX-trXPyObject_Printr(hhX7http://docs.python.org/c-api/object.html#PyObject_PrintX-trXPyCapsule_IsValidr(hhX;http://docs.python.org/c-api/capsule.html#PyCapsule_IsValidX-trXPy_SetPythonHomer(hhX7http://docs.python.org/c-api/init.html#Py_SetPythonHomeX-trXPyString_GET_SIZEr(hhX:http://docs.python.org/c-api/string.html#PyString_GET_SIZEX-trXPyRun_SimpleFileExr(hhX=http://docs.python.org/c-api/veryhigh.html#PyRun_SimpleFileExX-trXPyOS_CheckStackr(hhX5http://docs.python.org/c-api/sys.html#PyOS_CheckStackX-trXPyRun_AnyFileExr(hhX:http://docs.python.org/c-api/veryhigh.html#PyRun_AnyFileExX-trX Py_InitModuler(hhX:http://docs.python.org/c-api/allocation.html#Py_InitModuleX-trXPyEval_GetLocalsr(hhX=http://docs.python.org/c-api/reflection.html#PyEval_GetLocalsX-trXPyLong_AsLongLongAndOverflowr(hhXChttp://docs.python.org/c-api/long.html#PyLong_AsLongLongAndOverflowX-trXPyDict_SetItemStringr(hhX;http://docs.python.org/c-api/dict.html#PyDict_SetItemStringX-trXPyString_AsStringr(hhX:http://docs.python.org/c-api/string.html#PyString_AsStringX-trXPyBuffer_FromMemoryr(hhX<http://docs.python.org/c-api/buffer.html#PyBuffer_FromMemoryX-trXPyObject_CheckReadBufferr(hhXDhttp://docs.python.org/c-api/objbuffer.html#PyObject_CheckReadBufferX-trXPyTuple_GET_SIZEr(hhX8http://docs.python.org/c-api/tuple.html#PyTuple_GET_SIZEX-trX PyInt_GetMaxr(hhX2http://docs.python.org/c-api/int.html#PyInt_GetMaxX-trXPyType_GenericNewr(hhX8http://docs.python.org/c-api/type.html#PyType_GenericNewX-trXPyComplex_RealAsDoubler(hhX@http://docs.python.org/c-api/complex.html#PyComplex_RealAsDoubleX-trX PyInt_Checkr(hhX1http://docs.python.org/c-api/int.html#PyInt_CheckX-trXPyEval_GetGlobalsr(hhX>http://docs.python.org/c-api/reflection.html#PyEval_GetGlobalsX-trXPyCodec_ReplaceErrorsr(hhX=http://docs.python.org/c-api/codec.html#PyCodec_ReplaceErrorsX-trXPyInstance_Newr(hhX6http://docs.python.org/c-api/class.html#PyInstance_NewX-trXPyCObject_GetDescr(hhX;http://docs.python.org/c-api/cobject.html#PyCObject_GetDescX-trXPyLong_AsLongAndOverflowr(hhX?http://docs.python.org/c-api/long.html#PyLong_AsLongAndOverflowX-trXPy_UNICODE_ISALNUMr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISALNUMX-trX PyType_IS_GCr(hhX3http://docs.python.org/c-api/type.html#PyType_IS_GCX-trXPyThreadState_Deleter(hhX;http://docs.python.org/c-api/init.html#PyThreadState_DeleteX-trXPyWeakref_NewProxyr(hhX<http://docs.python.org/c-api/weakref.html#PyWeakref_NewProxyX-trXPyLong_FromStringr(hhX8http://docs.python.org/c-api/long.html#PyLong_FromStringX-trXPyMapping_Keysr(hhX8http://docs.python.org/c-api/mapping.html#PyMapping_KeysX-trXPySys_WriteStdoutr(hhX7http://docs.python.org/c-api/sys.html#PySys_WriteStdoutX-trX#PyErr_SetFromWindowsErrWithFilenamer(hhXPhttp://docs.python.org/c-api/exceptions.html#PyErr_SetFromWindowsErrWithFilenameX-trXPyMapping_HasKeyr(hhX:http://docs.python.org/c-api/mapping.html#PyMapping_HasKeyX-trXPy_InitializeExr(hhX6http://docs.python.org/c-api/init.html#Py_InitializeExX-trXPyBuffer_FillInfor(hhX:http://docs.python.org/c-api/buffer.html#PyBuffer_FillInfoX-trXPyParser_SimpleParseStringFlagsr(hhXJhttp://docs.python.org/c-api/veryhigh.html#PyParser_SimpleParseStringFlagsX-trX _Py_c_powr(hhX3http://docs.python.org/c-api/complex.html#_Py_c_powX-trXPy_CompileStringr(hhX;http://docs.python.org/c-api/veryhigh.html#Py_CompileStringX-trX Py_FindMethodr(hhX:http://docs.python.org/c-api/structures.html#Py_FindMethodX-trXPyUnicode_DecodeMBCSStatefulr (hhXFhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeMBCSStatefulX-tr XPyObject_SetAttrStringr (hhX?http://docs.python.org/c-api/object.html#PyObject_SetAttrStringX-tr XPyUnicodeDecodeError_GetObjectr (hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_GetObjectX-trXPyErr_NormalizeExceptionr(hhXEhttp://docs.python.org/c-api/exceptions.html#PyErr_NormalizeExceptionX-trXPyDateTime_CheckExactr(hhX@http://docs.python.org/c-api/datetime.html#PyDateTime_CheckExactX-trXPyUnicode_AsEncodedStringr(hhXChttp://docs.python.org/c-api/unicode.html#PyUnicode_AsEncodedStringX-trXPyFunction_SetDefaultsr(hhXAhttp://docs.python.org/c-api/function.html#PyFunction_SetDefaultsX-trXPyMethod_GET_SELFr(hhX:http://docs.python.org/c-api/method.html#PyMethod_GET_SELFX-trX PyNumber_Longr(hhX6http://docs.python.org/c-api/number.html#PyNumber_LongX-trXPyNumber_InPlaceXorr(hhX<http://docs.python.org/c-api/number.html#PyNumber_InPlaceXorX-trXPyErr_WriteUnraisabler(hhXBhttp://docs.python.org/c-api/exceptions.html#PyErr_WriteUnraisableX-trXPyFunction_GetModuler(hhX?http://docs.python.org/c-api/function.html#PyFunction_GetModuleX-tr XPyUnicode_Countr!(hhX9http://docs.python.org/c-api/unicode.html#PyUnicode_CountX-tr"XPyType_IsSubtyper#(hhX7http://docs.python.org/c-api/type.html#PyType_IsSubtypeX-tr$XPyCallIter_Newr%(hhX9http://docs.python.org/c-api/iterator.html#PyCallIter_NewX-tr&XPyComplex_CheckExactr'(hhX>http://docs.python.org/c-api/complex.html#PyComplex_CheckExactX-tr(XPy_LeaveRecursiveCallr)(hhXBhttp://docs.python.org/c-api/exceptions.html#Py_LeaveRecursiveCallX-tr*XPyErr_SetFromErrnor+(hhX?http://docs.python.org/c-api/exceptions.html#PyErr_SetFromErrnoX-tr,XPyArg_ParseTupleAndKeywordsr-(hhXAhttp://docs.python.org/c-api/arg.html#PyArg_ParseTupleAndKeywordsX-tr.X PyDict_Nextr/(hhX2http://docs.python.org/c-api/dict.html#PyDict_NextX-tr0XPyNumber_TrueDivider1(hhX<http://docs.python.org/c-api/number.html#PyNumber_TrueDivideX-tr2XPyCapsule_SetNamer3(hhX;http://docs.python.org/c-api/capsule.html#PyCapsule_SetNameX-tr4XPyLong_FromUnsignedLongLongr5(hhXBhttp://docs.python.org/c-api/long.html#PyLong_FromUnsignedLongLongX-tr6XPyArg_VaParseTupleAndKeywordsr7(hhXChttp://docs.python.org/c-api/arg.html#PyArg_VaParseTupleAndKeywordsX-tr8XPyCodec_Decoderr9(hhX7http://docs.python.org/c-api/codec.html#PyCodec_DecoderX-tr:X PyList_Insertr;(hhX4http://docs.python.org/c-api/list.html#PyList_InsertX-tr<X PySys_SetPathr=(hhX3http://docs.python.org/c-api/sys.html#PySys_SetPathX-tr>X PyUnicodeTranslateError_GetStartr?(hhXMhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_GetStartX-tr@XPySignal_SetWakeupFdrA(hhXAhttp://docs.python.org/c-api/exceptions.html#PySignal_SetWakeupFdX-trBXPyDateTime_DATE_GET_MINUTErC(hhXEhttp://docs.python.org/c-api/datetime.html#PyDateTime_DATE_GET_MINUTEX-trDXPyFile_WriteObjectrE(hhX9http://docs.python.org/c-api/file.html#PyFile_WriteObjectX-trFXPyErr_NewExceptionWithDocrG(hhXFhttp://docs.python.org/c-api/exceptions.html#PyErr_NewExceptionWithDocX-trHXPyRun_AnyFileFlagsrI(hhX=http://docs.python.org/c-api/veryhigh.html#PyRun_AnyFileFlagsX-trJXPyObject_SetAttrrK(hhX9http://docs.python.org/c-api/object.html#PyObject_SetAttrX-trLXPyCObject_FromVoidPtrAndDescrM(hhXFhttp://docs.python.org/c-api/cobject.html#PyCObject_FromVoidPtrAndDescX-trNXPyDateTime_GET_DAYrO(hhX=http://docs.python.org/c-api/datetime.html#PyDateTime_GET_DAYX-trPX_PyString_ResizerQ(hhX9http://docs.python.org/c-api/string.html#_PyString_ResizeX-trRXPyDateTime_DATE_GET_HOURrS(hhXChttp://docs.python.org/c-api/datetime.html#PyDateTime_DATE_GET_HOURX-trTXPyThreadState_NextrU(hhX9http://docs.python.org/c-api/init.html#PyThreadState_NextX-trVX_PyTuple_ResizerW(hhX7http://docs.python.org/c-api/tuple.html#_PyTuple_ResizeX-trXXPyEval_ReleaseThreadrY(hhX;http://docs.python.org/c-api/init.html#PyEval_ReleaseThreadX-trZXPyMarshal_ReadObjectFromFiler[(hhXFhttp://docs.python.org/c-api/marshal.html#PyMarshal_ReadObjectFromFileX-tr\XPyObject_CallMethodObjArgsr](hhXChttp://docs.python.org/c-api/object.html#PyObject_CallMethodObjArgsX-tr^XPyCodec_IgnoreErrorsr_(hhX<http://docs.python.org/c-api/codec.html#PyCodec_IgnoreErrorsX-tr`XPyArg_ParseTuplera(hhX6http://docs.python.org/c-api/arg.html#PyArg_ParseTupleX-trbXPyObject_IsInstancerc(hhX<http://docs.python.org/c-api/object.html#PyObject_IsInstanceX-trdXPyFloat_AS_DOUBLEre(hhX9http://docs.python.org/c-api/float.html#PyFloat_AS_DOUBLEX-trfXPyAnySet_CheckExactrg(hhX9http://docs.python.org/c-api/set.html#PyAnySet_CheckExactX-trhX PyList_Checkri(hhX3http://docs.python.org/c-api/list.html#PyList_CheckX-trjXPyObject_GenericSetAttrrk(hhX@http://docs.python.org/c-api/object.html#PyObject_GenericSetAttrX-trlXPyString_InternInPlacerm(hhX?http://docs.python.org/c-api/string.html#PyString_InternInPlaceX-trnXPyMapping_Lengthro(hhX:http://docs.python.org/c-api/mapping.html#PyMapping_LengthX-trpXPyWeakref_GET_OBJECTrq(hhX>http://docs.python.org/c-api/weakref.html#PyWeakref_GET_OBJECTX-trrXPySequence_Tuplers(hhX;http://docs.python.org/c-api/sequence.html#PySequence_TupleX-trtXPyRun_FileExFlagsru(hhX<http://docs.python.org/c-api/veryhigh.html#PyRun_FileExFlagsX-trvX Py_GetPathrw(hhX1http://docs.python.org/c-api/init.html#Py_GetPathX-trxXPyMethod_ClearFreeListry(hhX?http://docs.python.org/c-api/method.html#PyMethod_ClearFreeListX-trzX PySet_Sizer{(hhX0http://docs.python.org/c-api/set.html#PySet_SizeX-tr|XPyMarshal_ReadShortFromFiler}(hhXEhttp://docs.python.org/c-api/marshal.html#PyMarshal_ReadShortFromFileX-tr~XPyNumber_Indexr(hhX7http://docs.python.org/c-api/number.html#PyNumber_IndexX-trXPyMapping_HasKeyStringr(hhX@http://docs.python.org/c-api/mapping.html#PyMapping_HasKeyStringX-trXPyUnicode_Decoder(hhX:http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeX-trXPyUnicode_EncodeASCIIr(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeASCIIX-trXPyLong_AsSsize_tr(hhX7http://docs.python.org/c-api/long.html#PyLong_AsSsize_tX-trXPyBuffer_FromObjectr(hhX<http://docs.python.org/c-api/buffer.html#PyBuffer_FromObjectX-trXPyUnicode_AsLatin1Stringr(hhXBhttp://docs.python.org/c-api/unicode.html#PyUnicode_AsLatin1StringX-trX,PyErr_SetExcFromWindowsErrWithFilenameObjectr(hhXYhttp://docs.python.org/c-api/exceptions.html#PyErr_SetExcFromWindowsErrWithFilenameObjectX-trXPyMapping_Checkr(hhX9http://docs.python.org/c-api/mapping.html#PyMapping_CheckX-trX PyObject_Cmpr(hhX5http://docs.python.org/c-api/object.html#PyObject_CmpX-trX Py_AtExitr(hhX/http://docs.python.org/c-api/sys.html#Py_AtExitX-trX PyDict_Sizer(hhX2http://docs.python.org/c-api/dict.html#PyDict_SizeX-trXPyUnicode_AS_UNICODEr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_AS_UNICODEX-trXPyObject_CallFunctionr(hhX>http://docs.python.org/c-api/object.html#PyObject_CallFunctionX-trXPy_UNICODE_ISALPHAr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISALPHAX-trX PyList_Appendr(hhX4http://docs.python.org/c-api/list.html#PyList_AppendX-trX PySet_Addr(hhX/http://docs.python.org/c-api/set.html#PySet_AddX-trXPyRun_SimpleFiler(hhX;http://docs.python.org/c-api/veryhigh.html#PyRun_SimpleFileX-trXPyInstance_Checkr(hhX8http://docs.python.org/c-api/class.html#PyInstance_CheckX-trXPyNumber_Lshiftr(hhX8http://docs.python.org/c-api/number.html#PyNumber_LshiftX-trX PyObject_Newr(hhX9http://docs.python.org/c-api/allocation.html#PyObject_NewX-trX PyBuffer_Newr(hhX5http://docs.python.org/c-api/buffer.html#PyBuffer_NewX-trXPyType_CheckExactr(hhX8http://docs.python.org/c-api/type.html#PyType_CheckExactX-trXPyEval_InitThreadsr(hhX9http://docs.python.org/c-api/init.html#PyEval_InitThreadsX-trX_PyImport_FindExtensionr(hhX@http://docs.python.org/c-api/import.html#_PyImport_FindExtensionX-trX PyUnicodeEncodeError_GetEncodingr(hhXMhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_GetEncodingX-trXPy_AddPendingCallr(hhX8http://docs.python.org/c-api/init.html#Py_AddPendingCallX-trXPyWeakref_NewRefr(hhX:http://docs.python.org/c-api/weakref.html#PyWeakref_NewRefX-trXPyImport_ExecCodeModuleExr(hhXBhttp://docs.python.org/c-api/import.html#PyImport_ExecCodeModuleExX-trXPyList_GET_ITEMr(hhX6http://docs.python.org/c-api/list.html#PyList_GET_ITEMX-trXPyGILState_Releaser(hhX9http://docs.python.org/c-api/init.html#PyGILState_ReleaseX-trX PyObject_Reprr(hhX6http://docs.python.org/c-api/object.html#PyObject_ReprX-trXPyErr_SetObjectr(hhX<http://docs.python.org/c-api/exceptions.html#PyErr_SetObjectX-trXPyUnicode_EncodeUTF8r(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeUTF8X-trXPyComplex_ImagAsDoubler(hhX@http://docs.python.org/c-api/complex.html#PyComplex_ImagAsDoubleX-trXPyByteArray_FromObjectr(hhXBhttp://docs.python.org/c-api/bytearray.html#PyByteArray_FromObjectX-trXPyErr_SetStringr(hhX<http://docs.python.org/c-api/exceptions.html#PyErr_SetStringX-trXPyMapping_DelItemStringr(hhXAhttp://docs.python.org/c-api/mapping.html#PyMapping_DelItemStringX-trXPyEval_EvalFrameExr(hhX=http://docs.python.org/c-api/veryhigh.html#PyEval_EvalFrameExX-trXPyUnicode_DecodeCharmapr(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeCharmapX-trX _Py_c_diffr(hhX4http://docs.python.org/c-api/complex.html#_Py_c_diffX-trX PyOS_strnicmpr(hhX:http://docs.python.org/c-api/conversion.html#PyOS_strnicmpX-trXPyLong_AsLongLongr(hhX8http://docs.python.org/c-api/long.html#PyLong_AsLongLongX-trXPyRun_SimpleStringr(hhX=http://docs.python.org/c-api/veryhigh.html#PyRun_SimpleStringX-trXPyThreadState_SetAsyncExcr(hhX@http://docs.python.org/c-api/init.html#PyThreadState_SetAsyncExcX-trXPyUnicode_GetSizer(hhX;http://docs.python.org/c-api/unicode.html#PyUnicode_GetSizeX-trXPyParser_SimpleParseFileFlagsr(hhXHhttp://docs.python.org/c-api/veryhigh.html#PyParser_SimpleParseFileFlagsX-trXPyFloat_CheckExactr(hhX:http://docs.python.org/c-api/float.html#PyFloat_CheckExactX-trXPyRun_SimpleStringFlagsr(hhXBhttp://docs.python.org/c-api/veryhigh.html#PyRun_SimpleStringFlagsX-trXPyUnicode_DecodeLatin1r(hhX@http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeLatin1X-trXPyUnicodeDecodeError_SetEndr(hhXHhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_SetEndX-trXPyCodec_StrictErrorsr(hhX<http://docs.python.org/c-api/codec.html#PyCodec_StrictErrorsX-trXPyInterpreterState_Deleter(hhX@http://docs.python.org/c-api/init.html#PyInterpreterState_DeleteX-trXPySeqIter_Checkr(hhX:http://docs.python.org/c-api/iterator.html#PySeqIter_CheckX-trXPyFloat_GetMaxr(hhX6http://docs.python.org/c-api/float.html#PyFloat_GetMaxX-trXPyModule_AddObjectr(hhX;http://docs.python.org/c-api/module.html#PyModule_AddObjectX-trXPyUnicode_Splitlinesr(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_SplitlinesX-trX PyMethod_Selfr(hhX6http://docs.python.org/c-api/method.html#PyMethod_SelfX-trX PyMem_Reallocr(hhX6http://docs.python.org/c-api/memory.html#PyMem_ReallocX-trXPySequence_Checkr(hhX;http://docs.python.org/c-api/sequence.html#PySequence_CheckX-trXPyObject_InitVarr(hhX=http://docs.python.org/c-api/allocation.html#PyObject_InitVarX-trXPyUnicode_FromStringAndSizer(hhXEhttp://docs.python.org/c-api/unicode.html#PyUnicode_FromStringAndSizeX-trX PyObject_Initr(hhX:http://docs.python.org/c-api/allocation.html#PyObject_InitX-trX PyDict_Merger(hhX3http://docs.python.org/c-api/dict.html#PyDict_MergeX-trXPyUnicode_DecodeUTF16Statefulr(hhXGhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF16StatefulX-trXPyBuffer_SizeFromFormatr(hhX@http://docs.python.org/c-api/buffer.html#PyBuffer_SizeFromFormatX-trXPyUnicode_EncodeUTF16r(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeUTF16X-trXPySequence_Lengthr(hhX<http://docs.python.org/c-api/sequence.html#PySequence_LengthX-trXPyObject_SetItemr(hhX9http://docs.python.org/c-api/object.html#PyObject_SetItemX-trX PyFloat_Checkr (hhX5http://docs.python.org/c-api/float.html#PyFloat_CheckX-tr XPyString_AsStringAndSizer (hhXAhttp://docs.python.org/c-api/string.html#PyString_AsStringAndSizeX-tr XPyObject_HasAttrStringr (hhX?http://docs.python.org/c-api/object.html#PyObject_HasAttrStringX-trX PyType_Checkr(hhX3http://docs.python.org/c-api/type.html#PyType_CheckX-trX PyObject_Typer(hhX6http://docs.python.org/c-api/object.html#PyObject_TypeX-trXPySys_GetObjectr(hhX5http://docs.python.org/c-api/sys.html#PySys_GetObjectX-trXPyEval_GetBuiltinsr(hhX?http://docs.python.org/c-api/reflection.html#PyEval_GetBuiltinsX-trXPyInt_AsUnsignedLongMaskr(hhX>http://docs.python.org/c-api/int.html#PyInt_AsUnsignedLongMaskX-trXPy_UNICODE_TOTITLEr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_TOTITLEX-trXPyList_GetSlicer(hhX6http://docs.python.org/c-api/list.html#PyList_GetSliceX-trX PyErr_Clearr(hhX8http://docs.python.org/c-api/exceptions.html#PyErr_ClearX-trXPyFile_WriteStringr(hhX9http://docs.python.org/c-api/file.html#PyFile_WriteStringX-tr XPyMapping_Sizer!(hhX8http://docs.python.org/c-api/mapping.html#PyMapping_SizeX-tr"XPy_UNICODE_ISDECIMALr#(hhX>http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISDECIMALX-tr$XPyNumber_Absoluter%(hhX:http://docs.python.org/c-api/number.html#PyNumber_AbsoluteX-tr&XPyGILState_Ensurer'(hhX8http://docs.python.org/c-api/init.html#PyGILState_EnsureX-tr(XPyObject_AsFileDescriptorr)(hhXBhttp://docs.python.org/c-api/object.html#PyObject_AsFileDescriptorX-tr*XPyEval_AcquireThreadr+(hhX;http://docs.python.org/c-api/init.html#PyEval_AcquireThreadX-tr,XPyObject_CallObjectr-(hhX<http://docs.python.org/c-api/object.html#PyObject_CallObjectX-tr.XPySys_AddWarnOptionr/(hhX9http://docs.python.org/c-api/sys.html#PySys_AddWarnOptionX-tr0X)PyErr_SetFromWindowsErrWithFilenameObjectr1(hhXVhttp://docs.python.org/c-api/exceptions.html#PyErr_SetFromWindowsErrWithFilenameObjectX-tr2XPyThreadState_Newr3(hhX8http://docs.python.org/c-api/init.html#PyThreadState_NewX-tr4X PyObject_Strr5(hhX5http://docs.python.org/c-api/object.html#PyObject_StrX-tr6XPyRun_StringFlagsr7(hhX<http://docs.python.org/c-api/veryhigh.html#PyRun_StringFlagsX-tr8XPyDateTime_DATE_GET_MICROSECONDr9(hhXJhttp://docs.python.org/c-api/datetime.html#PyDateTime_DATE_GET_MICROSECONDX-tr:X PyCell_Checkr;(hhX3http://docs.python.org/c-api/cell.html#PyCell_CheckX-tr<XPyCObject_AsVoidPtrr=(hhX=http://docs.python.org/c-api/cobject.html#PyCObject_AsVoidPtrX-tr>XPyNumber_Rshiftr?(hhX8http://docs.python.org/c-api/number.html#PyNumber_RshiftX-tr@X PySet_ClearrA(hhX1http://docs.python.org/c-api/set.html#PySet_ClearX-trBXPyUnicode_DecodeUnicodeEscaperC(hhXGhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUnicodeEscapeX-trDX PyCode_NewrE(hhX1http://docs.python.org/c-api/code.html#PyCode_NewX-trFX PySet_PoprG(hhX/http://docs.python.org/c-api/set.html#PySet_PopX-trHX PyString_SizerI(hhX6http://docs.python.org/c-api/string.html#PyString_SizeX-trJXPyMemoryView_GetContiguousrK(hhXChttp://docs.python.org/c-api/buffer.html#PyMemoryView_GetContiguousX-trLXPyMarshal_WriteObjectToStringrM(hhXGhttp://docs.python.org/c-api/marshal.html#PyMarshal_WriteObjectToStringX-trNXPyImport_ExecCodeModulerO(hhX@http://docs.python.org/c-api/import.html#PyImport_ExecCodeModuleX-trPX PyDict_ClearrQ(hhX3http://docs.python.org/c-api/dict.html#PyDict_ClearX-trRXPyObject_AsReadBufferrS(hhXAhttp://docs.python.org/c-api/objbuffer.html#PyObject_AsReadBufferX-trTXPyNumber_PositiverU(hhX:http://docs.python.org/c-api/number.html#PyNumber_PositiveX-trVX PyMem_FreerW(hhX3http://docs.python.org/c-api/memory.html#PyMem_FreeX-trXXPyMethod_GET_CLASSrY(hhX;http://docs.python.org/c-api/method.html#PyMethod_GET_CLASSX-trZX!PyUnicodeTranslateError_GetReasonr[(hhXNhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_GetReasonX-tr\XPyDateTime_TIME_GET_MINUTEr](hhXEhttp://docs.python.org/c-api/datetime.html#PyDateTime_TIME_GET_MINUTEX-tr^XPyUnicode_FromFormatVr_(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_FromFormatVX-tr`XPyUnicodeDecodeError_SetStartra(hhXJhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_SetStartX-trbX_PyObject_GC_TRACKrc(hhX>http://docs.python.org/c-api/gcsupport.html#_PyObject_GC_TRACKX-trdXPyObject_AsCharBufferre(hhXAhttp://docs.python.org/c-api/objbuffer.html#PyObject_AsCharBufferX-trfXPyInt_FromSize_trg(hhX6http://docs.python.org/c-api/int.html#PyInt_FromSize_tX-trhX"PyUnicode_AsRawUnicodeEscapeStringri(hhXLhttp://docs.python.org/c-api/unicode.html#PyUnicode_AsRawUnicodeEscapeStringX-trjXPyDict_CheckExactrk(hhX8http://docs.python.org/c-api/dict.html#PyDict_CheckExactX-trlXPyLong_AsUnsignedLongLongrm(hhX@http://docs.python.org/c-api/long.html#PyLong_AsUnsignedLongLongX-trnXPyWeakref_GetObjectro(hhX=http://docs.python.org/c-api/weakref.html#PyWeakref_GetObjectX-trpXPy_InitModule4rq(hhX;http://docs.python.org/c-api/allocation.html#Py_InitModule4X-trrXPySequence_Fast_GET_SIZErs(hhXChttp://docs.python.org/c-api/sequence.html#PySequence_Fast_GET_SIZEX-trtXPy_InitModule3ru(hhX;http://docs.python.org/c-api/allocation.html#Py_InitModule3X-trvXPyString_Checkrw(hhX7http://docs.python.org/c-api/string.html#PyString_CheckX-trxXPyFile_IncUseCountry(hhX9http://docs.python.org/c-api/file.html#PyFile_IncUseCountX-trzXPyObject_DelAttrStringr{(hhX?http://docs.python.org/c-api/object.html#PyObject_DelAttrStringX-tr|X PyObject_Delr}(hhX9http://docs.python.org/c-api/allocation.html#PyObject_DelX-tr~XPySequence_Countr(hhX;http://docs.python.org/c-api/sequence.html#PySequence_CountX-trXPyDateTime_TIME_GET_MICROSECONDr(hhXJhttp://docs.python.org/c-api/datetime.html#PyDateTime_TIME_GET_MICROSECONDX-trX PyOS_stricmpr(hhX9http://docs.python.org/c-api/conversion.html#PyOS_stricmpX-trXPyObject_HashNotImplementedr(hhXDhttp://docs.python.org/c-api/object.html#PyObject_HashNotImplementedX-trXPyObject_CheckBufferr(hhX=http://docs.python.org/c-api/buffer.html#PyObject_CheckBufferX-trX_PyObject_NewVarr(hhX=http://docs.python.org/c-api/allocation.html#_PyObject_NewVarX-trXPy_GetCopyrightr(hhX6http://docs.python.org/c-api/init.html#Py_GetCopyrightX-trXPyFunction_Checkr(hhX;http://docs.python.org/c-api/function.html#PyFunction_CheckX-trXPyType_GenericAllocr(hhX:http://docs.python.org/c-api/type.html#PyType_GenericAllocX-trXPyFile_SetEncodingAndErrorsr(hhXBhttp://docs.python.org/c-api/file.html#PyFile_SetEncodingAndErrorsX-trXPyImport_ImportFrozenModuler(hhXDhttp://docs.python.org/c-api/import.html#PyImport_ImportFrozenModuleX-trXPyMapping_Valuesr(hhX:http://docs.python.org/c-api/mapping.html#PyMapping_ValuesX-trX PyErr_Formatr(hhX9http://docs.python.org/c-api/exceptions.html#PyErr_FormatX-trXPyRun_FileFlagsr(hhX:http://docs.python.org/c-api/veryhigh.html#PyRun_FileFlagsX-trX'PyParser_SimpleParseStringFlagsFilenamer(hhXRhttp://docs.python.org/c-api/veryhigh.html#PyParser_SimpleParseStringFlagsFilenameX-trXPyBuffer_FillContiguousStridesr(hhXGhttp://docs.python.org/c-api/buffer.html#PyBuffer_FillContiguousStridesX-trXPyOS_double_to_stringr(hhXBhttp://docs.python.org/c-api/conversion.html#PyOS_double_to_stringX-trX PyDelta_Checkr(hhX8http://docs.python.org/c-api/datetime.html#PyDelta_CheckX-trX PyTuple_Packr(hhX4http://docs.python.org/c-api/tuple.html#PyTuple_PackX-trXPyCodec_Decoder(hhX6http://docs.python.org/c-api/codec.html#PyCodec_DecodeX-trXPyByteArray_Checkr(hhX=http://docs.python.org/c-api/bytearray.html#PyByteArray_CheckX-trX Py_BuildValuer(hhX3http://docs.python.org/c-api/arg.html#Py_BuildValueX-trXPy_UNICODE_TODIGITr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_TODIGITX-trXPyTuple_SET_ITEMr(hhX8http://docs.python.org/c-api/tuple.html#PyTuple_SET_ITEMX-trXPy_EndInterpreterr(hhX8http://docs.python.org/c-api/init.html#Py_EndInterpreterX-trXPy_GetCompilerr(hhX5http://docs.python.org/c-api/init.html#Py_GetCompilerX-trXPyObject_DelItemr(hhX9http://docs.python.org/c-api/object.html#PyObject_DelItemX-trXPyInterpreterState_Newr(hhX=http://docs.python.org/c-api/init.html#PyInterpreterState_NewX-trXPyLong_AsUnsignedLongLongMaskr(hhXDhttp://docs.python.org/c-api/long.html#PyLong_AsUnsignedLongLongMaskX-trXPy_UNICODE_ISDIGITr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISDIGITX-trX_PyImport_Initr(hhX7http://docs.python.org/c-api/import.html#_PyImport_InitX-trXPyModule_AddStringMacror(hhX@http://docs.python.org/c-api/module.html#PyModule_AddStringMacroX-trXPy_UNICODE_ISUPPERr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISUPPERX-trXPyNumber_FloorDivider(hhX=http://docs.python.org/c-api/number.html#PyNumber_FloorDivideX-trXPyUnicode_Encoder(hhX:http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeX-trX Py_XDECREFr(hhX8http://docs.python.org/c-api/refcounting.html#Py_XDECREFX-trXPyTZInfo_CheckExactr(hhX>http://docs.python.org/c-api/datetime.html#PyTZInfo_CheckExactX-trXPyThreadState_Swapr(hhX9http://docs.python.org/c-api/init.html#PyThreadState_SwapX-trXPyNumber_InPlacePowerr(hhX>http://docs.python.org/c-api/number.html#PyNumber_InPlacePowerX-trXPyCObject_Checkr(hhX9http://docs.python.org/c-api/cobject.html#PyCObject_CheckX-trXPy_UNICODE_ISSPACEr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISSPACEX-trXPyErr_GivenExceptionMatchesr(hhXHhttp://docs.python.org/c-api/exceptions.html#PyErr_GivenExceptionMatchesX-trXPySequence_GetSlicer(hhX>http://docs.python.org/c-api/sequence.html#PySequence_GetSliceX-trXPy_GetProgramNamer(hhX8http://docs.python.org/c-api/init.html#Py_GetProgramNameX-trXPyInt_CheckExactr(hhX6http://docs.python.org/c-api/int.html#PyInt_CheckExactX-trXPyString_Decoder(hhX8http://docs.python.org/c-api/string.html#PyString_DecodeX-trXPyCapsule_SetDestructorr(hhXAhttp://docs.python.org/c-api/capsule.html#PyCapsule_SetDestructorX-trXPyCallIter_Checkr(hhX;http://docs.python.org/c-api/iterator.html#PyCallIter_CheckX-trXPyUnicode_AsUnicoder(hhX=http://docs.python.org/c-api/unicode.html#PyUnicode_AsUnicodeX-trXPyObject_GC_Resizer(hhX>http://docs.python.org/c-api/gcsupport.html#PyObject_GC_ResizeX-trXPyOS_string_to_doubler(hhXBhttp://docs.python.org/c-api/conversion.html#PyOS_string_to_doubleX-trXPyErr_BadInternalCallr(hhXBhttp://docs.python.org/c-api/exceptions.html#PyErr_BadInternalCallX-trXPyWeakref_CheckProxyr(hhX>http://docs.python.org/c-api/weakref.html#PyWeakref_CheckProxyX-trXPyDate_CheckExactr(hhX<http://docs.python.org/c-api/datetime.html#PyDate_CheckExactX-trXPyLong_FromSize_tr(hhX8http://docs.python.org/c-api/long.html#PyLong_FromSize_tX-trXPyNumber_InPlaceLshiftr(hhX?http://docs.python.org/c-api/number.html#PyNumber_InPlaceLshiftX-trXPySet_GET_SIZEr(hhX4http://docs.python.org/c-api/set.html#PySet_GET_SIZEX-trX Py_Finalizer(hhX2http://docs.python.org/c-api/init.html#Py_FinalizeX-trXPyObject_Unicoder(hhX9http://docs.python.org/c-api/object.html#PyObject_UnicodeX-trXPyImport_Importr(hhX8http://docs.python.org/c-api/import.html#PyImport_ImportX-trXPyFloat_GetInfor(hhX7http://docs.python.org/c-api/float.html#PyFloat_GetInfoX-trXPyNumber_InPlaceOrr(hhX;http://docs.python.org/c-api/number.html#PyNumber_InPlaceOrX-trXPySet_Containsr(hhX4http://docs.python.org/c-api/set.html#PySet_ContainsX-trXPyUnicode_FromEncodedObjectr(hhXEhttp://docs.python.org/c-api/unicode.html#PyUnicode_FromEncodedObjectX-trXPy_UNICODE_ISLOWERr(hhX<http://docs.python.org/c-api/unicode.html#Py_UNICODE_ISLOWERX-trXPySequence_DelSlicer(hhX>http://docs.python.org/c-api/sequence.html#PySequence_DelSliceX-trXPyFile_GetLiner(hhX5http://docs.python.org/c-api/file.html#PyFile_GetLineX-trXPyByteArray_FromStringAndSizer(hhXIhttp://docs.python.org/c-api/bytearray.html#PyByteArray_FromStringAndSizeX-trXPyCapsule_CheckExactr(hhX>http://docs.python.org/c-api/capsule.html#PyCapsule_CheckExactX-trXPyInt_FromStringr (hhX6http://docs.python.org/c-api/int.html#PyInt_FromStringX-tr XPyMethod_GET_FUNCTIONr (hhX>http://docs.python.org/c-api/method.html#PyMethod_GET_FUNCTIONX-tr XPyObject_Lengthr (hhX8http://docs.python.org/c-api/object.html#PyObject_LengthX-trXPySequence_SetSlicer(hhX>http://docs.python.org/c-api/sequence.html#PySequence_SetSliceX-trXPyImport_ImportModuler(hhX>http://docs.python.org/c-api/import.html#PyImport_ImportModuleX-trX PyNumber_Orr(hhX4http://docs.python.org/c-api/number.html#PyNumber_OrX-trX PyUnicodeDecodeError_GetEncodingr(hhXMhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_GetEncodingX-trXPyString_Encoder(hhX8http://docs.python.org/c-api/string.html#PyString_EncodeX-trXPyComplex_FromCComplexr(hhX@http://docs.python.org/c-api/complex.html#PyComplex_FromCComplexX-trXPyUnicodeEncodeError_SetEndr(hhXHhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_SetEndX-trXPyRun_SimpleFileFlagsr(hhX@http://docs.python.org/c-api/veryhigh.html#PyRun_SimpleFileFlagsX-trXPyEval_GetCallStatsr(hhX:http://docs.python.org/c-api/init.html#PyEval_GetCallStatsX-tr X PySlice_Newr!(hhX3http://docs.python.org/c-api/slice.html#PySlice_NewX-tr"X Py_FatalErrorr#(hhX3http://docs.python.org/c-api/sys.html#Py_FatalErrorX-tr$XPyUnicodeDecodeError_SetReasonr%(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_SetReasonX-tr&X PyFile_Namer'(hhX2http://docs.python.org/c-api/file.html#PyFile_NameX-tr(XPyOS_ascii_strtodr)(hhX>http://docs.python.org/c-api/conversion.html#PyOS_ascii_strtodX-tr*XPySequence_ITEMr+(hhX:http://docs.python.org/c-api/sequence.html#PySequence_ITEMX-tr,X PyErr_Printr-(hhX8http://docs.python.org/c-api/exceptions.html#PyErr_PrintX-tr.XPyUnicode_Joinr/(hhX8http://docs.python.org/c-api/unicode.html#PyUnicode_JoinX-tr0X PyErr_PrintExr1(hhX:http://docs.python.org/c-api/exceptions.html#PyErr_PrintExX-tr2XPyNumber_InPlaceAndr3(hhX<http://docs.python.org/c-api/number.html#PyNumber_InPlaceAndX-tr4X PyLong_AsLongr5(hhX4http://docs.python.org/c-api/long.html#PyLong_AsLongX-tr6XPyErr_SetFromWindowsErrr7(hhXDhttp://docs.python.org/c-api/exceptions.html#PyErr_SetFromWindowsErrX-tr8X PySet_Newr9(hhX/http://docs.python.org/c-api/set.html#PySet_NewX-tr:X_PyImport_Finir;(hhX7http://docs.python.org/c-api/import.html#_PyImport_FiniX-tr<XPyLong_AsUnsignedLongMaskr=(hhX@http://docs.python.org/c-api/long.html#PyLong_AsUnsignedLongMaskX-tr>XPyOS_vsnprintfr?(hhX;http://docs.python.org/c-api/conversion.html#PyOS_vsnprintfX-tr@X PyMarshal_ReadLastObjectFromFilerA(hhXJhttp://docs.python.org/c-api/marshal.html#PyMarshal_ReadLastObjectFromFileX-trBXPyDate_FromTimestamprC(hhX?http://docs.python.org/c-api/datetime.html#PyDate_FromTimestampX-trDXPyLong_FromSsize_trE(hhX9http://docs.python.org/c-api/long.html#PyLong_FromSsize_tX-trFXPyObject_GC_UnTrackrG(hhX?http://docs.python.org/c-api/gcsupport.html#PyObject_GC_UnTrackX-trHXPyInt_ClearFreeListrI(hhX9http://docs.python.org/c-api/int.html#PyInt_ClearFreeListX-trJX PyErr_FetchrK(hhX8http://docs.python.org/c-api/exceptions.html#PyErr_FetchX-trLXPyImport_AppendInittabrM(hhX?http://docs.python.org/c-api/import.html#PyImport_AppendInittabX-trNXPyErr_NoMemoryrO(hhX;http://docs.python.org/c-api/exceptions.html#PyErr_NoMemoryX-trPXPyCodec_RegisterrQ(hhX8http://docs.python.org/c-api/codec.html#PyCodec_RegisterX-trRXPyUnicode_FindrS(hhX8http://docs.python.org/c-api/unicode.html#PyUnicode_FindX-trTXPyBuffer_CheckrU(hhX7http://docs.python.org/c-api/buffer.html#PyBuffer_CheckX-trVXPyFile_CheckExactrW(hhX8http://docs.python.org/c-api/file.html#PyFile_CheckExactX-trXXPyMapping_DelItemrY(hhX;http://docs.python.org/c-api/mapping.html#PyMapping_DelItemX-trZXPySequence_Fastr[(hhX:http://docs.python.org/c-api/sequence.html#PySequence_FastX-tr\XPyEval_MergeCompilerFlagsr](hhXDhttp://docs.python.org/c-api/veryhigh.html#PyEval_MergeCompilerFlagsX-tr^XPyFloat_GetMinr_(hhX6http://docs.python.org/c-api/float.html#PyFloat_GetMinX-tr`XPyComplex_FromDoublesra(hhX?http://docs.python.org/c-api/complex.html#PyComplex_FromDoublesX-trbXPyEval_EvalFramerc(hhX;http://docs.python.org/c-api/veryhigh.html#PyEval_EvalFrameX-trdXPyErr_NewExceptionre(hhX?http://docs.python.org/c-api/exceptions.html#PyErr_NewExceptionX-trfXPyUnicode_AS_DATArg(hhX;http://docs.python.org/c-api/unicode.html#PyUnicode_AS_DATAX-trhXPyMapping_SetItemStringri(hhXAhttp://docs.python.org/c-api/mapping.html#PyMapping_SetItemStringX-trjXPyFloat_AsDoublerk(hhX8http://docs.python.org/c-api/float.html#PyFloat_AsDoubleX-trlXPyFrozenSet_CheckExactrm(hhX<http://docs.python.org/c-api/set.html#PyFrozenSet_CheckExactX-trnXPyNumber_Multiplyro(hhX:http://docs.python.org/c-api/number.html#PyNumber_MultiplyX-trpXPyUnicode_DecodeUTF16rq(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF16X-trrXPy_SetProgramNamers(hhX8http://docs.python.org/c-api/init.html#Py_SetProgramNameX-trtXPyObject_GenericGetAttrru(hhX@http://docs.python.org/c-api/object.html#PyObject_GenericGetAttrX-trvXPyEval_SaveThreadrw(hhX8http://docs.python.org/c-api/init.html#PyEval_SaveThreadX-trxXPyUnicode_Formatry(hhX:http://docs.python.org/c-api/unicode.html#PyUnicode_FormatX-trzXPyUnicodeEncodeError_GetEndr{(hhXHhttp://docs.python.org/c-api/exceptions.html#PyUnicodeEncodeError_GetEndX-tr|XPyByteArray_AS_STRINGr}(hhXAhttp://docs.python.org/c-api/bytearray.html#PyByteArray_AS_STRINGX-tr~XPyBuffer_FromReadWriteObjectr(hhXEhttp://docs.python.org/c-api/buffer.html#PyBuffer_FromReadWriteObjectX-trXPyModule_GetFilenamer(hhX=http://docs.python.org/c-api/module.html#PyModule_GetFilenameX-trXPyBuffer_FromReadWriteMemoryr(hhXEhttp://docs.python.org/c-api/buffer.html#PyBuffer_FromReadWriteMemoryX-trXPy_GetPlatformr(hhX5http://docs.python.org/c-api/init.html#Py_GetPlatformX-trXPyUnicode_AsASCIIStringr(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_AsASCIIStringX-trXPyUnicode_Tailmatchr(hhX=http://docs.python.org/c-api/unicode.html#PyUnicode_TailmatchX-trXPyEval_ReleaseLockr(hhX9http://docs.python.org/c-api/init.html#PyEval_ReleaseLockX-trXPyBuffer_Releaser(hhX9http://docs.python.org/c-api/buffer.html#PyBuffer_ReleaseX-trX PyObject_Notr(hhX5http://docs.python.org/c-api/object.html#PyObject_NotX-trX PyTuple_Sizer(hhX4http://docs.python.org/c-api/tuple.html#PyTuple_SizeX-trXPyMemoryView_Checkr(hhX;http://docs.python.org/c-api/buffer.html#PyMemoryView_CheckX-trX PyIndex_Checkr(hhX6http://docs.python.org/c-api/number.html#PyIndex_CheckX-trX PyBool_Checkr(hhX3http://docs.python.org/c-api/bool.html#PyBool_CheckX-trXPyDict_DelItemStringr(hhX;http://docs.python.org/c-api/dict.html#PyDict_DelItemStringX-trXPySys_SetObjectr(hhX5http://docs.python.org/c-api/sys.html#PySys_SetObjectX-trXPyUnicode_DecodeUTF8r(hhX>http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeUTF8X-trXPyFloat_AsStringr(hhX8http://docs.python.org/c-api/float.html#PyFloat_AsStringX-trXPyString_AsDecodedObjectr(hhXAhttp://docs.python.org/c-api/string.html#PyString_AsDecodedObjectX-trXPyByteArray_GET_SIZEr(hhX@http://docs.python.org/c-api/bytearray.html#PyByteArray_GET_SIZEX-trXPyDictProxy_Newr(hhX6http://docs.python.org/c-api/dict.html#PyDictProxy_NewX-trXPyFile_SetEncodingr(hhX9http://docs.python.org/c-api/file.html#PyFile_SetEncodingX-trXPyDescr_IsDatar(hhX;http://docs.python.org/c-api/descriptor.html#PyDescr_IsDataX-trX PyObject_Hashr(hhX6http://docs.python.org/c-api/object.html#PyObject_HashX-trXPyDateTime_TIME_GET_SECONDr(hhXEhttp://docs.python.org/c-api/datetime.html#PyDateTime_TIME_GET_SECONDX-trX PyCell_SETr(hhX1http://docs.python.org/c-api/cell.html#PyCell_SETX-trXPyDateTime_GET_MONTHr(hhX?http://docs.python.org/c-api/datetime.html#PyDateTime_GET_MONTHX-trXPyCapsule_GetDestructorr(hhXAhttp://docs.python.org/c-api/capsule.html#PyCapsule_GetDestructorX-trXPyDateTime_FromTimestampr(hhXChttp://docs.python.org/c-api/datetime.html#PyDateTime_FromTimestampX-trX Py_Initializer(hhX4http://docs.python.org/c-api/init.html#Py_InitializeX-trXPyLong_CheckExactr(hhX8http://docs.python.org/c-api/long.html#PyLong_CheckExactX-trXPyFile_FromStringr(hhX8http://docs.python.org/c-api/file.html#PyFile_FromStringX-trXPyEval_GetRestrictedr(hhXAhttp://docs.python.org/c-api/reflection.html#PyEval_GetRestrictedX-trXPyNumber_Powerr(hhX7http://docs.python.org/c-api/number.html#PyNumber_PowerX-trX PyInt_AS_LONGr(hhX3http://docs.python.org/c-api/int.html#PyInt_AS_LONGX-trXPyUnicode_EncodeLatin1r(hhX@http://docs.python.org/c-api/unicode.html#PyUnicode_EncodeLatin1X-trXPyInt_AsSsize_tr(hhX5http://docs.python.org/c-api/int.html#PyInt_AsSsize_tX-trXPyErr_WarnPy3kr(hhX;http://docs.python.org/c-api/exceptions.html#PyErr_WarnPy3kX-trXPy_GetPythonHomer(hhX7http://docs.python.org/c-api/init.html#Py_GetPythonHomeX-trXPyDescr_NewMemberr(hhX>http://docs.python.org/c-api/descriptor.html#PyDescr_NewMemberX-trXPyModule_AddIntConstantr(hhX@http://docs.python.org/c-api/module.html#PyModule_AddIntConstantX-trXPyByteArray_AsStringr(hhX@http://docs.python.org/c-api/bytearray.html#PyByteArray_AsStringX-trXPyTuple_ClearFreeListr(hhX=http://docs.python.org/c-api/tuple.html#PyTuple_ClearFreeListX-trXPyModule_GetDictr(hhX9http://docs.python.org/c-api/module.html#PyModule_GetDictX-trX PyOS_getsigr(hhX1http://docs.python.org/c-api/sys.html#PyOS_getsigX-trXPyList_SetItemr(hhX5http://docs.python.org/c-api/list.html#PyList_SetItemX-trXPyImport_GetImporterr(hhX=http://docs.python.org/c-api/import.html#PyImport_GetImporterX-trXPySlice_GetIndicesExr(hhX<http://docs.python.org/c-api/slice.html#PySlice_GetIndicesExX-trXPyInt_FromLongr(hhX4http://docs.python.org/c-api/int.html#PyInt_FromLongX-trXPyUnicodeDecodeError_GetEndr(hhXHhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_GetEndX-trXPyFunction_GetClosurer(hhX@http://docs.python.org/c-api/function.html#PyFunction_GetClosureX-trXPyUnicode_AsUTF32Stringr(hhXAhttp://docs.python.org/c-api/unicode.html#PyUnicode_AsUTF32StringX-trXPyNumber_Remainderr(hhX;http://docs.python.org/c-api/number.html#PyNumber_RemainderX-trXPySequence_Fast_ITEMSr(hhX@http://docs.python.org/c-api/sequence.html#PySequence_Fast_ITEMSX-trXPyTuple_GET_ITEMr(hhX8http://docs.python.org/c-api/tuple.html#PyTuple_GET_ITEMX-trXPyNumber_InPlaceDivider(hhX?http://docs.python.org/c-api/number.html#PyNumber_InPlaceDivideX-trXPyUnicode_DecodeASCIIr(hhX?http://docs.python.org/c-api/unicode.html#PyUnicode_DecodeASCIIX-trX PyErr_WarnExr(hhX9http://docs.python.org/c-api/exceptions.html#PyErr_WarnExX-trXPyEval_EvalCoder(hhX:http://docs.python.org/c-api/veryhigh.html#PyEval_EvalCodeX-trXPyUnicodeDecodeError_Creater(hhXHhttp://docs.python.org/c-api/exceptions.html#PyUnicodeDecodeError_CreateX-trXPyUnicodeTranslateError_Creater(hhXKhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_CreateX-trXPyDelta_CheckExactr(hhX=http://docs.python.org/c-api/datetime.html#PyDelta_CheckExactX-trX PyRun_Stringr(hhX7http://docs.python.org/c-api/veryhigh.html#PyRun_StringX-trX PyArg_VaParser(hhX3http://docs.python.org/c-api/arg.html#PyArg_VaParseX-trXPyMemoryView_GET_BUFFERr(hhX@http://docs.python.org/c-api/buffer.html#PyMemoryView_GET_BUFFERX-trXPyDescr_NewClassMethodr(hhXChttp://docs.python.org/c-api/descriptor.html#PyDescr_NewClassMethodX-trXPyEval_ReInitThreadsr(hhX;http://docs.python.org/c-api/init.html#PyEval_ReInitThreadsX-trX PyCapsule_Newr(hhX7http://docs.python.org/c-api/capsule.html#PyCapsule_NewX-trXPyType_Modifiedr(hhX6http://docs.python.org/c-api/type.html#PyType_ModifiedX-trXPy_CLEARr(hhX6http://docs.python.org/c-api/refcounting.html#Py_CLEARX-trX PyUnicode_DecodeRawUnicodeEscaper (hhXJhttp://docs.python.org/c-api/unicode.html#PyUnicode_DecodeRawUnicodeEscapeX-tr XPyOS_AfterForkr (hhX4http://docs.python.org/c-api/sys.html#PyOS_AfterForkX-tr XPy_VaBuildValuer (hhX5http://docs.python.org/c-api/arg.html#Py_VaBuildValueX-trX PyErr_Warnr(hhX7http://docs.python.org/c-api/exceptions.html#PyErr_WarnX-trXPyModule_GetNamer(hhX9http://docs.python.org/c-api/module.html#PyModule_GetNameX-trXPyThreadState_Clearr(hhX:http://docs.python.org/c-api/init.html#PyThreadState_ClearX-trX!PyUnicodeTranslateError_SetReasonr(hhXNhttp://docs.python.org/c-api/exceptions.html#PyUnicodeTranslateError_SetReasonX-trXPy_EnterRecursiveCallr(hhXBhttp://docs.python.org/c-api/exceptions.html#Py_EnterRecursiveCallX-trXPyThreadState_GetDictr(hhX<http://docs.python.org/c-api/init.html#PyThreadState_GetDictX-trX_PyImport_FixupExtensionr(hhXAhttp://docs.python.org/c-api/import.html#_PyImport_FixupExtensionX-trXPyCapsule_SetPointerr(hhX>http://docs.python.org/c-api/capsule.html#PyCapsule_SetPointerX-trX PyCell_Setr(hhX1http://docs.python.org/c-api/cell.html#PyCell_SetX-tr X PyMem_Mallocr!(hhX5http://docs.python.org/c-api/memory.html#PyMem_MallocX-tr"X PyOS_setsigr#(hhX1http://docs.python.org/c-api/sys.html#PyOS_setsigX-tr$XPyNumber_Coercer%(hhX8http://docs.python.org/c-api/number.html#PyNumber_CoerceX-tr&XPyList_AsTupler'(hhX5http://docs.python.org/c-api/list.html#PyList_AsTupleX-tr(XPyModule_CheckExactr)(hhX<http://docs.python.org/c-api/module.html#PyModule_CheckExactX-tr*XPyParser_SimpleParseStringr+(hhXEhttp://docs.python.org/c-api/veryhigh.html#PyParser_SimpleParseStringX-tr,X PyDict_Checkr-(hhX3http://docs.python.org/c-api/dict.html#PyDict_CheckX-tr.XPyCapsule_Importr/(hhX:http://docs.python.org/c-api/capsule.html#PyCapsule_ImportX-tr0XPyNumber_InPlaceFloorDivider1(hhXDhttp://docs.python.org/c-api/number.html#PyNumber_InPlaceFloorDivideX-tr2X PyWrapper_Newr3(hhX:http://docs.python.org/c-api/descriptor.html#PyWrapper_NewX-tr4X PyRun_FileExr5(hhX7http://docs.python.org/c-api/veryhigh.html#PyRun_FileExX-tr6XPyObject_GetAttrStringr7(hhX?http://docs.python.org/c-api/object.html#PyObject_GetAttrStringX-tr8XPyObject_Bytesr9(hhX7http://docs.python.org/c-api/object.html#PyObject_BytesX-tr:X PyRun_AnyFiler;(hhX8http://docs.python.org/c-api/veryhigh.html#PyRun_AnyFileX-tr<XPyObject_AsWriteBufferr=(hhXBhttp://docs.python.org/c-api/objbuffer.html#PyObject_AsWriteBufferX-tr>X PyFile_Checkr?(hhX3http://docs.python.org/c-api/file.html#PyFile_CheckX-tr@XPyNumber_InPlaceRshiftrA(hhX?http://docs.python.org/c-api/number.html#PyNumber_InPlaceRshiftX-trBXPyFile_SetBufSizerC(hhX8http://docs.python.org/c-api/file.html#PyFile_SetBufSizeX-trDXPy_VISITrE(hhX4http://docs.python.org/c-api/gcsupport.html#Py_VISITX-trFXPySequence_InPlaceRepeatrG(hhXChttp://docs.python.org/c-api/sequence.html#PySequence_InPlaceRepeatX-trHX PyTuple_CheckrI(hhX5http://docs.python.org/c-api/tuple.html#PyTuple_CheckX-trJXPyCode_NewEmptyrK(hhX6http://docs.python.org/c-api/code.html#PyCode_NewEmptyX-trLXPyNumber_CheckrM(hhX7http://docs.python.org/c-api/number.html#PyNumber_CheckX-trNX Py_INCREFrO(hhX7http://docs.python.org/c-api/refcounting.html#Py_INCREFX-trPXPyLong_FromDoublerQ(hhX8http://docs.python.org/c-api/long.html#PyLong_FromDoubleX-trRXPyFloat_AsReprStringrS(hhX<http://docs.python.org/c-api/float.html#PyFloat_AsReprStringX-trTX Py_DECREFrU(hhX7http://docs.python.org/c-api/refcounting.html#Py_DECREFX-trVXPyDelta_FromDSUrW(hhX:http://docs.python.org/c-api/datetime.html#PyDelta_FromDSUX-trXXPyLong_FromLongLongrY(hhX:http://docs.python.org/c-api/long.html#PyLong_FromLongLongX-trZXPyObject_DelAttrr[(hhX9http://docs.python.org/c-api/object.html#PyObject_DelAttrX-tr\XPyFile_FromFiler](hhX6http://docs.python.org/c-api/file.html#PyFile_FromFileX-tr^XPyImport_ExtendInittabr_(hhX?http://docs.python.org/c-api/import.html#PyImport_ExtendInittabX-tr`XPySequence_Containsra(hhX>http://docs.python.org/c-api/sequence.html#PySequence_ContainsX-trbXPyByteArray_Concatrc(hhX>http://docs.python.org/c-api/bytearray.html#PyByteArray_ConcatX-trdXPySequence_Sizere(hhX:http://docs.python.org/c-api/sequence.html#PySequence_SizeX-trfXPyObject_CallMethodrg(hhX<http://docs.python.org/c-api/object.html#PyObject_CallMethodX-trhuXc:memberri}rj(XPy_buffer.internalrk(hhX;http://docs.python.org/c-api/buffer.html#Py_buffer.internalX-trlX#PySequenceMethods.sq_inplace_concatrm(hhXMhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_inplace_concatX-trnXPyTypeObject.tp_descr_setro(hhXChttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_descr_setX-trpXPyObject.ob_typerq(hhX:http://docs.python.org/c-api/typeobj.html#PyObject.ob_typeX-trrXPySequenceMethods.sq_concatrs(hhXEhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_concatX-trtXPy_buffer.itemsizeru(hhX;http://docs.python.org/c-api/buffer.html#Py_buffer.itemsizeX-trvXPyTypeObject.tp_weaklistrw(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_weaklistX-trxXPyTypeObject.tp_freery(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_freeX-trzXPy_buffer.shaper{(hhX8http://docs.python.org/c-api/buffer.html#Py_buffer.shapeX-tr|XPyTypeObject.tp_setattrr}(hhXAhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_setattrX-tr~X Py_buffer.bufr(hhX6http://docs.python.org/c-api/buffer.html#Py_buffer.bufX-trXPyTypeObject.tp_freesr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_freesX-trXPyTypeObject.tp_getattror(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_getattroX-trXPySequenceMethods.sq_lengthr(hhXEhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_lengthX-trXPySequenceMethods.sq_ass_itemr(hhXGhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_ass_itemX-trXPyTypeObject.tp_initr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_initX-trX#PySequenceMethods.sq_inplace_repeatr(hhXMhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_inplace_repeatX-trXPyTypeObject.tp_basicsizer(hhXChttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_basicsizeX-trXPyTypeObject.tp_itemsizer(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_itemsizeX-trXPyTypeObject.tp_membersr(hhXAhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_membersX-trXPySequenceMethods.sq_itemr(hhXChttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_itemX-trXPy_buffer.readonlyr(hhX;http://docs.python.org/c-api/buffer.html#Py_buffer.readonlyX-trXPyTypeObject.tp_printr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_printX-trXPyTypeObject.tp_dictr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_dictX-trXPyTypeObject.tp_basesr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_basesX-trXPyVarObject.ob_sizer(hhX=http://docs.python.org/c-api/typeobj.html#PyVarObject.ob_sizeX-trXPySequenceMethods.sq_repeatr(hhXEhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_repeatX-trXPyTypeObject.tp_allocr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_allocX-trXPyTypeObject.tp_docr(hhX=http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_docX-trXPyTypeObject.tp_clearr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_clearX-trXPyTypeObject.tp_setattror(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_setattroX-trXPyMappingMethods.mp_lengthr(hhXDhttp://docs.python.org/c-api/typeobj.html#PyMappingMethods.mp_lengthX-trXPyNumberMethods.nb_coercer(hhXChttp://docs.python.org/c-api/typeobj.html#PyNumberMethods.nb_coerceX-trXPyTypeObject.tp_getsetr(hhX@http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_getsetX-trXPyTypeObject.tp_newr(hhX=http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_newX-trXPyTypeObject.tp_hashr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_hashX-trXPyTypeObject.tp_subclassesr(hhXDhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_subclassesX-trXPyTypeObject.tp_baser(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_baseX-trXPyObject._ob_nextr(hhX;http://docs.python.org/c-api/typeobj.html#PyObject._ob_nextX-trX!PyMappingMethods.mp_ass_subscriptr(hhXKhttp://docs.python.org/c-api/typeobj.html#PyMappingMethods.mp_ass_subscriptX-trXPySequenceMethods.sq_containsr(hhXGhttp://docs.python.org/c-api/typeobj.html#PySequenceMethods.sq_containsX-trXPyTypeObject.tp_weaklistoffsetr(hhXHhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_weaklistoffsetX-trXPyTypeObject.tp_deallocr(hhXAhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_deallocX-trXPyTypeObject.tp_iterr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_iterX-trXPyTypeObject.tp_descr_getr(hhXChttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_descr_getX-trXPyObject.ob_refcntr(hhX<http://docs.python.org/c-api/typeobj.html#PyObject.ob_refcntX-trXPyTypeObject.tp_allocsr(hhX@http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_allocsX-trXtp_as_sequencer(hhX8http://docs.python.org/c-api/typeobj.html#tp_as_sequenceX-trXPyTypeObject.tp_reprr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_reprX-trX tp_as_mappingr(hhX7http://docs.python.org/c-api/typeobj.html#tp_as_mappingX-trXPyTypeObject.tp_dictoffsetr(hhXDhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_dictoffsetX-trXPyTypeObject.tp_flagsr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_flagsX-trXPyTypeObject.tp_strr(hhX=http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_strX-trXPyTypeObject.tp_comparer(hhXAhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_compareX-trXPyTypeObject.tp_mror(hhX=http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_mroX-trXPyTypeObject.tp_as_bufferr(hhXChttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_as_bufferX-trXPyTypeObject.tp_cacher(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_cacheX-trXPy_buffer.ndimr(hhX7http://docs.python.org/c-api/buffer.html#Py_buffer.ndimX-trXPyTypeObject.tp_iternextr(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_iternextX-trXPyTypeObject.tp_callr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_callX-trXPyTypeObject.tp_maxallocr(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_maxallocX-trXPyTypeObject.tp_nextr(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_nextX-trX tp_as_numberr(hhX6http://docs.python.org/c-api/typeobj.html#tp_as_numberX-trXPyTypeObject.tp_traverser(hhXBhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_traverseX-trXPyTypeObject.tp_methodsr(hhXAhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_methodsX-trXPy_buffer.stridesr(hhX:http://docs.python.org/c-api/buffer.html#Py_buffer.stridesX-trXPyTypeObject.tp_is_gcr(hhX?http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_is_gcX-trXPyTypeObject.tp_namer(hhX>http://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_nameX-trXPyTypeObject.tp_getattrr(hhXAhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_getattrX-trXPy_buffer.suboffsetsr(hhX=http://docs.python.org/c-api/buffer.html#Py_buffer.suboffsetsX-trXPyTypeObject.tp_richcomparer(hhXEhttp://docs.python.org/c-api/typeobj.html#PyTypeObject.tp_richcompareX-trXPyObject._ob_prevr(hhX;http://docs.python.org/c-api/typeobj.html#PyObject._ob_prevX-trXPyMappingMethods.mp_subscriptr(hhXGhttp://docs.python.org/c-api/typeobj.html#PyMappingMethods.mp_subscriptX-truX std:envvarr}r(XPYTHONIOENCODINGr(hhXAhttp://docs.python.org/using/cmdline.html#envvar-PYTHONIOENCODINGX-trX PYTHONY2Kr(hhX:http://docs.python.org/using/cmdline.html#envvar-PYTHONY2KX-trX PYTHONDEBUGr(hhX<http://docs.python.org/using/cmdline.html#envvar-PYTHONDEBUGX-trX PYTHONPATHr(hhX;http://docs.python.org/using/cmdline.html#envvar-PYTHONPATHX-trX PYTHONCASEOKr(hhX=http://docs.python.org/using/cmdline.html#envvar-PYTHONCASEOKX-trXPYTHONDONTWRITEBYTECODEr (hhXHhttp://docs.python.org/using/cmdline.html#envvar-PYTHONDONTWRITEBYTECODEX-tr X PYTHONVERBOSEr (hhX>http://docs.python.org/using/cmdline.html#envvar-PYTHONVERBOSEX-tr XPYTHONMALLOCSTATSr (hhXBhttp://docs.python.org/using/cmdline.html#envvar-PYTHONMALLOCSTATSX-trXPYTHONUNBUFFEREDr(hhXAhttp://docs.python.org/using/cmdline.html#envvar-PYTHONUNBUFFEREDX-trXPYTHONDUMPREFSr(hhX?http://docs.python.org/using/cmdline.html#envvar-PYTHONDUMPREFSX-trXPYTHONTHREADDEBUGr(hhXBhttp://docs.python.org/using/cmdline.html#envvar-PYTHONTHREADDEBUGX-trX PYTHONINSPECTr(hhX>http://docs.python.org/using/cmdline.html#envvar-PYTHONINSPECTX-trX PYTHONSTARTUPr(hhX>http://docs.python.org/using/cmdline.html#envvar-PYTHONSTARTUPX-trX PYTHONHOMEr(hhX;http://docs.python.org/using/cmdline.html#envvar-PYTHONHOMEX-trXPYTHONEXECUTABLEr(hhXAhttp://docs.python.org/using/cmdline.html#envvar-PYTHONEXECUTABLEX-trXPYTHONHASHSEEDr(hhX?http://docs.python.org/using/cmdline.html#envvar-PYTHONHASHSEEDX-trXPYTHONNOUSERSITEr(hhXAhttp://docs.python.org/using/cmdline.html#envvar-PYTHONNOUSERSITEX-tr XPYTHONWARNINGSr!(hhX?http://docs.python.org/using/cmdline.html#envvar-PYTHONWARNINGSX-tr"XPYTHONOPTIMIZEr#(hhX?http://docs.python.org/using/cmdline.html#envvar-PYTHONOPTIMIZEX-tr$XPYTHONUSERBASEr%(hhX?http://docs.python.org/using/cmdline.html#envvar-PYTHONUSERBASEX-tr&uX std:opcoder'}r((X LIST_APPENDr)(hhX:http://docs.python.org/library/dis.html#opcode-LIST_APPENDX-tr*XPOP_TOPr+(hhX6http://docs.python.org/library/dis.html#opcode-POP_TOPX-tr,X INPLACE_XORr-(hhX:http://docs.python.org/library/dis.html#opcode-INPLACE_XORX-tr.X CALL_FUNCTIONr/(hhX<http://docs.python.org/library/dis.html#opcode-CALL_FUNCTIONX-tr0XDUP_TOPr1(hhX6http://docs.python.org/library/dis.html#opcode-DUP_TOPX-tr2X STORE_GLOBALr3(hhX;http://docs.python.org/library/dis.html#opcode-STORE_GLOBALX-tr4XINPLACE_SUBTRACTr5(hhX?http://docs.python.org/library/dis.html#opcode-INPLACE_SUBTRACTX-tr6X STORE_NAMEr7(hhX9http://docs.python.org/library/dis.html#opcode-STORE_NAMEX-tr8XROT_FOURr9(hhX7http://docs.python.org/library/dis.html#opcode-ROT_FOURX-tr:X DELETE_SUBSCRr;(hhX<http://docs.python.org/library/dis.html#opcode-DELETE_SUBSCRX-tr<X BINARY_ANDr=(hhX9http://docs.python.org/library/dis.html#opcode-BINARY_ANDX-tr>X YIELD_VALUEr?(hhX:http://docs.python.org/library/dis.html#opcode-YIELD_VALUEX-tr@X END_FINALLYrA(hhX:http://docs.python.org/library/dis.html#opcode-END_FINALLYX-trBX STORE_SLICE+3rC(hhX<http://docs.python.org/library/dis.html#opcode-STORE_SLICE+3X-trDXINPLACE_FLOOR_DIVIDErE(hhXChttp://docs.python.org/library/dis.html#opcode-INPLACE_FLOOR_DIVIDEX-trFX MAKE_FUNCTIONrG(hhX<http://docs.python.org/library/dis.html#opcode-MAKE_FUNCTIONX-trHX STORE_SLICE+0rI(hhX<http://docs.python.org/library/dis.html#opcode-STORE_SLICE+0X-trJX BINARY_XORrK(hhX9http://docs.python.org/library/dis.html#opcode-BINARY_XORX-trLX BREAK_LOOPrM(hhX9http://docs.python.org/library/dis.html#opcode-BREAK_LOOPX-trNXDELETE_SLICE+1rO(hhX=http://docs.python.org/library/dis.html#opcode-DELETE_SLICE+1X-trPX RETURN_VALUErQ(hhX;http://docs.python.org/library/dis.html#opcode-RETURN_VALUEX-trRX STORE_SUBSCRrS(hhX;http://docs.python.org/library/dis.html#opcode-STORE_SUBSCRX-trTXINPLACE_MULTIPLYrU(hhX?http://docs.python.org/library/dis.html#opcode-INPLACE_MULTIPLYX-trVX POP_BLOCKrW(hhX8http://docs.python.org/library/dis.html#opcode-POP_BLOCKX-trXX LOAD_ATTRrY(hhX8http://docs.python.org/library/dis.html#opcode-LOAD_ATTRX-trZXDELETE_SLICE+3r[(hhX=http://docs.python.org/library/dis.html#opcode-DELETE_SLICE+3X-tr\X SETUP_LOOPr](hhX9http://docs.python.org/library/dis.html#opcode-SETUP_LOOPX-tr^X SET_LINENOr_(hhX9http://docs.python.org/library/dis.html#opcode-SET_LINENOX-tr`XBINARY_TRUE_DIVIDEra(hhXAhttp://docs.python.org/library/dis.html#opcode-BINARY_TRUE_DIVIDEX-trbXROT_TWOrc(hhX6http://docs.python.org/library/dis.html#opcode-ROT_TWOX-trdX LOAD_CONSTre(hhX9http://docs.python.org/library/dis.html#opcode-LOAD_CONSTX-trfX SETUP_FINALLYrg(hhX<http://docs.python.org/library/dis.html#opcode-SETUP_FINALLYX-trhX IMPORT_FROMri(hhX:http://docs.python.org/library/dis.html#opcode-IMPORT_FROMX-trjXINPLACE_TRUE_DIVIDErk(hhXBhttp://docs.python.org/library/dis.html#opcode-INPLACE_TRUE_DIVIDEX-trlXUNARY_POSITIVErm(hhX=http://docs.python.org/library/dis.html#opcode-UNARY_POSITIVEX-trnXCALL_FUNCTION_KWro(hhX?http://docs.python.org/library/dis.html#opcode-CALL_FUNCTION_KWX-trpX INPLACE_ANDrq(hhX:http://docs.python.org/library/dis.html#opcode-INPLACE_ANDX-trrXCALL_FUNCTION_VAR_KWrs(hhXChttp://docs.python.org/library/dis.html#opcode-CALL_FUNCTION_VAR_KWX-trtX DELETE_FASTru(hhX:http://docs.python.org/library/dis.html#opcode-DELETE_FASTX-trvX EXTENDED_ARGrw(hhX;http://docs.python.org/library/dis.html#opcode-EXTENDED_ARGX-trxX SETUP_EXCEPTry(hhX;http://docs.python.org/library/dis.html#opcode-SETUP_EXCEPTX-trzX INPLACE_POWERr{(hhX<http://docs.python.org/library/dis.html#opcode-INPLACE_POWERX-tr|X IMPORT_NAMEr}(hhX:http://docs.python.org/library/dis.html#opcode-IMPORT_NAMEX-tr~XUNARY_NEGATIVEr(hhX=http://docs.python.org/library/dis.html#opcode-UNARY_NEGATIVEX-trX LOAD_GLOBALr(hhX:http://docs.python.org/library/dis.html#opcode-LOAD_GLOBALX-trX PRINT_EXPRr(hhX9http://docs.python.org/library/dis.html#opcode-PRINT_EXPRX-trXFOR_ITERr(hhX7http://docs.python.org/library/dis.html#opcode-FOR_ITERX-trX EXEC_STMTr(hhX8http://docs.python.org/library/dis.html#opcode-EXEC_STMTX-trX DELETE_NAMEr(hhX:http://docs.python.org/library/dis.html#opcode-DELETE_NAMEX-trX BUILD_TUPLEr(hhX:http://docs.python.org/library/dis.html#opcode-BUILD_TUPLEX-trX BUILD_LISTr(hhX9http://docs.python.org/library/dis.html#opcode-BUILD_LISTX-trX HAVE_ARGUMENTr(hhX<http://docs.python.org/library/dis.html#opcode-HAVE_ARGUMENTX-trX BUILD_CLASSr(hhX:http://docs.python.org/library/dis.html#opcode-BUILD_CLASSX-trX COMPARE_OPr(hhX9http://docs.python.org/library/dis.html#opcode-COMPARE_OPX-trX BINARY_ORr(hhX8http://docs.python.org/library/dis.html#opcode-BINARY_ORX-trXUNPACK_SEQUENCEr(hhX>http://docs.python.org/library/dis.html#opcode-UNPACK_SEQUENCEX-trX STORE_FASTr(hhX9http://docs.python.org/library/dis.html#opcode-STORE_FASTX-trXDELETE_SLICE+2r(hhX=http://docs.python.org/library/dis.html#opcode-DELETE_SLICE+2X-trXCALL_FUNCTION_VARr(hhX@http://docs.python.org/library/dis.html#opcode-CALL_FUNCTION_VARX-trX WITH_CLEANUPr(hhX;http://docs.python.org/library/dis.html#opcode-WITH_CLEANUPX-trX DELETE_ATTRr(hhX:http://docs.python.org/library/dis.html#opcode-DELETE_ATTRX-trXPOP_JUMP_IF_TRUEr(hhX?http://docs.python.org/library/dis.html#opcode-POP_JUMP_IF_TRUEX-trXJUMP_IF_FALSE_OR_POPr(hhXChttp://docs.python.org/library/dis.html#opcode-JUMP_IF_FALSE_OR_POPX-trX LOAD_LOCALSr(hhX:http://docs.python.org/library/dis.html#opcode-LOAD_LOCALSX-trX CONTINUE_LOOPr(hhX<http://docs.python.org/library/dis.html#opcode-CONTINUE_LOOPX-trX PRINT_ITEMr(hhX9http://docs.python.org/library/dis.html#opcode-PRINT_ITEMX-trX RAISE_VARARGSr(hhX<http://docs.python.org/library/dis.html#opcode-RAISE_VARARGSX-trX LOAD_NAMEr(hhX8http://docs.python.org/library/dis.html#opcode-LOAD_NAMEX-trX DELETE_GLOBALr(hhX<http://docs.python.org/library/dis.html#opcode-DELETE_GLOBALX-trXSLICE+1r(hhX6http://docs.python.org/library/dis.html#opcode-SLICE+1X-trXSLICE+2r(hhX6http://docs.python.org/library/dis.html#opcode-SLICE+2X-trXSLICE+3r(hhX6http://docs.python.org/library/dis.html#opcode-SLICE+3X-trX BINARY_MODULOr(hhX<http://docs.python.org/library/dis.html#opcode-BINARY_MODULOX-trXGET_ITERr(hhX7http://docs.python.org/library/dis.html#opcode-GET_ITERX-trXPOP_JUMP_IF_FALSEr(hhX@http://docs.python.org/library/dis.html#opcode-POP_JUMP_IF_FALSEX-trX LOAD_DEREFr(hhX9http://docs.python.org/library/dis.html#opcode-LOAD_DEREFX-trX BINARY_ADDr(hhX9http://docs.python.org/library/dis.html#opcode-BINARY_ADDX-trX LOAD_FASTr(hhX8http://docs.python.org/library/dis.html#opcode-LOAD_FASTX-trXSLICE+0r(hhX6http://docs.python.org/library/dis.html#opcode-SLICE+0X-trX UNARY_NOTr(hhX8http://docs.python.org/library/dis.html#opcode-UNARY_NOTX-trX BINARY_LSHIFTr(hhX<http://docs.python.org/library/dis.html#opcode-BINARY_LSHIFTX-trXJUMP_IF_TRUE_OR_POPr(hhXBhttp://docs.python.org/library/dis.html#opcode-JUMP_IF_TRUE_OR_POPX-trX MAKE_CLOSUREr(hhX;http://docs.python.org/library/dis.html#opcode-MAKE_CLOSUREX-trX LOAD_CLOSUREr(hhX;http://docs.python.org/library/dis.html#opcode-LOAD_CLOSUREX-trX STORE_DEREFr(hhX:http://docs.python.org/library/dis.html#opcode-STORE_DEREFX-trX IMPORT_STARr(hhX:http://docs.python.org/library/dis.html#opcode-IMPORT_STARX-trXBINARY_FLOOR_DIVIDEr(hhXBhttp://docs.python.org/library/dis.html#opcode-BINARY_FLOOR_DIVIDEX-trX INPLACE_ORr(hhX9http://docs.python.org/library/dis.html#opcode-INPLACE_ORX-trXDUP_TOPXr(hhX7http://docs.python.org/library/dis.html#opcode-DUP_TOPXX-trXBINARY_SUBTRACTr(hhX>http://docs.python.org/library/dis.html#opcode-BINARY_SUBTRACTX-trX STORE_MAPr(hhX8http://docs.python.org/library/dis.html#opcode-STORE_MAPX-trX INPLACE_ADDr(hhX:http://docs.python.org/library/dis.html#opcode-INPLACE_ADDX-trXINPLACE_LSHIFTr(hhX=http://docs.python.org/library/dis.html#opcode-INPLACE_LSHIFTX-trXDELETE_SLICE+0r(hhX=http://docs.python.org/library/dis.html#opcode-DELETE_SLICE+0X-trXINPLACE_MODULOr(hhX=http://docs.python.org/library/dis.html#opcode-INPLACE_MODULOX-trX BINARY_SUBSCRr(hhX<http://docs.python.org/library/dis.html#opcode-BINARY_SUBSCRX-trX BINARY_POWERr(hhX;http://docs.python.org/library/dis.html#opcode-BINARY_POWERX-trX STORE_ATTRr(hhX9http://docs.python.org/library/dis.html#opcode-STORE_ATTRX-trX BUILD_MAPr(hhX8http://docs.python.org/library/dis.html#opcode-BUILD_MAPX-trX ROT_THREEr(hhX8http://docs.python.org/library/dis.html#opcode-ROT_THREEX-trX SETUP_WITHr(hhX9http://docs.python.org/library/dis.html#opcode-SETUP_WITHX-trX STORE_SLICE+1r(hhX<http://docs.python.org/library/dis.html#opcode-STORE_SLICE+1X-trX STORE_SLICE+2r(hhX<http://docs.python.org/library/dis.html#opcode-STORE_SLICE+2X-trX STOP_CODEr(hhX8http://docs.python.org/library/dis.html#opcode-STOP_CODEX-trX UNARY_INVERTr(hhX;http://docs.python.org/library/dis.html#opcode-UNARY_INVERTX-trX BINARY_RSHIFTr(hhX<http://docs.python.org/library/dis.html#opcode-BINARY_RSHIFTX-trX BINARY_DIVIDEr(hhX<http://docs.python.org/library/dis.html#opcode-BINARY_DIVIDEX-trXINPLACE_RSHIFTr(hhX=http://docs.python.org/library/dis.html#opcode-INPLACE_RSHIFTX-tr X PRINT_ITEM_TOr (hhX<http://docs.python.org/library/dis.html#opcode-PRINT_ITEM_TOX-tr X PRINT_NEWLINEr (hhX<http://docs.python.org/library/dis.html#opcode-PRINT_NEWLINEX-tr XBINARY_MULTIPLYr (hhX>http://docs.python.org/library/dis.html#opcode-BINARY_MULTIPLYX-tr XINPLACE_DIVIDEr (hhX=http://docs.python.org/library/dis.html#opcode-INPLACE_DIVIDEX-tr X BUILD_SLICEr (hhX:http://docs.python.org/library/dis.html#opcode-BUILD_SLICEX-tr X UNARY_CONVERTr (hhX<http://docs.python.org/library/dis.html#opcode-UNARY_CONVERTX-tr X JUMP_ABSOLUTEr (hhX<http://docs.python.org/library/dis.html#opcode-JUMP_ABSOLUTEX-tr XPRINT_NEWLINE_TOr (hhX?http://docs.python.org/library/dis.html#opcode-PRINT_NEWLINE_TOX-tr XNOPr (hhX2http://docs.python.org/library/dis.html#opcode-NOPX-tr X JUMP_FORWARDr (hhX;http://docs.python.org/library/dis.html#opcode-JUMP_FORWARDX-tr uX std:labelr }r (Xcomparison-to-builtin-setr (hhXBhttp://docs.python.org/library/sets.html#comparison-to-builtin-setX$Comparison to the built-in set typestr Xattribute-accessr (hhX@http://docs.python.org/reference/datamodel.html#attribute-accessXCustomizing attribute accesstr Xhigh-level-embeddingr (hhXDhttp://docs.python.org/extending/embedding.html#high-level-embeddingXVery High Level Embeddingtr Xtut-calculatorr (hhX@http://docs.python.org/tutorial/introduction.html#tut-calculatorXUsing Python as a Calculatortr Xdescriptor-objectsr (hhX?http://docs.python.org/c-api/descriptor.html#descriptor-objectsXDescriptor Objectstr X blank-linesr! (hhXBhttp://docs.python.org/reference/lexical_analysis.html#blank-linesX Blank linestr" X expressionsr# (hhX=http://docs.python.org/reference/expressions.html#expressionsX Expressionstr$ X install-cmdr% (hhX<http://docs.python.org/distutils/commandref.html#install-cmdX.Installing modules: the install command familytr& Xpostinstallation-scriptr' (hhXGhttp://docs.python.org/distutils/builtdist.html#postinstallation-scriptXThe Postinstallation scripttr( Xtut-command-line-argumentsr) (hhXFhttp://docs.python.org/tutorial/stdlib.html#tut-command-line-argumentsXCommand Line Argumentstr* Xdecimal-threadsr+ (hhX;http://docs.python.org/library/decimal.html#decimal-threadsXWorking with threadstr, Xmailbox-objectsr- (hhX;http://docs.python.org/library/mailbox.html#mailbox-objectsXMailbox objectstr. Xinput-source-objectsr/ (hhXGhttp://docs.python.org/library/xml.sax.reader.html#input-source-objectsXInputSource Objectstr0 Xdoctest-advanced-apir1 (hhX@http://docs.python.org/library/doctest.html#doctest-advanced-apiX Advanced APItr2 X64-bit-access-rightsr3 (hhX=http://docs.python.org/library/_winreg.html#bit-access-rightsX64-bit Specifictr4 X typeobjectsr5 (hhX2http://docs.python.org/c-api/type.html#typeobjectsX Type Objectstr6 X tut-definingr7 (hhX=http://docs.python.org/tutorial/controlflow.html#tut-definingXMore on Defining Functionstr8 X timer-objectsr9 (hhX;http://docs.python.org/library/threading.html#timer-objectsX Timer Objectstr: Xtut-jsonr; (hhX9http://docs.python.org/tutorial/inputoutput.html#tut-jsonX Saving structured data with jsontr< Xctypes-finding-shared-librariesr= (hhXJhttp://docs.python.org/library/ctypes.html#ctypes-finding-shared-librariesXFinding shared librariestr> Xinst-alt-install-prefix-windowsr? (hhXIhttp://docs.python.org/install/index.html#inst-alt-install-prefix-windowsX3Alternate installation: Windows (the prefix scheme)tr@ X tut-objectrA (hhX7http://docs.python.org/tutorial/classes.html#tut-objectXA Word About Names and ObjectstrB Xdbhash-objectsrC (hhX9http://docs.python.org/library/dbhash.html#dbhash-objectsXDatabase ObjectstrD Xrotating-file-handlerrE (hhXJhttp://docs.python.org/library/logging.handlers.html#rotating-file-handlerXRotatingFileHandlertrF Xdecimal-recipesrG (hhX;http://docs.python.org/library/decimal.html#decimal-recipesXRecipestrH Xprefix-matchingrI (hhX<http://docs.python.org/library/argparse.html#prefix-matchingX(Argument abbreviations (prefix matching)trJ X specialattrsrK (hhX9http://docs.python.org/library/stdtypes.html#specialattrsXSpecial AttributestrL Xlocale-gettextrM (hhX9http://docs.python.org/library/locale.html#locale-gettextXAccess to message catalogstrN Xmailbox-examplesrO (hhX<http://docs.python.org/library/mailbox.html#mailbox-examplesXExamplestrP Xstruct-alignmentrQ (hhX;http://docs.python.org/library/struct.html#struct-alignmentXByte Order, Size, and AlignmenttrR Xinst-how-install-worksrS (hhX@http://docs.python.org/install/index.html#inst-how-install-worksXHow installation workstrT X"optparse-conflicts-between-optionsrU (hhXOhttp://docs.python.org/library/optparse.html#optparse-conflicts-between-optionsXConflicts between optionstrV Xinst-alt-install-homerW (hhX?http://docs.python.org/install/index.html#inst-alt-install-homeX'Alternate installation: the home schemetrX Xelementtree-element-objectsrY (hhXUhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-element-objectsXElement ObjectstrZ X handle-objectr[ (hhX9http://docs.python.org/library/_winreg.html#handle-objectXRegistry Handle Objectstr\ X section-boolr] (hhX5http://docs.python.org/whatsnew/2.3.html#section-boolXPEP 285: A Boolean Typetr^ Xfaq-argument-vs-parameterr_ (hhXEhttp://docs.python.org/faq/programming.html#faq-argument-vs-parameterX8What is the difference between arguments and parameters?tr` Xlogging-config-dict-connectionsra (hhXRhttp://docs.python.org/library/logging.config.html#logging-config-dict-connectionsXObject connectionstrb Xitertools-functionsrc (hhXAhttp://docs.python.org/library/itertools.html#itertools-functionsXItertool functionstrd X epoll-objectsre (hhX8http://docs.python.org/library/select.html#epoll-objectsX.Edge and Level Trigger Polling (epoll) Objectstrf Xpassrg (hhX7http://docs.python.org/reference/simple_stmts.html#passXThe pass statementtrh Xtut-passri (hhX9http://docs.python.org/tutorial/controlflow.html#tut-passXpass Statementstrj X%ctypes-loading-dynamic-link-librariesrk (hhXPhttp://docs.python.org/library/ctypes.html#ctypes-loading-dynamic-link-librariesXLoading dynamic link librariestrl Xdatetimeobjectsrm (hhX:http://docs.python.org/c-api/datetime.html#datetimeobjectsXDateTime Objectstrn Xinst-search-pathro (hhX:http://docs.python.org/install/index.html#inst-search-pathXModifying Python's Search Pathtrp Xemail-examplesrq (hhXAhttp://docs.python.org/library/email-examples.html#email-examplesXemail: Examplestrr Xzipimport-examplesrs (hhX@http://docs.python.org/library/zipimport.html#zipimport-examplesXExamplestrt Xdistutils-conceptsru (hhXEhttp://docs.python.org/distutils/introduction.html#distutils-conceptsXConcepts & Terminologytrv Xacks27rw (hhX/http://docs.python.org/whatsnew/2.7.html#acks27XAcknowledgementstrx Xtelnet-objectsry (hhX<http://docs.python.org/library/telnetlib.html#telnet-objectsXTelnet Objectstrz Xxdr-exceptionsr{ (hhX9http://docs.python.org/library/xdrlib.html#xdr-exceptionsX Exceptionstr| Xwindow-objectsr} (hhX<http://docs.python.org/library/framework.html#window-objectsXWindow Objectstr~ Xownershiprulesr (hhX>http://docs.python.org/extending/extending.html#ownershiprulesXOwnership Rulestr Xcontents-of-module-rer (hhX<http://docs.python.org/library/re.html#contents-of-module-reXModule Contentstr X compilationr (hhX;http://docs.python.org/extending/extending.html#compilationXCompilation and Linkagetr Xatomsr (hhX7http://docs.python.org/reference/expressions.html#atomsXAtomstr Xthreadsr (hhX.http://docs.python.org/c-api/init.html#threadsX,Thread State and the Global Interpreter Locktr Xcondition-objectsr (hhX?http://docs.python.org/library/threading.html#condition-objectsXCondition Objectstr Xabstract-bufferr (hhX;http://docs.python.org/c-api/objbuffer.html#abstract-bufferXOld Buffer Protocoltr Xdom-attributelist-objectsr (hhXEhttp://docs.python.org/library/xml.dom.html#dom-attributelist-objectsXNamedNodeMap Objectstr Xcsv-fmt-paramsr (hhX6http://docs.python.org/library/csv.html#csv-fmt-paramsX"Dialects and Formatting Parameterstr X tut-invokingr (hhX=http://docs.python.org/tutorial/interpreter.html#tut-invokingXInvoking the Interpretertr X repr-objectsr (hhX5http://docs.python.org/library/repr.html#repr-objectsX Repr Objectstr Xnew-style-attribute-accessr (hhXJhttp://docs.python.org/reference/datamodel.html#new-style-attribute-accessX+More attribute access for new-style classestr Xmimetypes-objectsr (hhX?http://docs.python.org/library/mimetypes.html#mimetypes-objectsXMimeTypes Objectstr Xdebuggerr (hhX0http://docs.python.org/library/pdb.html#debuggerXpdb --- The Python Debuggertr Ximplicit-joiningr (hhXGhttp://docs.python.org/reference/lexical_analysis.html#implicit-joiningXImplicit line joiningtr Xtut-codingstyler (hhX@http://docs.python.org/tutorial/controlflow.html#tut-codingstyleXIntermezzo: Coding Styletr Xwave-write-objectsr (hhX;http://docs.python.org/library/wave.html#wave-write-objectsXWave_write Objectstr Xunixr (hhX-http://docs.python.org/library/unix.html#unixXUnix Specific Servicestr X mailbox-mmdfr (hhX8http://docs.python.org/library/mailbox.html#mailbox-mmdfXMMDFtr Xcobjectsr (hhX2http://docs.python.org/c-api/cobject.html#cobjectsXCObjectstr X&optparse-what-positional-arguments-forr (hhXShttp://docs.python.org/library/optparse.html#optparse-what-positional-arguments-forX"What are positional arguments for?tr Xasyncore-example-1r (hhX?http://docs.python.org/library/asyncore.html#asyncore-example-1X"asyncore Example basic HTTP clienttr Xasyncore-example-2r (hhX?http://docs.python.org/library/asyncore.html#asyncore-example-2X"asyncore Example basic echo servertr X*ctypes-accessing-values-exported-from-dllsr (hhXUhttp://docs.python.org/library/ctypes.html#ctypes-accessing-values-exported-from-dllsX#Accessing values exported from dllstr Xtut-argpassingr (hhX?http://docs.python.org/tutorial/interpreter.html#tut-argpassingXArgument Passingtr X distributingr (hhX;http://docs.python.org/extending/building.html#distributingX#Distributing your extension modulestr Xhttp-password-mgrr (hhX=http://docs.python.org/library/urllib2.html#http-password-mgrXHTTPPasswordMgr Objectstr X optparse-putting-it-all-togetherr (hhXMhttp://docs.python.org/library/optparse.html#optparse-putting-it-all-togetherXPutting it all togethertr Xprotocol-error-objectsr (hhXDhttp://docs.python.org/library/xmlrpclib.html#protocol-error-objectsXProtocolError Objectstr Xsimple-xmlrpc-serversr (hhXLhttp://docs.python.org/library/simplexmlrpcserver.html#simple-xmlrpc-serversXSimpleXMLRPCServer Objectstr Xlogger-adapterr (hhX:http://docs.python.org/library/logging.html#logger-adapterXLoggerAdapter Objectstr Xinst-config-filesr (hhX;http://docs.python.org/install/index.html#inst-config-filesXDistutils Configuration Filestr X nullpointersr (hhX<http://docs.python.org/extending/extending.html#nullpointersX NULL Pointerstr Xrequest-objectsr (hhX;http://docs.python.org/library/urllib2.html#request-objectsXRequest Objectstr X using-indexr (hhX3http://docs.python.org/using/index.html#using-indexXPython Setup and Usagetr Xgenindexr (hhX%http://docs.python.org/genindex.html#XIndextr X tut-genexpsr (hhX8http://docs.python.org/tutorial/classes.html#tut-genexpsXGenerator Expressionstr Xstring-methodsr (hhX;http://docs.python.org/library/stdtypes.html#string-methodsXString Methodstr X descriptorsr (hhX;http://docs.python.org/reference/datamodel.html#descriptorsXImplementing Descriptorstr Xoptparse-adding-new-typesr (hhXFhttp://docs.python.org/library/optparse.html#optparse-adding-new-typesXAdding new typestr X dict-viewsr (hhX7http://docs.python.org/library/stdtypes.html#dict-viewsXDictionary view objectstr Xmailbox-mboxmessager (hhX?http://docs.python.org/library/mailbox.html#mailbox-mboxmessageX mboxMessagetr Xoptparse-option-attributesr (hhXGhttp://docs.python.org/library/optparse.html#optparse-option-attributesXOption attributestr Xftp-handler-objectsr (hhX?http://docs.python.org/library/urllib2.html#ftp-handler-objectsXFTPHandler Objectstr Xlambdasr (hhX9http://docs.python.org/reference/expressions.html#lambdasXLambdastr Xctypes-structured-data-typesr (hhXGhttp://docs.python.org/library/ctypes.html#ctypes-structured-data-typesXStructured data typestr Xfile-cookie-jar-classesr (hhXEhttp://docs.python.org/library/cookielib.html#file-cookie-jar-classesX;FileCookieJar subclasses and co-operation with web browserstr Xencodings-overviewr (hhX=http://docs.python.org/library/codecs.html#encodings-overviewXEncodings and Unicodetr Xoptparse-what-options-forr (hhXFhttp://docs.python.org/library/optparse.html#optparse-what-options-forXWhat are options for?tr X dom-objectsr (hhX7http://docs.python.org/library/xml.dom.html#dom-objectsXObjects in the DOMtr Xdelr (hhX6http://docs.python.org/reference/simple_stmts.html#delXThe del statementtr Xprofile-calibrationr (hhX?http://docs.python.org/library/profile.html#profile-calibrationX Calibrationtr Xcacheftp-handler-objectsr (hhXDhttp://docs.python.org/library/urllib2.html#cacheftp-handler-objectsXCacheFTPHandler Objectstr Xmailbox-mhmessager (hhX=http://docs.python.org/library/mailbox.html#mailbox-mhmessageX MHMessagetr Xdefr (hhX8http://docs.python.org/reference/compound_stmts.html#defXFunction definitionstr Xfilesysr (hhX3http://docs.python.org/library/filesys.html#filesysXFile and Directory Accesstr Ximplementationsr (hhXBhttp://docs.python.org/reference/introduction.html#implementationsXAlternate Implementationstr Xcookie-jar-objectsr (hhX@http://docs.python.org/library/cookielib.html#cookie-jar-objectsX#CookieJar and FileCookieJar Objectstr Xbuilt-in-constsr (hhX=http://docs.python.org/library/constants.html#built-in-constsXBuilt-in Constantstr X dom-exampler (hhX?http://docs.python.org/library/xml.dom.minidom.html#dom-exampleX DOM Exampletr Xnumbersr (hhX>http://docs.python.org/reference/lexical_analysis.html#numbersXNumeric literalstr Xapplication-objectsr (hhXAhttp://docs.python.org/library/framework.html#application-objectsXApplication Objectstr X creating-dumbr (hhX=http://docs.python.org/distutils/builtdist.html#creating-dumbX!Creating dumb built distributionstr Xfilterr (hhX2http://docs.python.org/library/logging.html#filterXFilter Objectstr X sortinghowtor (hhX6http://docs.python.org/howto/sorting.html#sortinghowtoXSorting HOW TOtr Xsection-encodingsr (hhX:http://docs.python.org/whatsnew/2.3.html#section-encodingsXPEP 263: Source Code Encodingstr Xmanifest-optionsr (hhXAhttp://docs.python.org/distutils/sourcedist.html#manifest-optionsXManifest-related optionstr Xtut-quality-controlr (hhX?http://docs.python.org/tutorial/stdlib.html#tut-quality-controlXQuality Controltr X access-rightsr (hhX9http://docs.python.org/library/_winreg.html#access-rightsX Access Rightstr Xctypes-arrays-pointersr (hhXAhttp://docs.python.org/library/ctypes.html#ctypes-arrays-pointersXArrays and pointerstr Xstandardexceptionsr (hhX?http://docs.python.org/c-api/exceptions.html#standardexceptionsXStandard Exceptionstr Xpyzipfile-objectsr (hhX=http://docs.python.org/library/zipfile.html#pyzipfile-objectsXPyZipFile Objectstr Xtut-unicodestringsr (hhXDhttp://docs.python.org/tutorial/introduction.html#tut-unicodestringsXUnicode Stringstr Xwin-dllsr (hhX6http://docs.python.org/extending/windows.html#win-dllsXUsing DLLs in Practicetr Xmappingr (hhX1http://docs.python.org/c-api/mapping.html#mappingXMapping Protocoltr Xsequenceobjectsr (hhX:http://docs.python.org/c-api/concrete.html#sequenceobjectsXSequence Objectstr Xstring-formattingr (hhX>http://docs.python.org/library/stdtypes.html#string-formattingXString Formatting Operationstr Xoptparse-creating-parserr (hhXEhttp://docs.python.org/library/optparse.html#optparse-creating-parserXCreating the parsertr Xnumericobjectsr (hhX9http://docs.python.org/c-api/concrete.html#numericobjectsXNumeric Objectstr X constantsr (hhX5http://docs.python.org/library/_winreg.html#constantsX Constantstr Xsummary-objectsr (hhX:http://docs.python.org/library/msilib.html#summary-objectsXSummary Information Objectstr X bytecodesr! (hhX1http://docs.python.org/library/dis.html#bytecodesXPython Bytecode Instructionstr" X id-classesr# (hhXAhttp://docs.python.org/reference/lexical_analysis.html#id-classesXReserved classes of identifierstr$ Xdialogwindow-objectsr% (hhXBhttp://docs.python.org/library/framework.html#dialogwindow-objectsXDialogWindow Objectstr& Xnew-27-interpreterr' (hhX;http://docs.python.org/whatsnew/2.7.html#new-27-interpreterXInterpreter Changestr( X fundamentalr) (hhX6http://docs.python.org/c-api/concrete.html#fundamentalXFundamental Objectstr* Xtut-interactiver+ (hhX@http://docs.python.org/tutorial/interpreter.html#tut-interactiveXInteractive Modetr, Xcookielib-cookie-objectsr- (hhXFhttp://docs.python.org/library/cookielib.html#cookielib-cookie-objectsXCookie Objectstr. Xdistutils-additional-filesr/ (hhXLhttp://docs.python.org/distutils/setupscript.html#distutils-additional-filesXInstalling Additional Filestr0 Xdistutils-simple-exampler1 (hhXKhttp://docs.python.org/distutils/introduction.html#distutils-simple-exampleXA Simple Exampletr2 Xextending-indexr3 (hhX;http://docs.python.org/extending/index.html#extending-indexX.Extending and Embedding the Python Interpretertr4 Xinst-standard-installr5 (hhX?http://docs.python.org/install/index.html#inst-standard-installXStandard Build and Installtr6 Xmapping-structsr7 (hhX9http://docs.python.org/c-api/typeobj.html#mapping-structsXMapping Object Structurestr8 Xpypircr9 (hhX9http://docs.python.org/distutils/packageindex.html#pypircXThe .pypirc filetr: Xextending-errorsr; (hhX@http://docs.python.org/extending/extending.html#extending-errorsX!Intermezzo: Errors and Exceptionstr< X rlock-objectsr= (hhX;http://docs.python.org/library/threading.html#rlock-objectsX RLock Objectstr> X tut-intror? (hhX7http://docs.python.org/tutorial/appetite.html#tut-introXWhetting Your Appetitetr@ Xdumbdbm-objectsrA (hhX;http://docs.python.org/library/dumbdbm.html#dumbdbm-objectsXDumbdbm ObjectstrB Xpep-308rC (hhX0http://docs.python.org/whatsnew/2.5.html#pep-308X PEP 308: Conditional ExpressionstrD Xpep-309rE (hhX0http://docs.python.org/whatsnew/2.5.html#pep-309X%PEP 309: Partial Function ApplicationtrF Xnew-26-interpreterrG (hhX;http://docs.python.org/whatsnew/2.6.html#new-26-interpreterXInterpreter ChangestrH X mac-scriptingrI (hhX8http://docs.python.org/library/macosa.html#mac-scriptingXMacPython OSA ModulestrJ Xelementtree-functionsrK (hhXOhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-functionsX FunctionstrL XreturnrM (hhX9http://docs.python.org/reference/simple_stmts.html#returnXThe return statementtrN Xdoctest-outputcheckerrO (hhXAhttp://docs.python.org/library/doctest.html#doctest-outputcheckerXOutputChecker objectstrP X view-objectsrQ (hhX7http://docs.python.org/library/msilib.html#view-objectsX View ObjectstrR Xoptparse-cleanuprS (hhX=http://docs.python.org/library/optparse.html#optparse-cleanupXCleanuptrT XfloatingrU (hhX?http://docs.python.org/reference/lexical_analysis.html#floatingXFloating point literalstrV XbreakrW (hhX8http://docs.python.org/reference/simple_stmts.html#breakXThe break statementtrX X frameworkrY (hhX6http://docs.python.org/howto/webservers.html#frameworkX FrameworkstrZ X tut-iteratorsr[ (hhX:http://docs.python.org/tutorial/classes.html#tut-iteratorsX Iteratorstr\ X api-typesr] (hhX1http://docs.python.org/c-api/intro.html#api-typesXTypestr^ X setup-configr_ (hhX=http://docs.python.org/distutils/configfile.html#setup-configX$Writing the Setup Configuration Filetr` Xcompoundra (hhX=http://docs.python.org/reference/compound_stmts.html#compoundXCompound statementstrb Xdom-pi-objectsrc (hhX:http://docs.python.org/library/xml.dom.html#dom-pi-objectsXProcessingInstruction Objectstrd Xrecord-objectsre (hhX9http://docs.python.org/library/msilib.html#record-objectsXRecord Objectstrf Xsearch-vs-matchrg (hhX6http://docs.python.org/library/re.html#search-vs-matchXsearch() vs. match()trh Xpure-embeddingri (hhX>http://docs.python.org/extending/embedding.html#pure-embeddingXPure Embeddingtrj X trace-apirk (hhX3http://docs.python.org/library/trace.html#trace-apiXProgrammatic Interfacetrl X+ctypes-accessing-functions-from-loaded-dllsrm (hhXVhttp://docs.python.org/library/ctypes.html#ctypes-accessing-functions-from-loaded-dllsX$Accessing functions from loaded dllstrn X24acksro (hhX-http://docs.python.org/whatsnew/2.4.html#acksXAcknowledgementstrp X smtp-handlerrq (hhXAhttp://docs.python.org/library/logging.handlers.html#smtp-handlerX SMTPHandlertrr Xbrowser-controllersrs (hhXBhttp://docs.python.org/library/webbrowser.html#browser-controllersXBrowser Controller Objectstrt Xstdcomparisonsru (hhX;http://docs.python.org/library/stdtypes.html#stdcomparisonsX Comparisonstrv Xtraceback-examplerw (hhX?http://docs.python.org/library/traceback.html#traceback-exampleXTraceback Examplestrx Xtut-formattingry (hhX?http://docs.python.org/tutorial/inputoutput.html#tut-formattingXFancier Output Formattingtrz Xportsr{ (hhX.http://docs.python.org/whatsnew/2.5.html#portsXPort-Specific Changestr| Xtut-firststepsr} (hhX@http://docs.python.org/tutorial/introduction.html#tut-firststepsXFirst Steps Towards Programmingtr~ Xwarning-categoriesr (hhX?http://docs.python.org/library/warnings.html#warning-categoriesXWarning Categoriestr Xnumericr (hhX3http://docs.python.org/library/numeric.html#numericX Numeric and Mathematical Modulestr X examples-impr (hhX4http://docs.python.org/library/imp.html#examples-impXExamplestr Xtut-unpacking-argumentsr (hhXHhttp://docs.python.org/tutorial/controlflow.html#tut-unpacking-argumentsXUnpacking Argument Liststr Xformatexamplesr (hhX9http://docs.python.org/library/string.html#formatexamplesXFormat examplestr X typesobjectsr (hhX9http://docs.python.org/library/stdtypes.html#typesobjectsXClasses and Class Instancestr X whitespacer (hhXAhttp://docs.python.org/reference/lexical_analysis.html#whitespaceXWhitespace between tokenstr X restrictedr (hhX9http://docs.python.org/library/restricted.html#restrictedXRestricted Executiontr X sqlite3-controlling-transactionsr (hhXLhttp://docs.python.org/library/sqlite3.html#sqlite3-controlling-transactionsXControlling Transactionstr Xusing-on-generalr (hhX:http://docs.python.org/using/cmdline.html#using-on-generalXCommand line and environmenttr Xctypes-utility-functionsr (hhXChttp://docs.python.org/library/ctypes.html#ctypes-utility-functionsXUtility functionstr Xprintr (hhX8http://docs.python.org/reference/simple_stmts.html#printXThe print statementtr X fault-objectsr (hhX;http://docs.python.org/library/xmlrpclib.html#fault-objectsX Fault Objectstr X decimal-faqr (hhX7http://docs.python.org/library/decimal.html#decimal-faqX Decimal FAQtr Xextending-intror (hhX?http://docs.python.org/extending/extending.html#extending-introXExtending Python with C or C++tr X uuid-exampler (hhX5http://docs.python.org/library/uuid.html#uuid-exampleXExampletr X netrc-objectsr (hhX7http://docs.python.org/library/netrc.html#netrc-objectsX netrc Objectstr Xdatetime-timedeltar (hhX?http://docs.python.org/library/datetime.html#datetime-timedeltaXtimedelta Objectstr X using-on-macr (hhX2http://docs.python.org/using/mac.html#using-on-macXUsing Python on a Macintoshtr Xsomeosr (hhX1http://docs.python.org/library/someos.html#someosX"Optional Operating System Servicestr Xkevent-objectsr (hhX9http://docs.python.org/library/select.html#kevent-objectsXKevent Objectstr Xtarinfo-objectsr (hhX;http://docs.python.org/library/tarfile.html#tarinfo-objectsXTarInfo Objectstr X boolobjectsr (hhX2http://docs.python.org/c-api/bool.html#boolobjectsXBoolean Objectstr Xpackage-uploadr (hhXAhttp://docs.python.org/distutils/packageindex.html#package-uploadXUploading Packagestr X other-langr (hhX3http://docs.python.org/whatsnew/2.5.html#other-langXOther Language Changestr X pickle-subr (hhX5http://docs.python.org/library/pickle.html#pickle-subXSubclassing Unpicklerstr Xtut-exceptionsr (hhX:http://docs.python.org/tutorial/errors.html#tut-exceptionsX Exceptionstr Xpep-3141r (hhX1http://docs.python.org/whatsnew/2.6.html#pep-3141X&PEP 3141: A Type Hierarchy for Numberstr X datamodelr (hhX9http://docs.python.org/reference/datamodel.html#datamodelX Data modeltr Xtut-string-pattern-matchingr (hhXGhttp://docs.python.org/tutorial/stdlib.html#tut-string-pattern-matchingXString Pattern Matchingtr Xtut-multi-threadingr (hhX@http://docs.python.org/tutorial/stdlib2.html#tut-multi-threadingXMulti-threadingtr Xfeaturesr (hhX3http://docs.python.org/library/msilib.html#featuresXFeaturestr Xsequence-structsr (hhX:http://docs.python.org/c-api/typeobj.html#sequence-structsXSequence Object Structurestr Xmiscr (hhX-http://docs.python.org/library/misc.html#miscXMiscellaneous Servicestr Xnumberr (hhX/http://docs.python.org/c-api/number.html#numberXNumber Protocoltr X typesotherr (hhX7http://docs.python.org/library/stdtypes.html#typesotherXOther Built-in Typestr Xbinary-objectsr (hhX<http://docs.python.org/library/xmlrpclib.html#binary-objectsXBinary Objectstr X customizationr (hhX=http://docs.python.org/reference/datamodel.html#customizationXBasic customizationtr X api-intror (hhX1http://docs.python.org/c-api/intro.html#api-introX Introductiontr Xtimeit-examplesr (hhX:http://docs.python.org/library/timeit.html#timeit-examplesXExamplestr Xtkinter-basic-mappingr (hhXAhttp://docs.python.org/library/tkinter.html#tkinter-basic-mappingXMapping Basic Tk into Tkintertr X introductionr (hhX?http://docs.python.org/reference/introduction.html#introductionX Introductiontr Xsystemfunctionsr (hhX5http://docs.python.org/c-api/sys.html#systemfunctionsXSystem Functionstr Xunicodemethodsandslotsr (hhX@http://docs.python.org/c-api/unicode.html#unicodemethodsandslotsXMethods and Slot Functionstr Xtut-lists-as-queuesr (hhXGhttp://docs.python.org/tutorial/datastructures.html#tut-lists-as-queuesXUsing Lists as Queuestr X api-includesr (hhX4http://docs.python.org/c-api/intro.html#api-includesX Include Filestr Xinst-custom-installr (hhX=http://docs.python.org/install/index.html#inst-custom-installXCustom Installationtr X3ctypes-calling-functions-with-own-custom-data-typesr (hhX^http://docs.python.org/library/ctypes.html#ctypes-calling-functions-with-own-custom-data-typesX1Calling functions with your own custom data typestr Xtkinter-setting-optionsr (hhXChttp://docs.python.org/library/tkinter.html#tkinter-setting-optionsXSetting Optionstr Xdoctest-which-docstringsr (hhXDhttp://docs.python.org/library/doctest.html#doctest-which-docstringsXWhich Docstrings Are Examined?tr Xtypesfunctionsr (hhX;http://docs.python.org/library/stdtypes.html#typesfunctionsX Functionstr Xinst-alt-install-userr (hhX?http://docs.python.org/install/index.html#inst-alt-install-userX'Alternate installation: the user schemetr X tut-scriptsr (hhX<http://docs.python.org/tutorial/interpreter.html#tut-scriptsXExecutable Python Scriptstr Xorganizing-testsr (hhX=http://docs.python.org/library/unittest.html#organizing-testsXOrganizing test codetr Xserverproxy-objectsr (hhXAhttp://docs.python.org/library/xmlrpclib.html#serverproxy-objectsXServerProxy Objectstr Xxmlreader-objectsr (hhXDhttp://docs.python.org/library/xml.sax.reader.html#xmlreader-objectsXXMLReader Objectstr Xtut-delr (hhX;http://docs.python.org/tutorial/datastructures.html#tut-delXThe del statementtr Xidler (hhX-http://docs.python.org/library/idle.html#idleXIDLEtr Xinst-non-ms-compilersr (hhX?http://docs.python.org/install/index.html#inst-non-ms-compilersX(Using non-Microsoft compilers on Windowstr X custominterpr (hhX=http://docs.python.org/library/custominterp.html#custominterpXCustom Python Interpreterstr X arg-parsingr (hhX1http://docs.python.org/c-api/arg.html#arg-parsingX%Parsing arguments and building valuestr Xmswin-specific-servicesr (hhXChttp://docs.python.org/library/windows.html#mswin-specific-servicesXMS Windows Specific Servicestr Xhtml-parser-objectsr (hhX?http://docs.python.org/library/htmllib.html#html-parser-objectsXHTMLParser Objectstr Xsequencematcher-examplesr (hhXDhttp://docs.python.org/library/difflib.html#sequencematcher-examplesXSequenceMatcher Examplestr Xcodec-registryr (hhX6http://docs.python.org/c-api/codec.html#codec-registryX$Codec registry and support functionstr Xbitwiser (hhX9http://docs.python.org/reference/expressions.html#bitwiseXBinary bitwise operationstr X writer-implsr (hhX:http://docs.python.org/library/formatter.html#writer-implsXWriter Implementationstr Xdifflib-interfacer (hhX=http://docs.python.org/library/difflib.html#difflib-interfaceX#A command-line interface to difflibtr Xhowto-minimal-exampler (hhX?http://docs.python.org/howto/logging.html#howto-minimal-exampleXA simple exampletr Xbltin-code-objectsr (hhX?http://docs.python.org/library/stdtypes.html#bltin-code-objectsX Code Objectstr X os-processr (hhX1http://docs.python.org/library/os.html#os-processXProcess Managementtr Xline-structurer (hhXEhttp://docs.python.org/reference/lexical_analysis.html#line-structureXLine structuretr X atom-literalsr (hhX?http://docs.python.org/reference/expressions.html#atom-literalsXLiteralstr Xentity-resolver-objectsr (hhXKhttp://docs.python.org/library/xml.sax.handler.html#entity-resolver-objectsXEntityResolver Objectstr Xal-port-objectsr (hhX6http://docs.python.org/library/al.html#al-port-objectsX Port Objectstr Xexecr (hhX7http://docs.python.org/reference/simple_stmts.html#execXThe exec statementtr Xtemplate-objectsr (hhX:http://docs.python.org/library/pipes.html#template-objectsXTemplate Objectstr Xobjectr (hhX/http://docs.python.org/c-api/object.html#objectXObject Protocoltr Xpartial-objectsr (hhX=http://docs.python.org/library/functools.html#partial-objectsXpartial Objectstr Xal-config-objectsr (hhX8http://docs.python.org/library/al.html#al-config-objectsXConfiguration Objectstr X comparisonsr (hhX=http://docs.python.org/reference/expressions.html#comparisonsX Comparisonstr Xnew-26-context-managersr! (hhX@http://docs.python.org/whatsnew/2.6.html#new-26-context-managersXWriting Context Managerstr" X faq-indexr# (hhX/http://docs.python.org/faq/index.html#faq-indexX!Python Frequently Asked Questionstr$ Xdom-comment-objectsr% (hhX?http://docs.python.org/library/xml.dom.html#dom-comment-objectsXComment Objectstr& Xctypes-pointersr' (hhX:http://docs.python.org/library/ctypes.html#ctypes-pointersXPointerstr( Xoptparse-parsing-argumentsr) (hhXGhttp://docs.python.org/library/optparse.html#optparse-parsing-argumentsXParsing argumentstr* Xtut-weak-referencesr+ (hhX@http://docs.python.org/tutorial/stdlib2.html#tut-weak-referencesXWeak Referencestr, Xinst-new-standardr- (hhX;http://docs.python.org/install/index.html#inst-new-standardXThe new standard: Distutilstr. Xnewtypesr/ (hhX2http://docs.python.org/c-api/objimpl.html#newtypesXObject Implementation Supporttr0 X ftp-objectsr1 (hhX6http://docs.python.org/library/ftplib.html#ftp-objectsX FTP Objectstr2 X tut-ranger3 (hhX:http://docs.python.org/tutorial/controlflow.html#tut-rangeXThe range() Functiontr4 X tut-startupr5 (hhX<http://docs.python.org/tutorial/interpreter.html#tut-startupXThe Interactive Startup Filetr6 Xwsgir7 (hhX1http://docs.python.org/howto/webservers.html#wsgiXStep back: WSGItr8 Xexpat-content-modelsr9 (hhX@http://docs.python.org/library/pyexpat.html#expat-content-modelsXContent Model Descriptionstr: Xpep-3127r; (hhX1http://docs.python.org/whatsnew/2.6.html#pep-3127X,PEP 3127: Integer Literal Support and Syntaxtr< Xcurses-functionsr= (hhX;http://docs.python.org/library/curses.html#curses-functionsX Functionstr> X tar-unicoder? (hhX7http://docs.python.org/library/tarfile.html#tar-unicodeXUnicode issuestr@ Xsubclassing-reprsrA (hhX:http://docs.python.org/library/repr.html#subclassing-reprsXSubclassing Repr ObjectstrB XkeywordsrC (hhX?http://docs.python.org/reference/lexical_analysis.html#keywordsXKeywordstrD XmemoryinterfacerE (hhX8http://docs.python.org/c-api/memory.html#memoryinterfaceXMemory InterfacetrF XsunosrG (hhX-http://docs.python.org/library/sun.html#sunosXSunOS Specific ServicestrH XveryhighrI (hhX3http://docs.python.org/c-api/veryhigh.html#veryhighXThe Very High Level LayertrJ Xabstract-basic-auth-handlerrK (hhXGhttp://docs.python.org/library/urllib2.html#abstract-basic-auth-handlerX AbstractBasicAuthHandler ObjectstrL X writing-testsrM (hhX6http://docs.python.org/library/test.html#writing-testsX'Writing Unit Tests for the test packagetrN Xthreaded-importsrO (hhX>http://docs.python.org/library/threading.html#threaded-importsXImporting in threaded codetrP Xctypes-ctypes-tutorialrQ (hhXAhttp://docs.python.org/library/ctypes.html#ctypes-ctypes-tutorialXctypes tutorialtrR Xmultiprocessing-auth-keysrS (hhXMhttp://docs.python.org/library/multiprocessing.html#multiprocessing-auth-keysXAuthentication keystrT X intobjectsrU (hhX0http://docs.python.org/c-api/int.html#intobjectsXPlain Integer ObjectstrV Xmemory-handlerrW (hhXChttp://docs.python.org/library/logging.handlers.html#memory-handlerX MemoryHandlertrX Xstream-writer-objectsrY (hhX@http://docs.python.org/library/codecs.html#stream-writer-objectsXStreamWriter ObjectstrZ Xelementtree-xmlparser-objectsr[ (hhXWhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-xmlparser-objectsXXMLParser Objectstr\ Xsocket-handlerr] (hhXChttp://docs.python.org/library/logging.handlers.html#socket-handlerX SocketHandlertr^ Xtestcase-objectsr_ (hhX=http://docs.python.org/library/unittest.html#testcase-objectsX Test casestr` X countingrefsra (hhX:http://docs.python.org/c-api/refcounting.html#countingrefsXReference Countingtrb Xpyclbr-class-objectsrc (hhX?http://docs.python.org/library/pyclbr.html#pyclbr-class-objectsX Class Objectstrd Xnotationre (hhX;http://docs.python.org/reference/introduction.html#notationXNotationtrf Xdefining-new-typesrg (hhXAhttp://docs.python.org/extending/newtypes.html#defining-new-typesXDefining New Typestrh Xdom-exceptionsri (hhX:http://docs.python.org/library/xml.dom.html#dom-exceptionsX Exceptionstrj X library-indexrk (hhX7http://docs.python.org/library/index.html#library-indexXThe Python Standard Librarytrl Xsyslog-handlerrm (hhXChttp://docs.python.org/library/logging.handlers.html#syslog-handlerX SysLogHandlertrn X cmd-objectsro (hhX3http://docs.python.org/library/cmd.html#cmd-objectsX Cmd Objectstrp Xstruct-objectsrq (hhX9http://docs.python.org/library/struct.html#struct-objectsXClassestrr Xconsole-objectsrs (hhX8http://docs.python.org/library/code.html#console-objectsXInteractive Console Objectstrt Xdecimal-tutorialru (hhX<http://docs.python.org/library/decimal.html#decimal-tutorialXQuick-start Tutorialtrv Xtoolboxrw (hhX2http://docs.python.org/library/carbon.html#toolboxXMac OS Toolbox Modulestrx Xelementtree-xpathry (hhXKhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-xpathX XPath supporttrz Xdoctest-execution-contextr{ (hhXEhttp://docs.python.org/library/doctest.html#doctest-execution-contextXWhat's the Execution Context?tr| Xcompilerr} (hhX5http://docs.python.org/library/compiler.html#compilerXPython compiler packagetr~ Xpep-338r (hhX0http://docs.python.org/whatsnew/2.5.html#pep-338X%PEP 338: Executing Modules as Scriptstr Xcookielib-examplesr (hhX@http://docs.python.org/library/cookielib.html#cookielib-examplesXExamplestr Xtut-dictionariesr (hhXDhttp://docs.python.org/tutorial/datastructures.html#tut-dictionariesX Dictionariestr Xdom-text-objectsr (hhX<http://docs.python.org/library/xml.dom.html#dom-text-objectsXText and CDATASection Objectstr Xarchiving-exampler (hhX<http://docs.python.org/library/shutil.html#archiving-exampleXArchiving exampletr Xattributes-objectsr (hhXEhttp://docs.python.org/library/xml.sax.reader.html#attributes-objectsXThe Attributes Interfacetr Xtut-setsr (hhX<http://docs.python.org/tutorial/datastructures.html#tut-setsXSetstr Xposix-large-filesr (hhX;http://docs.python.org/library/posix.html#posix-large-filesXLarge File Supporttr Xsetr (hhX5http://docs.python.org/reference/expressions.html#setX Set displaystr X referencer (hhX:http://docs.python.org/distutils/commandref.html#referenceXCommand Referencetr Xsqlite3-cursor-objectsr (hhXBhttp://docs.python.org/library/sqlite3.html#sqlite3-cursor-objectsXCursor Objectstr Xstruct-examplesr (hhX:http://docs.python.org/library/struct.html#struct-examplesXExamplestr X operator-mapr (hhX9http://docs.python.org/library/operator.html#operator-mapXMapping Operators to Functionstr X module-etreer (hhX5http://docs.python.org/whatsnew/2.5.html#module-etreeXThe ElementTree packagetr X codeobjectsr (hhX2http://docs.python.org/c-api/code.html#codeobjectsX Code Objectstr X evalorderr (hhX;http://docs.python.org/reference/expressions.html#evalorderXEvaluation ordertr Xzipimporter-objectsr (hhXAhttp://docs.python.org/library/zipimport.html#zipimporter-objectsXzipimporter Objectstr Xsax-error-handlerr (hhXEhttp://docs.python.org/library/xml.sax.handler.html#sax-error-handlerXErrorHandler Objectstr Xinst-how-build-worksr (hhX>http://docs.python.org/install/index.html#inst-how-build-worksXHow building workstr Xmh-folder-objectsr (hhX;http://docs.python.org/library/mhlib.html#mh-folder-objectsXFolder Objectstr Xgenerator-typesr (hhX<http://docs.python.org/library/stdtypes.html#generator-typesXGenerator Typestr X tut-comparingr (hhXAhttp://docs.python.org/tutorial/datastructures.html#tut-comparingX#Comparing Sequences and Other Typestr Xinst-alt-install-prefix-unixr (hhXFhttp://docs.python.org/install/index.html#inst-alt-install-prefix-unixX0Alternate installation: Unix (the prefix scheme)tr X profilingr (hhX0http://docs.python.org/c-api/init.html#profilingXProfiling and Tracingtr X file-inputr (hhXDhttp://docs.python.org/reference/toplevel_components.html#file-inputX File inputtr Ximportlib-sectionr (hhX:http://docs.python.org/whatsnew/2.7.html#importlib-sectionXNew module: importlibtr Xctypes-data-typesr (hhX<http://docs.python.org/library/ctypes.html#ctypes-data-typesX Data typestr Xxmlrpc-client-exampler (hhXChttp://docs.python.org/library/xmlrpclib.html#xmlrpc-client-exampleXExample of Client Usagetr X builtincodecsr (hhX7http://docs.python.org/c-api/unicode.html#builtincodecsXBuilt-in Codecstr Xsetting-envvarsr (hhX9http://docs.python.org/using/windows.html#setting-envvarsX'Excursus: Setting environment variablestr Xctypes-fundamental-data-typesr (hhXHhttp://docs.python.org/library/ctypes.html#ctypes-fundamental-data-typesXFundamental data typestr X tut-packagesr (hhX9http://docs.python.org/tutorial/modules.html#tut-packagesXPackagestr Xunittest-command-line-interfacer (hhXLhttp://docs.python.org/library/unittest.html#unittest-command-line-interfaceXCommand-Line Interfacetr Xwarning-filterr (hhX;http://docs.python.org/library/warnings.html#warning-filterXThe Warnings Filtertr Xau-write-objectsr (hhX:http://docs.python.org/library/sunau.html#au-write-objectsXAU_write Objectstr X decimal-notesr (hhX9http://docs.python.org/library/decimal.html#decimal-notesXFloating Point Notestr X os-file-dirr (hhX2http://docs.python.org/library/os.html#os-file-dirXFiles and Directoriestr X lock-objectsr (hhX:http://docs.python.org/library/threading.html#lock-objectsX Lock Objectstr Xconverting-argument-sequencer (hhXKhttp://docs.python.org/library/subprocess.html#converting-argument-sequenceX6Converting an argument sequence to a string on Windowstr Xlogging-cookbookr (hhXChttp://docs.python.org/howto/logging-cookbook.html#logging-cookbookXLogging Cookbooktr X tut-remarksr (hhX8http://docs.python.org/tutorial/classes.html#tut-remarksXRandom Remarkstr X interactiver (hhXEhttp://docs.python.org/reference/toplevel_components.html#interactiveXInteractive inputtr Xdomeventstream-objectsr (hhXJhttp://docs.python.org/library/xml.dom.pulldom.html#domeventstream-objectsXDOMEventStream Objectstr Xprettyprinter-objectsr (hhX@http://docs.python.org/library/pprint.html#prettyprinter-objectsXPrettyPrinter Objectstr Xcursespanel-functionsr (hhXFhttp://docs.python.org/library/curses.panel.html#cursespanel-functionsX Functionstr Xsimpler (hhX9http://docs.python.org/reference/simple_stmts.html#simpleXSimple statementstr Xdoc-xmlrpc-serversr (hhXFhttp://docs.python.org/library/docxmlrpcserver.html#doc-xmlrpc-serversXDocXMLRPCServer Objectstr Xtut-ior (hhX7http://docs.python.org/tutorial/inputoutput.html#tut-ioXInput and Outputtr Xslotsr (hhX5http://docs.python.org/reference/datamodel.html#slotsX __slots__tr Xtut-ifr (hhX7http://docs.python.org/tutorial/controlflow.html#tut-ifX if Statementstr X mutex-objectsr (hhX7http://docs.python.org/library/mutex.html#mutex-objectsX Mutex Objectstr Xraiser (hhX8http://docs.python.org/reference/simple_stmts.html#raiseXThe raise statementtr Xtut-lineeditingr (hhX@http://docs.python.org/tutorial/interactive.html#tut-lineeditingX Line Editingtr Xmailbox-maildirr (hhX;http://docs.python.org/library/mailbox.html#mailbox-maildirXMaildirtr Xurllib2-examplesr (hhX<http://docs.python.org/library/urllib2.html#urllib2-examplesXExamplestr X buildvaluer (hhX:http://docs.python.org/extending/extending.html#buildvalueXBuilding Arbitrary Valuestr Xdoctest-simple-testfiler (hhXChttp://docs.python.org/library/doctest.html#doctest-simple-testfileX.Simple Usage: Checking Examples in a Text Filetr X bltin-typesr (hhX8http://docs.python.org/library/stdtypes.html#bltin-typesXBuilt-in Typestr Xcomprehensionsr (hhX@http://docs.python.org/reference/expressions.html#comprehensionsX"Displays for sets and dictionariestr Xhttp-redirect-handlerr (hhXAhttp://docs.python.org/library/urllib2.html#http-redirect-handlerXHTTPRedirectHandler Objectstr Xctypes-return-typesr (hhX>http://docs.python.org/library/ctypes.html#ctypes-return-typesX Return typestr Xlogging-config-dictschemar (hhXLhttp://docs.python.org/library/logging.config.html#logging-config-dictschemaXConfiguration dictionary schematr X context-infor (hhX?http://docs.python.org/howto/logging-cookbook.html#context-infoX4Adding contextual information to your logging outputtr Xsearchr (hhX#http://docs.python.org/search.html#X Search Pagetr Xelser (hhX9http://docs.python.org/reference/compound_stmts.html#elseXThe if statementtr Xprofile-limitationsr (hhX?http://docs.python.org/library/profile.html#profile-limitationsX Limitationstr X archivingr (hhX7http://docs.python.org/library/archiving.html#archivingXData Compression and Archivingtr Xinspect-classes-functionsr (hhXEhttp://docs.python.org/library/inspect.html#inspect-classes-functionsXClasses and functionstr Xmultiprocessing-address-formatsr (hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing-address-formatsXAddress Formatstr X nntp-objectsr (hhX8http://docs.python.org/library/nntplib.html#nntp-objectsX NNTP Objectstr Xoptparse-option-callbacksr (hhXFhttp://docs.python.org/library/optparse.html#optparse-option-callbacksXOption Callbackstr X backtoexampler (hhX=http://docs.python.org/extending/extending.html#backtoexampleXBack to the Exampletr Xurlparse-result-objectr (hhXChttp://docs.python.org/library/urlparse.html#urlparse-result-objectX$Results of urlparse() and urlsplit()tr Xreference-indexr (hhX;http://docs.python.org/reference/index.html#reference-indexXThe Python Language Referencetr Xtut-commentaryr (hhX?http://docs.python.org/tutorial/interactive.html#tut-commentaryX+Alternatives to the Interactive Interpretertr Xwhiler (hhX:http://docs.python.org/reference/compound_stmts.html#whileXThe while statementtr Xstream-recoder-objectsr (hhXAhttp://docs.python.org/library/codecs.html#stream-recoder-objectsXStreamRecoder Objectstr Xtut-brieftourtwor (hhX=http://docs.python.org/tutorial/stdlib2.html#tut-brieftourtwoX-Brief Tour of the Standard Library -- Part IItr Xtut-output-formattingr (hhXBhttp://docs.python.org/tutorial/stdlib2.html#tut-output-formattingXOutput Formattingtr Xminidom-and-domr (hhXChttp://docs.python.org/library/xml.dom.minidom.html#minidom-and-domXminidom and the DOM standardtr Xtut-os-interfacer (hhX<http://docs.python.org/tutorial/stdlib.html#tut-os-interfaceXOperating System Interfacetr X cgi-securityr! (hhX4http://docs.python.org/library/cgi.html#cgi-securityXCaring about securitytr" Xmailbox-mmdfmessager# (hhX?http://docs.python.org/library/mailbox.html#mailbox-mmdfmessageX MMDFMessagetr$ Xctypes-function-prototypesr% (hhXEhttp://docs.python.org/library/ctypes.html#ctypes-function-prototypesXFunction prototypestr& Xisr' (hhX4http://docs.python.org/reference/expressions.html#isX Comparisonstr( Xcporting-howtor) (hhX9http://docs.python.org/howto/cporting.html#cporting-howtoX%Porting Extension Modules to Python 3tr* X msi-tablesr+ (hhX5http://docs.python.org/library/msilib.html#msi-tablesXPrecomputed tablestr, Xinr- (hhX4http://docs.python.org/reference/expressions.html#inX Comparisonstr. Xbuffer-structsr/ (hhX8http://docs.python.org/c-api/typeobj.html#buffer-structsXBuffer Object Structurestr0 Xfile-operationsr1 (hhX:http://docs.python.org/library/shutil.html#file-operationsXDirectory and files operationstr2 Xifr3 (hhX7http://docs.python.org/reference/compound_stmts.html#ifXThe if statementtr4 Xmultiple-destinationsr5 (hhXHhttp://docs.python.org/howto/logging-cookbook.html#multiple-destinationsX Logging to multiple destinationstr6 Xreadline-exampler7 (hhX=http://docs.python.org/library/readline.html#readline-exampleXExampletr8 Xuse_2to3r9 (hhX4http://docs.python.org/howto/pyporting.html#use-2to3XPython 2 and 2to3tr: Xoptparse-callback-example-5r; (hhXHhttp://docs.python.org/library/optparse.html#optparse-callback-example-5X#Callback example 5: fixed argumentstr< Xinstall-data-cmdr= (hhXAhttp://docs.python.org/distutils/commandref.html#install-data-cmdX install_datatr> Xoptparse-callback-example-6r? (hhXHhttp://docs.python.org/library/optparse.html#optparse-callback-example-6X&Callback example 6: variable argumentstr@ Xoptparse-callback-example-1rA (hhXHhttp://docs.python.org/library/optparse.html#optparse-callback-example-1X$Callback example 1: trivial callbacktrB Xoptparse-callback-example-3rC (hhXHhttp://docs.python.org/library/optparse.html#optparse-callback-example-3X4Callback example 3: check option order (generalized)trD Xoptparse-callback-example-2rE (hhXHhttp://docs.python.org/library/optparse.html#optparse-callback-example-2X&Callback example 2: check option ordertrF X developmentrG (hhX;http://docs.python.org/library/development.html#developmentXDevelopment ToolstrH X indentationrI (hhXBhttp://docs.python.org/reference/lexical_analysis.html#indentationX IndentationtrJ X assignmentrK (hhX=http://docs.python.org/reference/simple_stmts.html#assignmentXAssignment statementstrL X setup-scriptrM (hhX>http://docs.python.org/distutils/setupscript.html#setup-scriptXWriting the Setup ScripttrN X custom-levelsrO (hhX7http://docs.python.org/howto/logging.html#custom-levelsX Custom LevelstrP XlevelsrQ (hhX2http://docs.python.org/library/logging.html#levelsXLogging LevelstrR Xinst-platform-variationsrS (hhXBhttp://docs.python.org/install/index.html#inst-platform-variationsXPlatform variationstrT Xasynchat-examplerU (hhX=http://docs.python.org/library/asynchat.html#asynchat-exampleXasynchat ExampletrV Xosx-gui-scriptsrW (hhX5http://docs.python.org/using/mac.html#osx-gui-scriptsXRunning scripts with a GUItrX Xoptparse-standard-option-typesrY (hhXKhttp://docs.python.org/library/optparse.html#optparse-standard-option-typesXStandard option typestrZ Xinst-config-syntaxr[ (hhX<http://docs.python.org/install/index.html#inst-config-syntaxXSyntax of config filestr\ Xprofile-timersr] (hhX:http://docs.python.org/library/profile.html#profile-timersXUsing a custom timertr^ Xprogramsr_ (hhXBhttp://docs.python.org/reference/toplevel_components.html#programsXComplete Python programstr` Xoptparse-store-actionra (hhXBhttp://docs.python.org/library/optparse.html#optparse-store-actionXThe store actiontrb Xconcreterc (hhX3http://docs.python.org/c-api/concrete.html#concreteXConcrete Objects Layertrd Xattribute-referencesre (hhXFhttp://docs.python.org/reference/expressions.html#attribute-referencesXAttribute referencestrf Xhttpconnection-objectsrg (hhXBhttp://docs.python.org/library/httplib.html#httpconnection-objectsXHTTPConnection Objectstrh Xopener-director-objectsri (hhXChttp://docs.python.org/library/urllib2.html#opener-director-objectsXOpenerDirector Objectstrj Xthinicerk (hhX7http://docs.python.org/extending/extending.html#thiniceXThin Icetrl Xscreenspecificrm (hhX9http://docs.python.org/library/turtle.html#screenspecificX;Methods specific to Screen, not inherited from TurtleScreentrn X augassignro (hhX<http://docs.python.org/reference/simple_stmts.html#augassignXAugmented assignment statementstrp Xoptparse-generating-helprq (hhXEhttp://docs.python.org/library/optparse.html#optparse-generating-helpXGenerating helptrr X callingpythonrs (hhX=http://docs.python.org/extending/extending.html#callingpythonXCalling Python Functions from Ctrt Xuse_3to2ru (hhX4http://docs.python.org/howto/pyporting.html#use-3to2XPython 3 and 3to2trv X typesinternalrw (hhX:http://docs.python.org/library/stdtypes.html#typesinternalXInternal Objectstrx Xoption-flags-and-directivesry (hhXGhttp://docs.python.org/library/doctest.html#option-flags-and-directivesX Option Flagstrz Xmodule-contextlibr{ (hhX:http://docs.python.org/whatsnew/2.6.html#module-contextlibXThe contextlib moduletr| Xctypes-callback-functionsr} (hhXDhttp://docs.python.org/library/ctypes.html#ctypes-callback-functionsXCallback functionstr~ X link-reqsr (hhX9http://docs.python.org/extending/embedding.html#link-reqsX-Compiling and Linking under Unix-like systemstr X api-refcountsr (hhX5http://docs.python.org/c-api/intro.html#api-refcountsXReference Countstr X!distutils-installing-package-datar (hhXShttp://docs.python.org/distutils/setupscript.html#distutils-installing-package-dataXInstalling Package Datatr Xmixer-device-objectsr (hhXDhttp://docs.python.org/library/ossaudiodev.html#mixer-device-objectsXMixer Device Objectstr Xbltin-ellipsis-objectr (hhXBhttp://docs.python.org/library/stdtypes.html#bltin-ellipsis-objectXThe Ellipsis Objecttr Xbytearrayobjectsr (hhX<http://docs.python.org/c-api/bytearray.html#bytearrayobjectsXByte Array Objectstr Xwarning-suppressr (hhX=http://docs.python.org/library/warnings.html#warning-suppressX Temporarily Suppressing Warningstr Xproxy-digest-auth-handlerr (hhXEhttp://docs.python.org/library/urllib2.html#proxy-digest-auth-handlerXProxyDigestAuthHandler Objectstr Xlogical_operands_labelr (hhXBhttp://docs.python.org/library/decimal.html#logical-operands-labelXLogical operandstr X tut-filesr (hhX:http://docs.python.org/tutorial/inputoutput.html#tut-filesXReading and Writing Filestr Xargparse-from-optparser (hhXChttp://docs.python.org/library/argparse.html#argparse-from-optparseXUpgrading optparse codetr X floatobjectsr (hhX4http://docs.python.org/c-api/float.html#floatobjectsXFloating Point Objectstr Xfrequently-used-argumentsr (hhXHhttp://docs.python.org/library/subprocess.html#frequently-used-argumentsXFrequently Used Argumentstr Xsequence-methodsr (hhX@http://docs.python.org/reference/datamodel.html#sequence-methodsX2Additional methods for emulation of sequence typestr X&ctypes-bit-fields-in-structures-unionsr (hhXQhttp://docs.python.org/library/ctypes.html#ctypes-bit-fields-in-structures-unionsX#Bit fields in structures and unionstr X proxy-handlerr (hhX9http://docs.python.org/library/urllib2.html#proxy-handlerXProxyHandler Objectstr Xembeddingincplusplusr (hhXDhttp://docs.python.org/extending/embedding.html#embeddingincplusplusXEmbedding Python in C++tr Xmemoryoverviewr (hhX7http://docs.python.org/c-api/memory.html#memoryoverviewXOverviewtr Xmanifestr (hhX9http://docs.python.org/distutils/sourcedist.html#manifestX"Specifying the files to distributetr Xcontinuer (hhX;http://docs.python.org/reference/simple_stmts.html#continueXThe continue statementtr X tut-fp-issuesr (hhX@http://docs.python.org/tutorial/floatingpoint.html#tut-fp-issuesX2Floating Point Arithmetic: Issues and Limitationstr Xxmlparser-objectsr (hhX=http://docs.python.org/library/pyexpat.html#xmlparser-objectsXXMLParser Objectstr Xdecimal-decimalr (hhX;http://docs.python.org/library/decimal.html#decimal-decimalXDecimal objectstr Xoptparse-reference-guider (hhXEhttp://docs.python.org/library/optparse.html#optparse-reference-guideXReference Guidetr Xformatter-interfacer (hhXAhttp://docs.python.org/library/formatter.html#formatter-interfaceXThe Formatter Interfacetr X msi-errorsr (hhX5http://docs.python.org/library/msilib.html#msi-errorsXErrorstr X event-objectsr (hhX;http://docs.python.org/library/threading.html#event-objectsX Event Objectstr Xtut-list-toolsr (hhX;http://docs.python.org/tutorial/stdlib2.html#tut-list-toolsXTools for Working with Liststr Xexamplesr (hhX7http://docs.python.org/distutils/examples.html#examplesXExamplestr X msvcrt-filesr (hhX7http://docs.python.org/library/msvcrt.html#msvcrt-filesXFile Operationstr Xpep-328r (hhX0http://docs.python.org/whatsnew/2.5.html#pep-328X&PEP 328: Absolute and Relative Importstr Xpep-3116r (hhX1http://docs.python.org/whatsnew/2.6.html#pep-3116XPEP 3116: New I/O Librarytr Xforr (hhX8http://docs.python.org/reference/compound_stmts.html#forXThe for statementtr X mailbox-babylr (hhX9http://docs.python.org/library/mailbox.html#mailbox-babylXBabyltr Xcommentsr (hhX?http://docs.python.org/reference/lexical_analysis.html#commentsXCommentstr Xpprint-exampler (hhX9http://docs.python.org/library/pprint.html#pprint-exampleXpprint Exampletr Xhttp-digest-auth-handlerr (hhXDhttp://docs.python.org/library/urllib2.html#http-digest-auth-handlerXHTTPDigestAuthHandler Objectstr Xundocr (hhX/http://docs.python.org/library/undoc.html#undocXUndocumented Modulestr Xtut-keybindingsr (hhX@http://docs.python.org/tutorial/interactive.html#tut-keybindingsX Key Bindingstr Xabstract-grammarr (hhX8http://docs.python.org/library/ast.html#abstract-grammarXAbstract Grammartr Xsection-slicesr (hhX7http://docs.python.org/whatsnew/2.3.html#section-slicesXExtended Slicestr Xcodec-base-classesr (hhX=http://docs.python.org/library/codecs.html#codec-base-classesXCodec Base Classestr X subscriptionsr (hhX?http://docs.python.org/reference/expressions.html#subscriptionsX Subscriptionstr Xhttp-handler-objectsr (hhX@http://docs.python.org/library/urllib2.html#http-handler-objectsXHTTPHandler Objectstr Xelementtree-elementtree-objectsr (hhXYhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-elementtree-objectsXElementTree Objectstr Ximmutable-transformsr (hhX=http://docs.python.org/library/sets.html#immutable-transformsX.Protocol for automatic conversion to immutabletr Xminidom-objectsr (hhXChttp://docs.python.org/library/xml.dom.minidom.html#minidom-objectsX DOM Objectstr Xshiftingr (hhX:http://docs.python.org/reference/expressions.html#shiftingXShifting operationstr X os-newstreamsr (hhX4http://docs.python.org/library/os.html#os-newstreamsXFile Object Creationtr Xtut-standardmodulesr (hhX@http://docs.python.org/tutorial/modules.html#tut-standardmodulesXStandard Modulestr Xfpectl-limitationsr (hhX=http://docs.python.org/library/fpectl.html#fpectl-limitationsX$Limitations and other considerationstr Xparsetupleandkeywordsr (hhXEhttp://docs.python.org/extending/extending.html#parsetupleandkeywordsX*Keyword Parameters for Extension Functionstr Xintegersr (hhX?http://docs.python.org/reference/lexical_analysis.html#integersX!Integer and long integer literalstr X using-on-unixr (hhX4http://docs.python.org/using/unix.html#using-on-unixXUsing Python on Unix platformstr X conversionsr (hhX=http://docs.python.org/reference/expressions.html#conversionsXArithmetic conversionstr Xoptparse-callback-example-4r (hhXHhttp://docs.python.org/library/optparse.html#optparse-callback-example-4X-Callback example 4: check arbitrary conditiontr Xsafeconfigparser-objectsr (hhXIhttp://docs.python.org/library/configparser.html#safeconfigparser-objectsXSafeConfigParser Objectstr Xoptparse-other-methodsr (hhXChttp://docs.python.org/library/optparse.html#optparse-other-methodsX Other methodstr Xstream-handlerr (hhXChttp://docs.python.org/library/logging.handlers.html#stream-handlerX StreamHandlertr Xpackage-displayr (hhXBhttp://docs.python.org/distutils/packageindex.html#package-displayXPyPI package displaytr Xider (hhX)http://docs.python.org/using/mac.html#ideXThe IDEtr Xsemaphore-examplesr (hhX@http://docs.python.org/library/threading.html#semaphore-examplesXSemaphore Exampletr X module-sqliter (hhX6http://docs.python.org/whatsnew/2.5.html#module-sqliteXThe sqlite3 packagetr Xsqlite3-connection-objectsr (hhXFhttp://docs.python.org/library/sqlite3.html#sqlite3-connection-objectsXConnection Objectstr Xlibrary-configr (hhX8http://docs.python.org/howto/logging.html#library-configX!Configuring Logging for a Librarytr Xlower-level-embeddingr (hhXEhttp://docs.python.org/extending/embedding.html#lower-level-embeddingX-Beyond Very High Level Embedding: An overviewtr Xproxy-basic-auth-handlerr (hhXDhttp://docs.python.org/library/urllib2.html#proxy-basic-auth-handlerXProxyBasicAuthHandler Objectstr Xctypes-passing-pointersr (hhXBhttp://docs.python.org/library/ctypes.html#ctypes-passing-pointersX6Passing pointers (or: passing parameters by reference)tr X csv-contentsr (hhX4http://docs.python.org/library/csv.html#csv-contentsXModule Contentstr Xformatter-objectsr (hhX=http://docs.python.org/library/logging.html#formatter-objectsXFormatter Objectstr Xlogging-config-dict-incrementalr (hhXRhttp://docs.python.org/library/logging.config.html#logging-config-dict-incrementalXIncremental Configurationtr Xreporting-bugsr (hhX/http://docs.python.org/bugs.html#reporting-bugsXReporting Bugstr Xclassr (hhX:http://docs.python.org/reference/compound_stmts.html#classXClass definitionstr Xnt-eventlog-handlerr (hhXHhttp://docs.python.org/library/logging.handlers.html#nt-eventlog-handlerXNTEventLogHandlertr Xwatched-file-handlerr (hhXIhttp://docs.python.org/library/logging.handlers.html#watched-file-handlerXWatchedFileHandlertr X section-otherr (hhX6http://docs.python.org/whatsnew/2.3.html#section-otherXOther Changes and Fixestr Xexpaterror-objectsr (hhX>http://docs.python.org/library/pyexpat.html#expaterror-objectsXExpatError Exceptionstr Xdebugger-commandsr (hhX9http://docs.python.org/library/pdb.html#debugger-commandsXDebugger Commandstr X tut-cleanupr (hhX7http://docs.python.org/tutorial/errors.html#tut-cleanupXDefining Clean-up Actionstr Xdoctest-debuggingr (hhX=http://docs.python.org/library/doctest.html#doctest-debuggingX Debuggingtr X library-intror (hhX7http://docs.python.org/library/intro.html#library-introX Introductiontr Xcallable-typesr! (hhX>http://docs.python.org/reference/datamodel.html#callable-typesXEmulating callable objectstr" X tut-customizer# (hhX>http://docs.python.org/tutorial/interpreter.html#tut-customizeXThe Customization Modulestr$ Xweakref-objectsr% (hhX;http://docs.python.org/library/weakref.html#weakref-objectsXWeak Reference Objectstr& Xunittest-test-discoveryr' (hhXDhttp://docs.python.org/library/unittest.html#unittest-test-discoveryXTest Discoverytr( Xdtd-handler-objectsr) (hhXGhttp://docs.python.org/library/xml.sax.handler.html#dtd-handler-objectsXDTDHandler Objectstr* X%optparse-understanding-option-actionsr+ (hhXRhttp://docs.python.org/library/optparse.html#optparse-understanding-option-actionsXUnderstanding option actionstr, X forms-objectsr- (hhX4http://docs.python.org/library/fl.html#forms-objectsX FORMS Objectstr. X tut-breakr/ (hhX:http://docs.python.org/tutorial/controlflow.html#tut-breakX8break and continue Statements, and else Clauses on Loopstr0 Xelementtree-treebuilder-objectsr1 (hhXYhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-treebuilder-objectsXTreeBuilder Objectstr2 X imap4-exampler3 (hhX9http://docs.python.org/library/imaplib.html#imap4-exampleX IMAP4 Exampletr4 Xsocket-exampler5 (hhX9http://docs.python.org/library/socket.html#socket-exampleXExampletr6 Xtut-file-wildcardsr7 (hhX>http://docs.python.org/tutorial/stdlib.html#tut-file-wildcardsXFile Wildcardstr8 Xtelnet-exampler9 (hhX<http://docs.python.org/library/telnetlib.html#telnet-exampleXTelnet Exampletr: X creating-rpmsr; (hhX=http://docs.python.org/distutils/builtdist.html#creating-rpmsXCreating RPM packagestr< X poll-objectsr= (hhX7http://docs.python.org/library/select.html#poll-objectsXPolling Objectstr> Xelementtree-sectionr? (hhX<http://docs.python.org/whatsnew/2.7.html#elementtree-sectionXUpdated module: ElementTree 1.3tr@ X formatstringsrA (hhX8http://docs.python.org/library/string.html#formatstringsXFormat String SyntaxtrB X fileobjectsrC (hhX2http://docs.python.org/c-api/file.html#fileobjectsX File ObjectstrD Xmultiple-processesrE (hhXEhttp://docs.python.org/howto/logging-cookbook.html#multiple-processesX0Logging to a single file from multiple processestrF Xxml-vulnerabilitiesrG (hhX;http://docs.python.org/library/xml.html#xml-vulnerabilitiesXXML vulnerabilitiestrH XabstractrI (hhX3http://docs.python.org/c-api/abstract.html#abstractXAbstract Objects LayertrJ X tut-listsrK (hhX;http://docs.python.org/tutorial/introduction.html#tut-listsXListstrL Xcoercion-rulesrM (hhX>http://docs.python.org/reference/datamodel.html#coercion-rulesXCoercion rulestrN X typesmappingrO (hhX9http://docs.python.org/library/stdtypes.html#typesmappingXMapping Types --- dicttrP X!optparse-handling-boolean-optionsrQ (hhXNhttp://docs.python.org/library/optparse.html#optparse-handling-boolean-optionsXHandling boolean (flag) optionstrR X shlex-objectsrS (hhX7http://docs.python.org/library/shlex.html#shlex-objectsX shlex ObjectstrT Xconfigparser-objectsrU (hhXEhttp://docs.python.org/library/configparser.html#configparser-objectsXConfigParser ObjectstrV Xcurses-panel-objectsrW (hhXEhttp://docs.python.org/library/curses.panel.html#curses-panel-objectsX Panel ObjectstrX XphysicalrY (hhX?http://docs.python.org/reference/lexical_analysis.html#physicalXPhysical linestrZ Xcookie-objectsr[ (hhX9http://docs.python.org/library/cookie.html#cookie-objectsXCookie Objectstr\ Xboolean-objectsr] (hhX=http://docs.python.org/library/xmlrpclib.html#boolean-objectsXBoolean Objectstr^ Xtut-pkg-import-starr_ (hhX@http://docs.python.org/tutorial/modules.html#tut-pkg-import-starXImporting * From a Packagetr` Xstring-conversionra (hhX>http://docs.python.org/c-api/conversion.html#string-conversionX String conversion and formattingtrb Xtut-firstclassesrc (hhX=http://docs.python.org/tutorial/classes.html#tut-firstclassesXA First Look at Classestrd Xdircmp-objectsre (hhX:http://docs.python.org/library/filecmp.html#dircmp-objectsXThe dircmp classtrf X dnt-basicsrg (hhX9http://docs.python.org/extending/newtypes.html#dnt-basicsX The Basicstrh Xdiffer-examplesri (hhX;http://docs.python.org/library/difflib.html#differ-examplesXDiffer Exampletrj X operatorsrk (hhX@http://docs.python.org/reference/lexical_analysis.html#operatorsX Operatorstrl Xfunctions-in-cgi-modulerm (hhX?http://docs.python.org/library/cgi.html#functions-in-cgi-moduleX Functionstrn X tut-listcompsro (hhXAhttp://docs.python.org/tutorial/datastructures.html#tut-listcompsXList Comprehensionstrp Xatexit-examplerq (hhX9http://docs.python.org/library/atexit.html#atexit-exampleXatexit Exampletrr Xinst-building-extrs (hhX;http://docs.python.org/install/index.html#inst-building-extX$Building Extensions: Tips and Trickstrt X codec-objectsru (hhX8http://docs.python.org/library/codecs.html#codec-objectsX Codec Objectstrv X utilitiesrw (hhX5http://docs.python.org/c-api/utilities.html#utilitiesX Utilitiestrx Xdoctest-unittest-apiry (hhX@http://docs.python.org/library/doctest.html#doctest-unittest-apiX Unittest APItrz X setobjectsr{ (hhX0http://docs.python.org/c-api/set.html#setobjectsX Set Objectstr| X yieldexprr} (hhX;http://docs.python.org/reference/expressions.html#yieldexprXYield expressionstr~ Xlegacy-unit-testsr (hhX>http://docs.python.org/library/unittest.html#legacy-unit-testsXRe-using old test codetr Xinspect-sourcer (hhX:http://docs.python.org/library/inspect.html#inspect-sourceXRetrieving source codetr X datetime-timer (hhX:http://docs.python.org/library/datetime.html#datetime-timeX time Objectstr Xcompleter-objectsr (hhXAhttp://docs.python.org/library/rlcompleter.html#completer-objectsXCompleter Objectstr Xcurses-window-objectsr (hhX@http://docs.python.org/library/curses.html#curses-window-objectsXWindow Objectstr X2to3-referencer (hhX6http://docs.python.org/library/2to3.html#to3-referenceX/2to3 - Automated Python 2 to 3 code translationtr Xmodulesr (hhX3http://docs.python.org/library/modules.html#modulesXImporting Modulestr X mailbox-mboxr (hhX8http://docs.python.org/library/mailbox.html#mailbox-mboxXmboxtr Xarbitrary-object-messagesr (hhXChttp://docs.python.org/howto/logging.html#arbitrary-object-messagesX#Using arbitrary objects as messagestr Xoptparse-extending-optparser (hhXHhttp://docs.python.org/library/optparse.html#optparse-extending-optparseXExtending optparsetr Xdescribing-extensionsr (hhXGhttp://docs.python.org/distutils/setupscript.html#describing-extensionsXDescribing extension modulestr Xunittest-minimal-exampler (hhXEhttp://docs.python.org/library/unittest.html#unittest-minimal-exampleX Basic exampletr Xiteratorr (hhX/http://docs.python.org/c-api/iter.html#iteratorXIterator Protocoltr Xexpression-inputr (hhXJhttp://docs.python.org/reference/toplevel_components.html#expression-inputXExpression inputtr Xglobalr (hhX9http://docs.python.org/reference/simple_stmts.html#globalXThe global statementtr X$optparse-how-optparse-handles-errorsr (hhXQhttp://docs.python.org/library/optparse.html#optparse-how-optparse-handles-errorsXHow optparse handles errorstr Xhttp-error-processor-objectsr (hhXHhttp://docs.python.org/library/urllib2.html#http-error-processor-objectsXHTTPErrorProcessor Objectstr X bufferobjectsr (hhX6http://docs.python.org/c-api/buffer.html#bufferobjectsXBuffers and Memoryview Objectstr Xtypememoryviewr (hhX;http://docs.python.org/library/stdtypes.html#typememoryviewXmemoryview typetr Xlocator-objectsr (hhXBhttp://docs.python.org/library/xml.sax.reader.html#locator-objectsXLocator Objectstr Xpopen2-flow-controlr (hhX>http://docs.python.org/library/popen2.html#popen2-flow-controlXFlow Control Issuestr X"ctypes-calling-functions-continuedr (hhXMhttp://docs.python.org/library/ctypes.html#ctypes-calling-functions-continuedXCalling functions, continuedtr Xnon-essential-built-in-funcsr (hhXJhttp://docs.python.org/library/functions.html#non-essential-built-in-funcsX Non-essential Built-in Functionstr Xssl-certificatesr (hhX8http://docs.python.org/library/ssl.html#ssl-certificatesX Certificatestr X smtp-exampler (hhX8http://docs.python.org/library/smtplib.html#smtp-exampleX SMTP Exampletr Xtut-inheritancer (hhX<http://docs.python.org/tutorial/classes.html#tut-inheritanceX Inheritancetr Xsection-pep307r (hhX7http://docs.python.org/whatsnew/2.3.html#section-pep307XPEP 307: Pickle Enhancementstr X install-indexr (hhX7http://docs.python.org/install/index.html#install-indexXInstalling Python Modulestr Xdistutils-termr (hhXAhttp://docs.python.org/distutils/introduction.html#distutils-termXDistutils-specific terminologytr X meta-datar (hhX;http://docs.python.org/distutils/setupscript.html#meta-dataXAdditional meta-datatr Xfinallyr (hhX<http://docs.python.org/reference/compound_stmts.html#finallyXThe try statementtr Xtut-decimal-fpr (hhX;http://docs.python.org/tutorial/stdlib2.html#tut-decimal-fpX!Decimal Floating Point Arithmetictr X socket-howtor (hhX6http://docs.python.org/howto/sockets.html#socket-howtoXSocket Programming HOWTOtr X api-debuggingr (hhX5http://docs.python.org/c-api/intro.html#api-debuggingXDebugging Buildstr Xtut-mathematicsr (hhX;http://docs.python.org/tutorial/stdlib.html#tut-mathematicsX Mathematicstr Xsupporting-cycle-detectionr (hhXFhttp://docs.python.org/c-api/gcsupport.html#supporting-cycle-detectionX$Supporting Cyclic Garbage Collectiontr X typesmodulesr (hhX9http://docs.python.org/library/stdtypes.html#typesmodulesXModulestr Xbooleansr (hhX:http://docs.python.org/reference/expressions.html#booleansXBoolean operationstr Xsemaphore-objectsr (hhX?http://docs.python.org/library/threading.html#semaphore-objectsXSemaphore Objectstr Xdescriptor-invocationr (hhXEhttp://docs.python.org/reference/datamodel.html#descriptor-invocationXInvoking Descriptorstr X expat-errorsr (hhX8http://docs.python.org/library/pyexpat.html#expat-errorsXExpat error constantstr Xcompoundshapesr (hhX9http://docs.python.org/library/turtle.html#compoundshapesX)Excursus about the use of compound shapestr X metaclassesr (hhX;http://docs.python.org/reference/datamodel.html#metaclassesXCustomizing class creationtr X inst-intror (hhX4http://docs.python.org/install/index.html#inst-introX Introductiontr X tut-modulesr (hhX8http://docs.python.org/tutorial/modules.html#tut-modulesXModulestr Xcomplexobjectsr (hhX8http://docs.python.org/c-api/complex.html#complexobjectsXComplex Number Objectstr X api-objectsr (hhX3http://docs.python.org/c-api/intro.html#api-objectsX#Objects, Types and Reference Countstr X pop3-objectsr (hhX7http://docs.python.org/library/poplib.html#pop3-objectsX POP3 Objectstr Xextending-simpleexampler (hhXGhttp://docs.python.org/extending/extending.html#extending-simpleexampleXA Simple Exampletr X set-exampler (hhX4http://docs.python.org/library/sets.html#set-exampleXExampletr Xtryr (hhX8http://docs.python.org/reference/compound_stmts.html#tryXThe try statementtr Xtut-defaultargsr (hhX@http://docs.python.org/tutorial/controlflow.html#tut-defaultargsXDefault Argument Valuestr X otherobjectsr (hhX7http://docs.python.org/c-api/concrete.html#otherobjectsX Other Objectstr Xmultifile-exampler (hhX?http://docs.python.org/library/multifile.html#multifile-exampleXMultiFile Exampletr Xdictr (hhX6http://docs.python.org/reference/expressions.html#dictXDictionary displaystr Xhistory-and-licenser (hhX7http://docs.python.org/license.html#history-and-licenseXHistory and Licensetr X tut-brieftourr (hhX9http://docs.python.org/tutorial/stdlib.html#tut-brieftourX"Brief Tour of the Standard Librarytr X fl-functionsr (hhX3http://docs.python.org/library/fl.html#fl-functionsXFunctions Defined in Module fltr X tar-examplesr (hhX8http://docs.python.org/library/tarfile.html#tar-examplesXExamplestr X set-objectsr (hhX4http://docs.python.org/library/sets.html#set-objectsX Set Objectstr Xembedding-localer (hhX;http://docs.python.org/library/locale.html#embedding-localeX4For extension writers and programs that embed Pythontr Xapi-exceptionsr (hhX6http://docs.python.org/c-api/intro.html#api-exceptionsX Exceptionstr Xopen-constantsr (hhX5http://docs.python.org/library/os.html#open-constantsXopen() flag constantstr Xnew-string-formattingr (hhX@http://docs.python.org/library/string.html#new-string-formattingXString Formattingtr X module-ctypesr (hhX6http://docs.python.org/whatsnew/2.5.html#module-ctypesXThe ctypes packagetrXdoctest-directivesr(hhX>http://docs.python.org/library/doctest.html#doctest-directivesX DirectivestrXitertools-recipesr(hhX?http://docs.python.org/library/itertools.html#itertools-recipesXRecipestrX!collections-abstract-base-classesr(hhXQhttp://docs.python.org/library/collections.html#collections-abstract-base-classesX!Collections Abstract Base ClassestrXdatetime-tzinfor(hhX<http://docs.python.org/library/datetime.html#datetime-tzinfoXtzinfo ObjectstrXmultiprocessing-programmingr (hhXOhttp://docs.python.org/library/multiprocessing.html#multiprocessing-programmingXProgramming guidelinestr Xsax-exception-objectsr (hhXAhttp://docs.python.org/library/xml.sax.html#sax-exception-objectsXSAXException Objectstr X imap4-objectsr (hhX9http://docs.python.org/library/imaplib.html#imap4-objectsX IMAP4 ObjectstrXlogging-config-apir(hhXEhttp://docs.python.org/library/logging.config.html#logging-config-apiXConfiguration functionstrXpep-353r(hhX0http://docs.python.org/whatsnew/2.5.html#pep-353X(PEP 353: Using ssize_t as the index typetrXpep-352r(hhX0http://docs.python.org/whatsnew/2.5.html#pep-352X(PEP 352: Exceptions as New-Style ClassestrXobjectsr(hhX7http://docs.python.org/reference/datamodel.html#objectsXObjects, values and typestrXpep-357r(hhX0http://docs.python.org/whatsnew/2.5.html#pep-357XPEP 357: The '__index__' methodtrXurllib-examplesr(hhX:http://docs.python.org/library/urllib.html#urllib-examplesXExamplestrXpackage-registerr(hhXChttp://docs.python.org/distutils/packageindex.html#package-registerXRegistering PackagestrXdoctest-exceptionsr(hhX>http://docs.python.org/library/doctest.html#doctest-exceptionsXWhat About Exceptions?trX creating-stsr(hhX7http://docs.python.org/library/parser.html#creating-stsXCreating ST Objectstr X tut-loggingr!(hhX8http://docs.python.org/tutorial/stdlib2.html#tut-loggingXLoggingtr"Xhkey-constantsr#(hhX:http://docs.python.org/library/_winreg.html#hkey-constantsXHKEY_* Constantstr$Xdatetime-objectsr%(hhX>http://docs.python.org/library/xmlrpclib.html#datetime-objectsXDateTime Objectstr&X with-locksr'(hhX8http://docs.python.org/library/threading.html#with-locksX=Using locks, conditions, and semaphores in the with statementtr(Xdecimal-signalsr)(hhX;http://docs.python.org/library/decimal.html#decimal-signalsXSignalstr*Xtut-lists-as-stacksr+(hhXGhttp://docs.python.org/tutorial/datastructures.html#tut-lists-as-stacksXUsing Lists as Stackstr,Xipcr-(hhX+http://docs.python.org/library/ipc.html#ipcX)Interprocess Communication and Networkingtr.X tut-privater/(hhX8http://docs.python.org/tutorial/classes.html#tut-privateX,Private Variables and Class-local Referencestr0Xos-pathr1(hhX.http://docs.python.org/library/os.html#os-pathX Miscellaneous System Informationtr2Xoptparse-default-valuesr3(hhXDhttp://docs.python.org/library/optparse.html#optparse-default-valuesXDefault valuestr4Xtut-cleanup-withr5(hhX<http://docs.python.org/tutorial/errors.html#tut-cleanup-withXPredefined Clean-up Actionstr6Xplayer-objectsr7(hhX5http://docs.python.org/library/cd.html#player-objectsXPlayer Objectstr8Xlogicalr9(hhX>http://docs.python.org/reference/lexical_analysis.html#logicalX Logical linestr:Xsgir;(hhX+http://docs.python.org/library/sgi.html#sgiXSGI IRIX Specific Servicestr<Xbooleanr=(hhX4http://docs.python.org/library/stdtypes.html#booleanX#Boolean Operations --- and, or, nottr>Xsequence-typesr?(hhX>http://docs.python.org/reference/datamodel.html#sequence-typesXEmulating container typestr@XnetdatarA(hhX3http://docs.python.org/library/netdata.html#netdataXInternet Data HandlingtrBXmailbox-babylmessagerC(hhX@http://docs.python.org/library/mailbox.html#mailbox-babylmessageX BabylMessagetrDXfpectl-examplerE(hhX9http://docs.python.org/library/fpectl.html#fpectl-exampleXExampletrFX exprstmtsrG(hhX<http://docs.python.org/reference/simple_stmts.html#exprstmtsXExpression statementstrHXsequence-matcherrI(hhX<http://docs.python.org/library/difflib.html#sequence-matcherXSequenceMatcher ObjectstrJXis notrK(hhX8http://docs.python.org/reference/expressions.html#is-notX ComparisonstrLX api-referencerM(hhX:http://docs.python.org/distutils/apiref.html#api-referenceX API ReferencetrNXfromrO(hhX7http://docs.python.org/reference/simple_stmts.html#fromXThe import statementtrPXhandlerrQ(hhX3http://docs.python.org/library/logging.html#handlerXHandler ObjectstrRXmemoryrS(hhX/http://docs.python.org/c-api/memory.html#memoryXMemory ManagementtrTXoptparse-defining-optionsrU(hhXFhttp://docs.python.org/library/optparse.html#optparse-defining-optionsXDefining optionstrVXtutorial-indexrW(hhX9http://docs.python.org/tutorial/index.html#tutorial-indexXThe Python TutorialtrXXextending-with-embeddingrY(hhXHhttp://docs.python.org/extending/embedding.html#extending-with-embeddingXExtending Embedded PythontrZXcross-compile-windowsr[(hhXEhttp://docs.python.org/distutils/builtdist.html#cross-compile-windowsXCross-compiling on Windowstr\Xctypes-ctypes-referencer](hhXBhttp://docs.python.org/library/ctypes.html#ctypes-ctypes-referenceXctypes referencetr^Xtut-arbitraryargsr_(hhXBhttp://docs.python.org/tutorial/controlflow.html#tut-arbitraryargsXArbitrary Argument Liststr`Xtypesseq-xrangera(hhX<http://docs.python.org/library/stdtypes.html#typesseq-xrangeX XRange TypetrbX mapobjectsrc(hhX5http://docs.python.org/c-api/concrete.html#mapobjectsXMapping ObjectstrdXdistutils-installing-scriptsre(hhXNhttp://docs.python.org/distutils/setupscript.html#distutils-installing-scriptsXInstalling ScriptstrfXdatagram-handlerrg(hhXEhttp://docs.python.org/library/logging.handlers.html#datagram-handlerXDatagramHandlertrhXrexec-extensionri(hhX9http://docs.python.org/library/rexec.html#rexec-extensionX Defining restricted environmentstrjXtut-filemethodsrk(hhX@http://docs.python.org/tutorial/inputoutput.html#tut-filemethodsXMethods of File ObjectstrlXcookie-examplerm(hhX9http://docs.python.org/library/cookie.html#cookie-exampleXExampletrnXweakref-supportro(hhX>http://docs.python.org/extending/newtypes.html#weakref-supportXWeak Reference SupporttrpX windows-faqrq(hhX3http://docs.python.org/faq/windows.html#windows-faqXPython on Windows FAQtrrX23acksrs(hhX-http://docs.python.org/whatsnew/2.3.html#acksXAcknowledgementstrtXdefault-cookie-policy-objectsru(hhXKhttp://docs.python.org/library/cookielib.html#default-cookie-policy-objectsXDefaultCookiePolicy ObjectstrvX win-cookbookrw(hhX:http://docs.python.org/extending/windows.html#win-cookbookXA Cookbook ApproachtrxXaeserver-objectsry(hhX@http://docs.python.org/library/miniaeframe.html#aeserver-objectsXAEServer ObjectstrzX types-setr{(hhX6http://docs.python.org/library/stdtypes.html#types-setXSet Types --- set, frozensettr|Xc-wrapper-softwarer}(hhX<http://docs.python.org/faq/extending.html#c-wrapper-softwareX.Writing C is hard; are there any alternatives?tr~Xinst-alt-installr(hhX:http://docs.python.org/install/index.html#inst-alt-installXAlternate InstallationtrXdoctest-exampler(hhX;http://docs.python.org/library/doctest.html#doctest-exampleXExample ObjectstrXcabr(hhX.http://docs.python.org/library/msilib.html#cabX CAB ObjectstrX tut-tuplesr(hhX>http://docs.python.org/tutorial/datastructures.html#tut-tuplesXTuples and SequencestrXpep-3101r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3101X$PEP 3101: Advanced String FormattingtrXdom-node-objectsr(hhX<http://docs.python.org/library/xml.dom.html#dom-node-objectsX Node ObjectstrXpep-3105r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3105XPEP 3105: print As a FunctiontrXnot inr(hhX8http://docs.python.org/reference/expressions.html#not-inX ComparisonstrX type-structsr(hhX6http://docs.python.org/c-api/typeobj.html#type-structsX Type ObjectstrXuseful-handlersr(hhX9http://docs.python.org/howto/logging.html#useful-handlersXUseful HandlerstrXsqlite3-module-contentsr(hhXChttp://docs.python.org/library/sqlite3.html#sqlite3-module-contentsXModule functions and constantstrXunicodeexceptionsr(hhX>http://docs.python.org/c-api/exceptions.html#unicodeexceptionsXUnicode Exception ObjectstrXsocket-objectsr(hhX9http://docs.python.org/library/socket.html#socket-objectsXSocket ObjectstrXpure-pkgr(hhX7http://docs.python.org/distutils/examples.html#pure-pkgX%Pure Python distribution (by package)trX typesnumericr(hhX9http://docs.python.org/library/stdtypes.html#typesnumericX+Numeric Types --- int, float, long, complextrXstring-catenationr(hhXHhttp://docs.python.org/reference/lexical_analysis.html#string-catenationXString literal concatenationtrXtut-methodobjectsr(hhX>http://docs.python.org/tutorial/classes.html#tut-methodobjectsXMethod ObjectstrXtut-instanceobjectsr(hhX@http://docs.python.org/tutorial/classes.html#tut-instanceobjectsXInstance ObjectstrX re-syntaxr(hhX0http://docs.python.org/library/re.html#re-syntaxXRegular Expression SyntaxtrXunicodeobjectsr(hhX8http://docs.python.org/c-api/unicode.html#unicodeobjectsXUnicode Objects and CodecstrXctypes-fundamental-data-types-2r(hhXJhttp://docs.python.org/library/ctypes.html#ctypes-fundamental-data-types-2XFundamental data typestrX tut-informalr(hhX>http://docs.python.org/tutorial/introduction.html#tut-informalX"An Informal Introduction to PythontrX getting-osxr(hhX1http://docs.python.org/using/mac.html#getting-osxX Getting and Installing MacPythontrXdeterministic-profilingr(hhXChttp://docs.python.org/library/profile.html#deterministic-profilingX What Is Deterministic Profiling?trXprofiler(hhX3http://docs.python.org/library/profile.html#profileXThe Python ProfilerstrXpyporting-howtor(hhX;http://docs.python.org/howto/pyporting.html#pyporting-howtoX!Porting Python 2 Code to Python 3trXgeneric-attribute-managementr(hhXKhttp://docs.python.org/extending/newtypes.html#generic-attribute-managementXGeneric Attribute ManagementtrXbltin-type-objectsr(hhX?http://docs.python.org/library/stdtypes.html#bltin-type-objectsX Type ObjectstrX tupleobjectsr(hhX4http://docs.python.org/c-api/tuple.html#tupleobjectsX Tuple ObjectstrXtut-classobjectsr(hhX=http://docs.python.org/tutorial/classes.html#tut-classobjectsX Class ObjectstrXtut-userexceptionsr(hhX>http://docs.python.org/tutorial/errors.html#tut-userexceptionsXUser-defined ExceptionstrX longobjectsr(hhX2http://docs.python.org/c-api/long.html#longobjectsXLong Integer ObjectstrX pop3-exampler(hhX7http://docs.python.org/library/poplib.html#pop3-exampleX POP3 ExampletrXwhy-selfr(hhX/http://docs.python.org/faq/design.html#why-selfXCWhy must 'self' be used explicitly in method definitions and calls?trXcommand-line-interfacer(hhXAhttp://docs.python.org/library/timeit.html#command-line-interfaceXCommand-Line InterfacetrXcurses-textpad-objectsr(hhXAhttp://docs.python.org/library/curses.html#curses-textpad-objectsXTextbox objectstrX tut-raisingr(hhX7http://docs.python.org/tutorial/errors.html#tut-raisingXRaising ExceptionstrXallosr(hhX/http://docs.python.org/library/allos.html#allosX!Generic Operating System ServicestrXdom-accessor-methodsr(hhX@http://docs.python.org/library/xml.dom.html#dom-accessor-methodsXAccessor MethodstrXinst-config-filenamesr(hhX?http://docs.python.org/install/index.html#inst-config-filenamesX"Location and names of config filestrXoptsr(hhX-http://docs.python.org/whatsnew/2.5.html#optsX OptimizationstrXelifr(hhX9http://docs.python.org/reference/compound_stmts.html#elifXThe if statementtrXdnt-type-methodsr(hhX?http://docs.python.org/extending/newtypes.html#dnt-type-methodsX Type MethodstrXmodule-wsgirefr(hhX7http://docs.python.org/whatsnew/2.5.html#module-wsgirefXThe wsgiref packagetrXdoctest-doctestparserr(hhXAhttp://docs.python.org/library/doctest.html#doctest-doctestparserXDocTestParser objectstrX 2to3-fixersr(hhX3http://docs.python.org/library/2to3.html#to3-fixersXFixerstrX sect-rellinksr(hhX6http://docs.python.org/whatsnew/2.2.html#sect-rellinksX Related LinkstrXlogging-config-fileformatr(hhXLhttp://docs.python.org/library/logging.config.html#logging-config-fileformatXConfiguration file formattrX ctypes-variable-sized-data-typesr(hhXKhttp://docs.python.org/library/ctypes.html#ctypes-variable-sized-data-typesXVariable-sized data typestrXunknown-handler-objectsr(hhXChttp://docs.python.org/library/urllib2.html#unknown-handler-objectsXUnknownHandler ObjectstrXdom-conformancer(hhX;http://docs.python.org/library/xml.dom.html#dom-conformanceX ConformancetrX tut-errorsr(hhX6http://docs.python.org/tutorial/errors.html#tut-errorsXErrors and ExceptionstrXoptparse-adding-new-actionsr(hhXHhttp://docs.python.org/library/optparse.html#optparse-adding-new-actionsXAdding new actionstrX slice-objectsr(hhX5http://docs.python.org/c-api/slice.html#slice-objectsX Slice ObjectstrX tut-classesr(hhX8http://docs.python.org/tutorial/classes.html#tut-classesXClassestrX 2to3-usingr(hhX2http://docs.python.org/library/2to3.html#to3-usingX Using 2to3trXhotshot-exampler(hhX;http://docs.python.org/library/hotshot.html#hotshot-exampleX Example UsagetrXsignal-exampler(hhX9http://docs.python.org/library/signal.html#signal-exampleXExampletrXpythonr(hhX1http://docs.python.org/library/python.html#pythonXPython Runtime ServicestrXprofiler-introductionr(hhXAhttp://docs.python.org/library/profile.html#profiler-introductionXIntroduction to the profilerstrXoptparse-populating-parserr(hhXGhttp://docs.python.org/library/optparse.html#optparse-populating-parserXPopulating the parsertrXnotr(hhX5http://docs.python.org/reference/expressions.html#notXBoolean operationstrX package-indexr(hhX@http://docs.python.org/distutils/packageindex.html#package-indexXThe Python Package Index (PyPI)trXdoctest-doctestr(hhX;http://docs.python.org/library/doctest.html#doctest-doctestXDocTest ObjectstrXcryptor(hhX1http://docs.python.org/library/crypto.html#cryptoXCryptographic ServicestrX smtp-objectsr(hhX8http://docs.python.org/library/smtplib.html#smtp-objectsX SMTP ObjectstrXbltin-exceptionsr(hhX?http://docs.python.org/library/exceptions.html#bltin-exceptionsXBuilt-in ExceptionstrXtut-dirr(hhX4http://docs.python.org/tutorial/modules.html#tut-dirXThe dir() FunctiontrX handler-basicr(hhX7http://docs.python.org/howto/logging.html#handler-basicXHandlerstrX)ctypes-specifying-required-argument-typesr (hhXThttp://docs.python.org/library/ctypes.html#ctypes-specifying-required-argument-typesX<Specifying the required argument types (function prototypes)tr Xsqlite3-row-objectsr (hhX?http://docs.python.org/library/sqlite3.html#sqlite3-row-objectsX Row Objectstr Xusing-on-windowsr (hhX:http://docs.python.org/using/windows.html#using-on-windowsXUsing Python on WindowstrXexplicit-joiningr(hhXGhttp://docs.python.org/reference/lexical_analysis.html#explicit-joiningXExplicit line joiningtrXfilters-contextualr(hhXEhttp://docs.python.org/howto/logging-cookbook.html#filters-contextualX.Using Filters to impart contextual informationtrXunittest-skippingr(hhX>http://docs.python.org/library/unittest.html#unittest-skippingX$Skipping tests and expected failurestrXprofile-instantr(hhX;http://docs.python.org/library/profile.html#profile-instantXInstant User's ManualtrXdoctest-doctestfinderr(hhXAhttp://docs.python.org/library/doctest.html#doctest-doctestfinderXDocTestFinder objectstrX encodingsr(hhX@http://docs.python.org/reference/lexical_analysis.html#encodingsXEncoding declarationstrXnamingr(hhX;http://docs.python.org/reference/executionmodel.html#namingXNaming and bindingtrXbuilding-on-windowsr(hhXAhttp://docs.python.org/extending/windows.html#building-on-windowsX(Building C and C++ Extensions on WindowstrX c-api-indexr(hhX3http://docs.python.org/c-api/index.html#c-api-indexXPython/C API Reference Manualtr X re-objectsr!(hhX1http://docs.python.org/library/re.html#re-objectsXRegular Expression Objectstr"Xelementtree-parsing-xmlr#(hhXQhttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-parsing-xmlX Parsing XMLtr$Xapi-refcountdetailsr%(hhX;http://docs.python.org/c-api/intro.html#api-refcountdetailsXReference Count Detailstr&Xmodule-hashlibr'(hhX7http://docs.python.org/whatsnew/2.5.html#module-hashlibXThe hashlib packagetr(Xfunction-objectsr)(hhX;http://docs.python.org/c-api/function.html#function-objectsXFunction Objectstr*Xhttp-basic-auth-handlerr+(hhXChttp://docs.python.org/library/urllib2.html#http-basic-auth-handlerXHTTPBasicAuthHandler Objectstr,X curses-howtor-(hhX5http://docs.python.org/howto/curses.html#curses-howtoXCurses Programming with Pythontr.X ctypes-arraysr/(hhX8http://docs.python.org/library/ctypes.html#ctypes-arraysXArraystr0Xsection-enumerater1(hhX:http://docs.python.org/whatsnew/2.3.html#section-enumerateXPEP 279: enumerate()tr2Xinternetr3(hhX5http://docs.python.org/library/internet.html#internetXInternet Protocols and Supporttr4X os-fd-opsr5(hhX0http://docs.python.org/library/os.html#os-fd-opsXFile Descriptor Operationstr6Xslicingsr7(hhX:http://docs.python.org/reference/expressions.html#slicingsXSlicingstr8Xctypes-incomplete-typesr9(hhXBhttp://docs.python.org/library/ctypes.html#ctypes-incomplete-typesXIncomplete Typestr:Xscrolledwindow-objectr;(hhXChttp://docs.python.org/library/framework.html#scrolledwindow-objectXScrolledWindow Objecttr<Xdom-document-objectsr=(hhX@http://docs.python.org/library/xml.dom.html#dom-document-objectsXDocument Objectstr>Xtestsuite-objectsr?(hhX>http://docs.python.org/library/unittest.html#testsuite-objectsXGrouping teststr@Xmethod-objectsrA(hhX7http://docs.python.org/c-api/method.html#method-objectsXMethod ObjectstrBXoptparse-backgroundrC(hhX@http://docs.python.org/library/optparse.html#optparse-backgroundX BackgroundtrDX fileformatsrE(hhX;http://docs.python.org/library/fileformats.html#fileformatsX File FormatstrFXossaudio-device-objectsrG(hhXGhttp://docs.python.org/library/ossaudiodev.html#ossaudio-device-objectsXAudio Device ObjectstrHX st-errorsrI(hhX4http://docs.python.org/library/parser.html#st-errorsXExceptions and Error HandlingtrJXpickle-protocolrK(hhX:http://docs.python.org/library/pickle.html#pickle-protocolXThe pickle protocoltrLXlanguagerM(hhX5http://docs.python.org/library/language.html#languageXPython Language ServicestrNXusing-on-interface-optionsrO(hhXDhttp://docs.python.org/using/cmdline.html#using-on-interface-optionsXInterface optionstrPXdistutils-indexrQ(hhX;http://docs.python.org/distutils/index.html#distutils-indexXDistributing Python ModulestrRX pickle-instrS(hhX6http://docs.python.org/library/pickle.html#pickle-instX.Pickling and unpickling normal class instancestrTXbase-handler-objectsrU(hhX@http://docs.python.org/library/urllib2.html#base-handler-objectsXBaseHandler ObjectstrVX tut-stderrrW(hhX6http://docs.python.org/tutorial/stdlib.html#tut-stderrX0Error Output Redirection and Program TerminationtrXXlambdarY(hhX8http://docs.python.org/reference/expressions.html#lambdaXLambdastrZXtimed-rotating-file-handlerr[(hhXPhttp://docs.python.org/library/logging.handlers.html#timed-rotating-file-handlerXTimedRotatingFileHandlertr\Xpep-341r](hhX0http://docs.python.org/whatsnew/2.5.html#pep-341X#PEP 341: Unified try/except/finallytr^Xpep-342r_(hhX0http://docs.python.org/whatsnew/2.5.html#pep-342XPEP 342: New Generator Featurestr`Xpep-343ra(hhX0http://docs.python.org/whatsnew/2.5.html#pep-343XPEP 343: The 'with' statementtrbX msvcrt-otherrc(hhX7http://docs.python.org/library/msvcrt.html#msvcrt-otherXOther FunctionstrdXtut-interactingre(hhX@http://docs.python.org/tutorial/interactive.html#tut-interactingX2Interactive Input Editing and History SubstitutiontrfXadvanced-debuggingrg(hhX9http://docs.python.org/c-api/init.html#advanced-debuggingXAdvanced Debugger SupporttrhX!optparse-defining-callback-optionri(hhXNhttp://docs.python.org/library/optparse.html#optparse-defining-callback-optionXDefining a callback optiontrjXlogging-advanced-tutorialrk(hhXChttp://docs.python.org/howto/logging.html#logging-advanced-tutorialXAdvanced Logging TutorialtrlXusing-capsulesrm(hhX>http://docs.python.org/extending/extending.html#using-capsulesX)Providing a C API for an Extension ModuletrnX mailbox-mhro(hhX6http://docs.python.org/library/mailbox.html#mailbox-mhXMHtrpXtypesrq(hhX5http://docs.python.org/reference/datamodel.html#typesXThe standard type hierarchytrrXgilstaters(hhX/http://docs.python.org/c-api/init.html#gilstateXNon-Python created threadstrtXtypeiterru(hhX5http://docs.python.org/library/stdtypes.html#typeiterXIterator TypestrvXwhatsnew-indexrw(hhX9http://docs.python.org/whatsnew/index.html#whatsnew-indexXWhat's New in PythontrxXlistsry(hhX7http://docs.python.org/reference/expressions.html#listsX List displaystrzXcookie-policy-objectsr{(hhXChttp://docs.python.org/library/cookielib.html#cookie-policy-objectsXCookiePolicy Objectstr|X classobjectsr}(hhX4http://docs.python.org/c-api/class.html#classobjectsXClass and Instance Objectstr~Xtut-performance-measurementr(hhXGhttp://docs.python.org/tutorial/stdlib.html#tut-performance-measurementXPerformance MeasurementtrX api-embeddingr(hhX5http://docs.python.org/c-api/intro.html#api-embeddingXEmbedding PythontrXdom-implementation-objectsr(hhXFhttp://docs.python.org/library/xml.dom.html#dom-implementation-objectsXDOMImplementation ObjectstrXtypecontextmanagerr(hhX?http://docs.python.org/library/stdtypes.html#typecontextmanagerXContext Manager TypestrX file-handlerr(hhXAhttp://docs.python.org/library/logging.handlers.html#file-handlerX FileHandlertrXlogging-basic-tutorialr(hhX@http://docs.python.org/howto/logging.html#logging-basic-tutorialXBasic Logging TutorialtrXexceptionhandlingr(hhX>http://docs.python.org/c-api/exceptions.html#exceptionhandlingXException HandlingtrXlogging-exceptionsr(hhX<http://docs.python.org/howto/logging.html#logging-exceptionsX Exceptions raised during loggingtrX tar-formatsr(hhX7http://docs.python.org/library/tarfile.html#tar-formatsXSupported tar formatstrXfuturer(hhX9http://docs.python.org/reference/simple_stmts.html#futureXFuture statementstrXrawconfigparser-objectsr(hhXHhttp://docs.python.org/library/configparser.html#rawconfigparser-objectsXRawConfigParser ObjectstrXtarfile-objectsr(hhX;http://docs.python.org/library/tarfile.html#tarfile-objectsXTarFile ObjectstrXandr(hhX5http://docs.python.org/reference/expressions.html#andXBoolean operationstrXmessage-objectsr(hhX:http://docs.python.org/library/rfc822.html#message-objectsXMessage ObjectstrX ttkstylingr(hhX2http://docs.python.org/library/ttk.html#ttkstylingX Ttk StylingtrXoptparse-terminologyr(hhXAhttp://docs.python.org/library/optparse.html#optparse-terminologyX TerminologytrX tut-numbersr(hhX=http://docs.python.org/tutorial/introduction.html#tut-numbersXNumberstrXcopytree-exampler(hhX;http://docs.python.org/library/shutil.html#copytree-exampleXcopytree exampletrXpure-modr(hhX7http://docs.python.org/distutils/examples.html#pure-modX$Pure Python distribution (by module)trXsection-pymallocr(hhX9http://docs.python.org/whatsnew/2.3.html#section-pymallocX(Pymalloc: A Specialized Object AllocatortrX listobjectsr(hhX2http://docs.python.org/c-api/list.html#listobjectsX List ObjectstrXabstract-digest-auth-handlerr(hhXHhttp://docs.python.org/library/urllib2.html#abstract-digest-auth-handlerX!AbstractDigestAuthHandler ObjectstrXtut-data-compressionr(hhX@http://docs.python.org/tutorial/stdlib.html#tut-data-compressionXData CompressiontrX tut-morelistsr(hhXAhttp://docs.python.org/tutorial/datastructures.html#tut-morelistsX More on ListstrXoptparse-tutorialr(hhX>http://docs.python.org/library/optparse.html#optparse-tutorialXTutorialtrX primariesr(hhX;http://docs.python.org/reference/expressions.html#primariesX PrimariestrXprocesscontrolr(hhX4http://docs.python.org/c-api/sys.html#processcontrolXProcess ControltrX persistencer(hhX;http://docs.python.org/library/persistence.html#persistenceXData PersistencetrXpep-3112r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3112XPEP 3112: Byte LiteralstrXdoctest-soapboxr(hhX;http://docs.python.org/library/doctest.html#doctest-soapboxXSoapboxtrXpep-3110r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3110X$PEP 3110: Exception-Handling ChangestrXstringservicesr(hhX:http://docs.python.org/library/strings.html#stringservicesXString ServicestrX sqlite3-typesr(hhX9http://docs.python.org/library/sqlite3.html#sqlite3-typesXSQLite and Python typestrXpep-3119r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3119XPEP 3119: Abstract Base ClassestrXpep-3118r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3118X!PEP 3118: Revised Buffer ProtocoltrXregrtestr(hhX1http://docs.python.org/library/test.html#regrtestX.Running tests using the command-line interfacetrXctypes-structures-unionsr(hhXChttp://docs.python.org/library/ctypes.html#ctypes-structures-unionsXStructures and unionstrX noneobjectr(hhX1http://docs.python.org/c-api/none.html#noneobjectXThe None ObjecttrXincremental-parser-objectsr(hhXMhttp://docs.python.org/library/xml.sax.reader.html#incremental-parser-objectsXIncrementalParser ObjectstrX optparse-standard-option-actionsr(hhXMhttp://docs.python.org/library/optparse.html#optparse-standard-option-actionsXStandard option actionstrXincremental-decoder-objectsr(hhXFhttp://docs.python.org/library/codecs.html#incremental-decoder-objectsXIncrementalDecoder ObjectstrXtut-binary-formatsr(hhX?http://docs.python.org/tutorial/stdlib2.html#tut-binary-formatsX'Working with Binary Data Record LayoutstrXsection-generatorsr(hhX;http://docs.python.org/whatsnew/2.3.html#section-generatorsXPEP 255: Simple GeneratorstrXdom-documenttype-objectsr(hhXDhttp://docs.python.org/library/xml.dom.html#dom-documenttype-objectsXDocumentType ObjectstrXcommon-structsr(hhX;http://docs.python.org/c-api/structures.html#common-structsXCommon Object StructurestrXctypes-foreign-functionsr(hhXChttp://docs.python.org/library/ctypes.html#ctypes-foreign-functionsXForeign functionstrXtut-functionalr(hhXBhttp://docs.python.org/tutorial/datastructures.html#tut-functionalXFunctional Programming ToolstrX build-apir(hhX2http://docs.python.org/whatsnew/2.5.html#build-apiXBuild and C API ChangestrXhttps-handler-objectsr(hhXAhttp://docs.python.org/library/urllib2.html#https-handler-objectsXHTTPSHandler ObjectstrX source-distr(hhX<http://docs.python.org/distutils/sourcedist.html#source-distXCreating a Source DistributiontrXxmlr(hhX+http://docs.python.org/library/xml.html#xmlXXML Processing ModulestrXformatter-implsr(hhX=http://docs.python.org/library/formatter.html#formatter-implsXFormatter ImplementationstrXdynamic-featuresr(hhXEhttp://docs.python.org/reference/executionmodel.html#dynamic-featuresX!Interaction with dynamic featurestrX value-typesr(hhX7http://docs.python.org/library/_winreg.html#value-typesX Value TypestrXkqueue-objectsr(hhX9http://docs.python.org/library/select.html#kqueue-objectsXKqueue ObjectstrX os-procinfor(hhX2http://docs.python.org/library/os.html#os-procinfoXProcess ParameterstrXnetwork-loggingr(hhXBhttp://docs.python.org/howto/logging-cookbook.html#network-loggingX5Sending and receiving logging events across a networktrX 25modulesr(hhX0http://docs.python.org/whatsnew/2.5.html#modulesX"New, Improved, and Removed ModulestrXmh-message-objectsr(hhX<http://docs.python.org/library/mhlib.html#mh-message-objectsXMessage ObjectstrXmultifile-objectsr(hhX?http://docs.python.org/library/multifile.html#multifile-objectsXMultiFile ObjectstrXcapsulesr(hhX2http://docs.python.org/c-api/capsule.html#capsulesXCapsulestrXdoctest-how-it-worksr(hhX@http://docs.python.org/library/doctest.html#doctest-how-it-worksX How It WorkstrXusing-on-envvarsr(hhX:http://docs.python.org/using/cmdline.html#using-on-envvarsXEnvironment variablestrX single-extr(hhX9http://docs.python.org/distutils/examples.html#single-extXSingle extension moduletrXarchiving-operationsr(hhX?http://docs.python.org/library/shutil.html#archiving-operationsXArchiving operationstrXformat-charactersr(hhX<http://docs.python.org/library/struct.html#format-charactersXFormat CharacterstrX regex-howtor(hhX3http://docs.python.org/howto/regex.html#regex-howtoXRegular Expression HOWTOtrXshelve-exampler(hhX9http://docs.python.org/library/shelve.html#shelve-exampleXExampletrX typesmethodsr(hhX9http://docs.python.org/library/stdtypes.html#typesmethodsXMethodstrXnewstyler (hhX8http://docs.python.org/reference/datamodel.html#newstyleXNew-style and classic classestr Xtut-batteries-includedr (hhXBhttp://docs.python.org/tutorial/stdlib.html#tut-batteries-includedXBatteries Includedtr Xstream-reader-objectsr (hhX@http://docs.python.org/library/codecs.html#stream-reader-objectsXStreamReader ObjectstrXau-read-objectsr(hhX9http://docs.python.org/library/sunau.html#au-read-objectsXAU_read ObjectstrXatom-identifiersr(hhXBhttp://docs.python.org/reference/expressions.html#atom-identifiersXIdentifiers (Names)trXyieldr(hhX8http://docs.python.org/reference/simple_stmts.html#yieldXThe yield statementtrX dictobjectsr(hhX2http://docs.python.org/c-api/dict.html#dictobjectsXDictionary ObjectstrXmsvcrt-consoler(hhX9http://docs.python.org/library/msvcrt.html#msvcrt-consoleX Console I/OtrX gen-objectsr(hhX1http://docs.python.org/c-api/gen.html#gen-objectsXGenerator ObjectstrXconverting-stsr(hhX9http://docs.python.org/library/parser.html#converting-stsXConverting ST ObjectstrXdoctest-warningsr(hhX<http://docs.python.org/library/doctest.html#doctest-warningsXWarningstrXtut-templatingr(hhX;http://docs.python.org/tutorial/stdlib2.html#tut-templatingX Templatingtr Xdoctest-finding-examplesr!(hhXDhttp://docs.python.org/library/doctest.html#doctest-finding-examplesX&How are Docstring Examples Recognized?tr"X parenthesizedr#(hhX?http://docs.python.org/reference/expressions.html#parenthesizedXParenthesized formstr$Xstrftime-strptime-behaviorr%(hhXGhttp://docs.python.org/library/datetime.html#strftime-strptime-behaviorX"strftime() and strptime() Behaviortr&Xpickle-exampler'(hhX9http://docs.python.org/library/pickle.html#pickle-exampleXExampletr(Xpep-0371r)(hhX1http://docs.python.org/whatsnew/2.6.html#pep-0371X$PEP 371: The multiprocessing Packagetr*X26acksr+(hhX-http://docs.python.org/whatsnew/2.6.html#acksXAcknowledgementstr,X top-levelr-(hhXChttp://docs.python.org/reference/toplevel_components.html#top-levelXTop-level componentstr.Xmorsel-objectsr/(hhX9http://docs.python.org/library/cookie.html#morsel-objectsXMorsel Objectstr0X rexec-objectsr1(hhX7http://docs.python.org/library/rexec.html#rexec-objectsX RExec Objectstr2Xtut-syntaxerrorsr3(hhX<http://docs.python.org/tutorial/errors.html#tut-syntaxerrorsX Syntax Errorstr4Xwarning-functionsr5(hhX>http://docs.python.org/library/warnings.html#warning-functionsXAvailable Functionstr6Xmultiprocessing-managersr7(hhXLhttp://docs.python.org/library/multiprocessing.html#multiprocessing-managersXManagerstr8X null-handlerr9(hhXAhttp://docs.python.org/library/logging.handlers.html#null-handlerX NullHandlertr:Xmsi-guir;(hhX2http://docs.python.org/library/msilib.html#msi-guiX GUI classestr<Xlexicalr=(hhX>http://docs.python.org/reference/lexical_analysis.html#lexicalXLexical analysistr>Xmac-package-managerr?(hhX9http://docs.python.org/using/mac.html#mac-package-managerX%Installing Additional Python Packagestr@Xtut-generatorsrA(hhX;http://docs.python.org/tutorial/classes.html#tut-generatorsX GeneratorstrBXtut-modulesasscriptsrC(hhXAhttp://docs.python.org/tutorial/modules.html#tut-modulesasscriptsXExecuting modules as scriptstrDX http-handlerrE(hhXAhttp://docs.python.org/library/logging.handlers.html#http-handlerX HTTPHandlertrFXimportrG(hhX9http://docs.python.org/reference/simple_stmts.html#importXThe import statementtrHXemail-pkg-historyrI(hhX;http://docs.python.org/library/email.html#email-pkg-historyXPackage HistorytrJXpep-0372rK(hhX1http://docs.python.org/whatsnew/2.7.html#pep-0372X4PEP 372: Adding an Ordered Dictionary to collectionstrLXlogging-config-dict-internalobjrM(hhXRhttp://docs.python.org/library/logging.config.html#logging-config-dict-internalobjXAccess to internal objectstrNXpep-0370rO(hhX1http://docs.python.org/whatsnew/2.6.html#pep-0370X)PEP 370: Per-user site-packages DirectorytrPX execmodelrQ(hhX>http://docs.python.org/reference/executionmodel.html#execmodelXExecution modeltrRX!multiprocessing-listeners-clientsrS(hhXUhttp://docs.python.org/library/multiprocessing.html#multiprocessing-listeners-clientsXListeners and ClientstrTXpep-0378rU(hhX1http://docs.python.org/whatsnew/2.7.html#pep-0378X1PEP 378: Format Specifier for Thousands SeparatortrVXinst-trivial-installrW(hhX>http://docs.python.org/install/index.html#inst-trivial-installXBest case: trivial installationtrXXcreating-wininstrY(hhX@http://docs.python.org/distutils/builtdist.html#creating-wininstXCreating Windows InstallerstrZXmarshalling-utilsr[(hhX;http://docs.python.org/c-api/marshal.html#marshalling-utilsXData marshalling supporttr\Xtkinterr](hhX.http://docs.python.org/library/tk.html#tkinterX!Graphical User Interfaces with Tktr^Xctypes-surprisesr_(hhX;http://docs.python.org/library/ctypes.html#ctypes-surprisesX Surprisestr`Xtut-searchpathra(hhX;http://docs.python.org/tutorial/modules.html#tut-searchpathXThe Module Search PathtrbXelementtree-qname-objectsrc(hhXShttp://docs.python.org/library/xml.etree.elementtree.html#elementtree-qname-objectsX QName ObjectstrdX tut-lambdare(hhX;http://docs.python.org/tutorial/controlflow.html#tut-lambdaXLambda ExpressionstrfX embeddingrg(hhX9http://docs.python.org/extending/embedding.html#embeddingX'Embedding Python in Another ApplicationtrhX contextlibmodri(hhX6http://docs.python.org/whatsnew/2.5.html#contextlibmodXThe contextlib moduletrjXmac-specific-servicesrk(hhX=http://docs.python.org/library/mac.html#mac-specific-servicesXMac OS X specific servicestrlXhttp-cookie-processorrm(hhXAhttp://docs.python.org/library/urllib2.html#http-cookie-processorXHTTPCookieProcessor ObjectstrnXinst-tweak-flagsro(hhX:http://docs.python.org/install/index.html#inst-tweak-flagsXTweaking compiler/linker flagstrpXbuilt-in-funcsrq(hhX<http://docs.python.org/library/functions.html#built-in-funcsXBuilt-in FunctionstrrXincremental-encoder-objectsrs(hhXFhttp://docs.python.org/library/codecs.html#incremental-encoder-objectsXIncrementalEncoder ObjectstrtX os-miscfuncru(hhX2http://docs.python.org/library/os.html#os-miscfuncXMiscellaneous FunctionstrvXusing-on-cmdlinerw(hhX:http://docs.python.org/using/cmdline.html#using-on-cmdlineX Command linetrxXmailbox-maildirmessagery(hhXBhttp://docs.python.org/library/mailbox.html#mailbox-maildirmessageXMaildirMessagetrzXoptparse-other-actionsr{(hhXChttp://docs.python.org/library/optparse.html#optparse-other-actionsX Other actionstr|X profile-statsr}(hhX9http://docs.python.org/library/profile.html#profile-statsXThe Stats Classtr~Xallocating-objectsr(hhX?http://docs.python.org/c-api/allocation.html#allocating-objectsXAllocating Objects on the HeaptrXmanifest_templater(hhXBhttp://docs.python.org/distutils/sourcedist.html#manifest-templateXThe MANIFEST.in templatetrXscheduler-objectsr(hhX;http://docs.python.org/library/sched.html#scheduler-objectsXScheduler ObjectstrXwhatsnew27-capsulesr(hhX<http://docs.python.org/whatsnew/2.7.html#whatsnew27-capsulesXCapsulestrXtut-loopidiomsr(hhXBhttp://docs.python.org/tutorial/datastructures.html#tut-loopidiomsXLooping TechniquestrXportingr(hhX0http://docs.python.org/whatsnew/2.5.html#portingXPorting to Python 2.5trXlogging-config-dict-externalobjr(hhXRhttp://docs.python.org/library/logging.config.html#logging-config-dict-externalobjXAccess to external objectstrX tut-multipler(hhX9http://docs.python.org/tutorial/classes.html#tut-multipleXMultiple InheritancetrX exprlistsr(hhX;http://docs.python.org/reference/expressions.html#exprlistsXExpression liststrXcd-parser-objectsr(hhX8http://docs.python.org/library/cd.html#cd-parser-objectsXParser ObjectstrX tut-scopesr(hhX7http://docs.python.org/tutorial/classes.html#tut-scopesXPython Scopes and NamespacestrXassertr(hhX9http://docs.python.org/reference/simple_stmts.html#assertXThe assert statementtrXi18nr(hhX-http://docs.python.org/library/i18n.html#i18nXInternationalizationtrXtut-source-encodingr(hhXDhttp://docs.python.org/tutorial/interpreter.html#tut-source-encodingXSource Code EncodingtrXstream-reader-writerr(hhX?http://docs.python.org/library/codecs.html#stream-reader-writerXStreamReaderWriter ObjectstrXdoctest-basic-apir(hhX=http://docs.python.org/library/doctest.html#doctest-basic-apiX Basic APItrXglossaryr(hhX-http://docs.python.org/glossary.html#glossaryXGlossarytrXdom-type-mappingr(hhX<http://docs.python.org/library/xml.dom.html#dom-type-mappingX Type MappingtrXbltin-null-objectr(hhX>http://docs.python.org/library/stdtypes.html#bltin-null-objectXThe Null ObjecttrX frameworksr(hhX9http://docs.python.org/library/frameworks.html#frameworksXProgram FrameworkstrX tut-historyr(hhX<http://docs.python.org/tutorial/interactive.html#tut-historyXHistory SubstitutiontrXcontrolswindow-objectr(hhXChttp://docs.python.org/library/framework.html#controlswindow-objectXControlsWindow ObjecttrXmimewriter-objectsr(hhXAhttp://docs.python.org/library/mimewriter.html#mimewriter-objectsXMimeWriter ObjectstrXgzip-usage-examplesr(hhX<http://docs.python.org/library/gzip.html#gzip-usage-examplesXExamples of usagetrXobsolete-modulesr(hhX:http://docs.python.org/library/undoc.html#obsolete-modulesXObsoletetrXdecimal-contextr(hhX;http://docs.python.org/library/decimal.html#decimal-contextXContext objectstrXtut-dates-and-timesr(hhX?http://docs.python.org/tutorial/stdlib.html#tut-dates-and-timesXDates and TimestrXsubprocess-replacementsr(hhXFhttp://docs.python.org/library/subprocess.html#subprocess-replacementsX4Replacing Older Functions with the subprocess ModuletrXdistutils-intror(hhXBhttp://docs.python.org/distutils/introduction.html#distutils-introXAn Introduction to DistutilstrXexamples-imputilr(hhX<http://docs.python.org/library/imputil.html#examples-imputilXExamplestrXlogrecord-attributesr(hhX@http://docs.python.org/library/logging.html#logrecord-attributesXLogRecord attributestrXzipfile-objectsr(hhX;http://docs.python.org/library/zipfile.html#zipfile-objectsXZipFile ObjectstrXbinaryr(hhX8http://docs.python.org/reference/expressions.html#binaryXBinary arithmetic operationstrXtut-forr(hhX8http://docs.python.org/tutorial/controlflow.html#tut-forXfor StatementstrX trace-clir(hhX3http://docs.python.org/library/trace.html#trace-cliXCommand-Line UsagetrXdoctest-optionsr(hhX;http://docs.python.org/library/doctest.html#doctest-optionsX Option FlagstrX queueobjectsr(hhX6http://docs.python.org/library/queue.html#queueobjectsX Queue ObjectstrXunittest-contentsr(hhX>http://docs.python.org/library/unittest.html#unittest-contentsXClasses and functionstrXweakrefobjectsr(hhX8http://docs.python.org/c-api/weakref.html#weakrefobjectsXWeak Reference ObjectstrXtut-structuresr(hhXBhttp://docs.python.org/tutorial/datastructures.html#tut-structuresXData StructurestrXpyclbr-function-objectsr(hhXBhttp://docs.python.org/library/pyclbr.html#pyclbr-function-objectsXFunction ObjectstrXmmediar(hhX-http://docs.python.org/library/mm.html#mmediaXMultimedia ServicestrXthread-objectsr(hhX<http://docs.python.org/library/threading.html#thread-objectsXThread ObjectstrXinitializationr(hhX5http://docs.python.org/c-api/init.html#initializationX)Initialization, Finalization, and ThreadstrXsimplexmlrpcserver-exampler(hhXQhttp://docs.python.org/library/simplexmlrpcserver.html#simplexmlrpcserver-exampleXSimpleXMLRPCServer ExampletrX st-objectsr(hhX5http://docs.python.org/library/parser.html#st-objectsX ST ObjectstrX expat-exampler(hhX9http://docs.python.org/library/pyexpat.html#expat-exampleXExampletrX bitstring-opsr(hhX:http://docs.python.org/library/stdtypes.html#bitstring-opsX#Bitwise Operations on Integer TypestrX datetime-dater(hhX:http://docs.python.org/library/datetime.html#datetime-dateX date ObjectstrX datatypesr(hhX7http://docs.python.org/library/datatypes.html#datatypesX Data TypestrXmailbox-deprecatedr(hhX>http://docs.python.org/library/mailbox.html#mailbox-deprecatedXDeprecated classes and methodstrX moduleobjectsr(hhX6http://docs.python.org/c-api/module.html#moduleobjectsXModule Objectstru(Xtypesseq-mutabler(hhX=http://docs.python.org/library/stdtypes.html#typesseq-mutableXMutable Sequence TypestrXbltin-file-objectsr(hhX?http://docs.python.org/library/stdtypes.html#bltin-file-objectsX File ObjectstrX reflectionr(hhX7http://docs.python.org/c-api/reflection.html#reflectionX ReflectiontrXmarkupr(hhX1http://docs.python.org/library/markup.html#markupX"Structured Markup Processing ToolstrX identifiersr(hhXBhttp://docs.python.org/reference/lexical_analysis.html#identifiersXIdentifiers and keywordstrXshlex-parsing-rulesr(hhX=http://docs.python.org/library/shlex.html#shlex-parsing-rulesX Parsing RulestrXwarning-testingr(hhX<http://docs.python.org/library/warnings.html#warning-testingXTesting WarningstrX tut-errorr(hhX:http://docs.python.org/tutorial/interpreter.html#tut-errorXError HandlingtrXctypes-calling-functionsr(hhXChttp://docs.python.org/library/ctypes.html#ctypes-calling-functionsXCalling functionstrX mh-objectsr(hhX4http://docs.python.org/library/mhlib.html#mh-objectsX MH ObjectstrX tut-interpr(hhX;http://docs.python.org/tutorial/interpreter.html#tut-interpX#The Interpreter and Its EnvironmenttrXlogging-config-dict-userdefr(hhXNhttp://docs.python.org/library/logging.config.html#logging-config-dict-userdefXUser-defined objectstrX#optparse-raising-errors-in-callbackr(hhXPhttp://docs.python.org/library/optparse.html#optparse-raising-errors-in-callbackXRaising errors in a callbacktrX numeric-typesr(hhX=http://docs.python.org/reference/datamodel.html#numeric-typesXEmulating numeric typestrXpep-3129r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-3129XPEP 3129: Class DecoratorstrXunaryr(hhX7http://docs.python.org/reference/expressions.html#unaryX'Unary arithmetic and bitwise operationstrX methodtabler(hhX;http://docs.python.org/extending/extending.html#methodtableX5The Module's Method Table and Initialization FunctiontrX exceptionsr (hhX?http://docs.python.org/reference/executionmodel.html#exceptionsX Exceptionstr Xexceptr (hhX;http://docs.python.org/reference/compound_stmts.html#exceptXThe try statementtr X specialnamesr (hhX<http://docs.python.org/reference/datamodel.html#specialnamesXSpecial method namestrXtypesseqr(hhX5http://docs.python.org/library/stdtypes.html#typesseqXGSequence Types --- str, unicode, list, tuple, bytearray, buffer, xrangetrXtut-morecontrolr(hhX@http://docs.python.org/tutorial/controlflow.html#tut-morecontrolXMore Control Flow ToolstrXdom-attr-objectsr(hhX<http://docs.python.org/library/xml.dom.html#dom-attr-objectsX Attr ObjectstrXother-gui-packagesr(hhX?http://docs.python.org/library/othergui.html#other-gui-packagesX'Other Graphical User Interface PackagestrXnumber-structsr(hhX8http://docs.python.org/c-api/typeobj.html#number-structsXNumber Object StructurestrXloggerr(hhX2http://docs.python.org/library/logging.html#loggerXLogger ObjectstrXhotshot-objectsr(hhX;http://docs.python.org/library/hotshot.html#hotshot-objectsXProfile ObjectstrXlisting-modulesr(hhXAhttp://docs.python.org/distutils/setupscript.html#listing-modulesXListing individual modulestrXold-style-special-lookupr(hhXHhttp://docs.python.org/reference/datamodel.html#old-style-special-lookupX+Special method lookup for old-style classestr X stringobjectsr!(hhX6http://docs.python.org/c-api/string.html#stringobjectsXString/Bytes Objectstr"Xlisting-packagesr#(hhXBhttp://docs.python.org/distutils/setupscript.html#listing-packagesXListing whole packagestr$Xmodulefinder-exampler%(hhXEhttp://docs.python.org/library/modulefinder.html#modulefinder-exampleXExample usage of ModuleFindertr&Xmailbox-message-objectsr'(hhXChttp://docs.python.org/library/mailbox.html#mailbox-message-objectsXMessage objectstr(Xnew-style-special-lookupr)(hhXHhttp://docs.python.org/reference/datamodel.html#new-style-special-lookupX+Special method lookup for new-style classestr*Xstandard-encodingsr+(hhX=http://docs.python.org/library/codecs.html#standard-encodingsXStandard Encodingstr,Xstring-conversionsr-(hhXDhttp://docs.python.org/reference/expressions.html#string-conversionsXString conversionstr.Xinstall-scripts-cmdr/(hhXDhttp://docs.python.org/distutils/commandref.html#install-scripts-cmdXinstall_scriptstr0X python-termsr1(hhX?http://docs.python.org/distutils/introduction.html#python-termsXGeneral Python terminologytr2Xdatabase-objectsr3(hhX;http://docs.python.org/library/msilib.html#database-objectsXDatabase Objectstr4Xdom-nodelist-objectsr5(hhX@http://docs.python.org/library/xml.dom.html#dom-nodelist-objectsXNodeList Objectstr6Xstruct-format-stringsr7(hhX@http://docs.python.org/library/struct.html#struct-format-stringsXFormat Stringstr8Xmore-metacharactersr9(hhX;http://docs.python.org/howto/regex.html#more-metacharactersXMore Metacharacterstr:Xprogressbar-objectsr;(hhXChttp://docs.python.org/library/easydialogs.html#progressbar-objectsXProgressBar Objectstr<Xxdr-unpacker-objectsr=(hhX?http://docs.python.org/library/xdrlib.html#xdr-unpacker-objectsXUnpacker Objectstr>Xxdr-packer-objectsr?(hhX=http://docs.python.org/library/xdrlib.html#xdr-packer-objectsXPacker Objectstr@Xinterpreter-objectsrA(hhX<http://docs.python.org/library/code.html#interpreter-objectsXInteractive Interpreter ObjectstrBXsequencerC(hhX3http://docs.python.org/c-api/sequence.html#sequenceXSequence ProtocoltrDXmodindexrE(hhX(http://docs.python.org/py-modindex.html#X Module IndextrFX binhex-notesrG(hhX7http://docs.python.org/library/binhex.html#binhex-notesXNotestrHX form-objectsrI(hhX3http://docs.python.org/library/fl.html#form-objectsX Form ObjectstrJX inspect-typesrK(hhX9http://docs.python.org/library/inspect.html#inspect-typesXTypes and memberstrLXwave-read-objectsrM(hhX:http://docs.python.org/library/wave.html#wave-read-objectsXWave_read ObjectstrNXrefcountsinpythonrO(hhXAhttp://docs.python.org/extending/extending.html#refcountsinpythonXReference Counting in PythontrPXhttpresponse-objectsrQ(hhX@http://docs.python.org/library/httplib.html#httpresponse-objectsXHTTPResponse ObjectstrRXdynamic-linkingrS(hhX=http://docs.python.org/extending/windows.html#dynamic-linkingX$Differences Between Unix and WindowstrTXliteralsrU(hhX?http://docs.python.org/reference/lexical_analysis.html#literalsXLiteralstrVX tut-functionsrW(hhX>http://docs.python.org/tutorial/controlflow.html#tut-functionsXDefining FunctionstrXXsection-pep302rY(hhX7http://docs.python.org/whatsnew/2.3.html#section-pep302XPEP 302: New Import HookstrZXsection-pep301r[(hhX7http://docs.python.org/whatsnew/2.3.html#section-pep301X1PEP 301: Package Index and Metadata for Distutilstr\Xweakref-exampler](hhX;http://docs.python.org/library/weakref.html#weakref-exampleXExampletr^Xsection-pep305r_(hhX7http://docs.python.org/whatsnew/2.3.html#section-pep305XPEP 305: Comma-separated Filestr`X delimitersra(hhXAhttp://docs.python.org/reference/lexical_analysis.html#delimitersX DelimiterstrbX refcountsrc(hhX9http://docs.python.org/extending/extending.html#refcountsXReference CountstrdXusing-the-cgi-modulere(hhX<http://docs.python.org/library/cgi.html#using-the-cgi-moduleXUsing the cgi moduletrfXnew-25-context-managersrg(hhX@http://docs.python.org/whatsnew/2.5.html#new-25-context-managersXWriting Context ManagerstrhXdoctest-simple-testmodri(hhXBhttp://docs.python.org/library/doctest.html#doctest-simple-testmodX-Simple Usage: Checking Examples in DocstringstrjXtut-oddsrk(hhX5http://docs.python.org/tutorial/classes.html#tut-oddsX Odds and EndstrlXhtmlparser-examplesrm(hhXBhttp://docs.python.org/library/htmlparser.html#htmlparser-examplesXExamplestrnXtruthro(hhX2http://docs.python.org/library/stdtypes.html#truthXTruth Value TestingtrpXpowerrq(hhX7http://docs.python.org/reference/expressions.html#powerXThe power operatortrrX built-distrs(hhX:http://docs.python.org/distutils/builtdist.html#built-distXCreating Built DistributionstrtXmultiprocessing-examplesru(hhXLhttp://docs.python.org/library/multiprocessing.html#multiprocessing-examplesXExamplestrvX tut-usingrw(hhX:http://docs.python.org/tutorial/interpreter.html#tut-usingXUsing the Python InterpretertrxXdoctest-doctestrunnerry(hhXAhttp://docs.python.org/library/doctest.html#doctest-doctestrunnerXDocTestRunner objectstrzX imaginaryr{(hhX@http://docs.python.org/reference/lexical_analysis.html#imaginaryXImaginary literalstr|X optparse-printing-version-stringr}(hhXMhttp://docs.python.org/library/optparse.html#optparse-printing-version-stringXPrinting a version stringtr~X tut-handlingr(hhX8http://docs.python.org/tutorial/errors.html#tut-handlingXHandling ExceptionstrXoptparse-how-callbacks-calledr(hhXJhttp://docs.python.org/library/optparse.html#optparse-how-callbacks-calledXHow callbacks are calledtrXtut-exceptionclassesr(hhXAhttp://docs.python.org/tutorial/classes.html#tut-exceptionclassesXExceptions Are Classes TootrXwhatsnew27-python31r(hhX<http://docs.python.org/whatsnew/2.7.html#whatsnew27-python31XThe Future for Python 2.xtrXtut-docstringsr(hhX?http://docs.python.org/tutorial/controlflow.html#tut-docstringsXDocumentation StringstrX log-recordr(hhX6http://docs.python.org/library/logging.html#log-recordXLogRecord ObjectstrX parsetupler(hhX:http://docs.python.org/extending/extending.html#parsetupleX,Extracting Parameters in Extension FunctionstrXhttplib-examplesr(hhX<http://docs.python.org/library/httplib.html#httplib-examplesXExamplestrXosr(hhX(http://docs.python.org/c-api/sys.html#osXOperating System UtilitiestrXorr(hhX4http://docs.python.org/reference/expressions.html#orXBoolean operationstrXpep-0366r(hhX1http://docs.python.org/whatsnew/2.6.html#pep-0366X5PEP 366: Explicit Relative Imports From a Main ModuletrXtut-keywordargsr(hhX@http://docs.python.org/tutorial/controlflow.html#tut-keywordargsXKeyword ArgumentstrXdatetime-datetimer(hhX>http://docs.python.org/library/datetime.html#datetime-datetimeXdatetime ObjectstrXlogging-import-resolutionr(hhXLhttp://docs.python.org/library/logging.config.html#logging-import-resolutionX&Import resolution and custom importerstrXaudio-device-objectsr(hhXAhttp://docs.python.org/library/sunaudio.html#audio-device-objectsXAudio Device ObjectstrXuse_same_sourcer(hhX;http://docs.python.org/howto/pyporting.html#use-same-sourceXPython 2/3 Compatible SourcetrX formatspecr(hhX5http://docs.python.org/library/string.html#formatspecX"Format Specification Mini-LanguagetrX cplusplusr(hhX9http://docs.python.org/extending/extending.html#cplusplusXWriting Extensions in C++trXmemoryexamplesr(hhX7http://docs.python.org/c-api/memory.html#memoryexamplesXExamplestrXdom-element-objectsr(hhX?http://docs.python.org/library/xml.dom.html#dom-element-objectsXElement ObjectstrX 25interactiver(hhX4http://docs.python.org/whatsnew/2.5.html#interactiveXInteractive Interpreter ChangestrXdiffer-objectsr(hhX:http://docs.python.org/library/difflib.html#differ-objectsXDiffer ObjectstrXinst-splitting-upr(hhX;http://docs.python.org/install/index.html#inst-splitting-upXSplitting the job uptrXtut-conditionsr(hhXBhttp://docs.python.org/tutorial/datastructures.html#tut-conditionsXMore on ConditionstrXiterator-objectsr(hhX;http://docs.python.org/c-api/iterator.html#iterator-objectsXIterator ObjectstrX querying-stsr(hhX7http://docs.python.org/library/parser.html#querying-stsXQueries on ST ObjectstrXaddresslist-objectsr(hhX>http://docs.python.org/library/rfc822.html#addresslist-objectsXAddressList ObjectstrXfunctionr(hhX=http://docs.python.org/reference/compound_stmts.html#functionXFunction definitionstrXbuildingr(hhX7http://docs.python.org/extending/building.html#buildingX,Building C and C++ Extensions with distutilstrXcontext-managersr(hhX@http://docs.python.org/reference/datamodel.html#context-managersXWith Statement Context ManagerstrX other-tokensr(hhXChttp://docs.python.org/reference/lexical_analysis.html#other-tokensX Other tokenstrX cell-objectsr(hhX3http://docs.python.org/c-api/cell.html#cell-objectsX Cell ObjectstrXfile-handler-objectsr(hhX@http://docs.python.org/library/urllib2.html#file-handler-objectsXFileHandler ObjectstrX match-objectsr(hhX4http://docs.python.org/library/re.html#match-objectsX Match ObjectstrX tut-whatnowr(hhX8http://docs.python.org/tutorial/whatnow.html#tut-whatnowX What Now?trXposix-contentsr(hhX8http://docs.python.org/library/posix.html#posix-contentsXNotable Module ContentstrXwithr(hhX9http://docs.python.org/reference/compound_stmts.html#withXThe with statementtrXpopen3-objectsr(hhX9http://docs.python.org/library/popen2.html#popen3-objectsXPopen3 and Popen4 ObjectstrX inspect-stackr(hhX9http://docs.python.org/library/inspect.html#inspect-stackXThe interpreter stacktrXwriter-interfacer(hhX>http://docs.python.org/library/formatter.html#writer-interfaceXThe Writer InterfacetrXunittest-sectionr(hhX9http://docs.python.org/whatsnew/2.7.html#unittest-sectionXUpdated module: unittesttrX tut-stringsr(hhX=http://docs.python.org/tutorial/introduction.html#tut-stringsXStringstrXmimetools-message-objectsr(hhXGhttp://docs.python.org/library/mimetools.html#mimetools-message-objectsX%Additional Methods of Message ObjectstrXzipinfo-objectsr(hhX;http://docs.python.org/library/zipfile.html#zipinfo-objectsXZipInfo ObjectstrXctypes-loading-shared-librariesr(hhXJhttp://docs.python.org/library/ctypes.html#ctypes-loading-shared-librariesXLoading shared librariestrXasr(hhX7http://docs.python.org/reference/compound_stmts.html#asXThe with statementtrXattributes-ns-objectsr(hhXHhttp://docs.python.org/library/xml.sax.reader.html#attributes-ns-objectsXThe AttributesNS InterfacetrXtut-internet-accessr(hhX?http://docs.python.org/tutorial/stdlib.html#tut-internet-accessXInternet AccesstrX importingr(hhX2http://docs.python.org/c-api/import.html#importingXImporting ModulestrX bsddb-objectsr(hhX7http://docs.python.org/library/bsddb.html#bsddb-objectsXHash, BTree and Record ObjectstrX csv-examplesr(hhX4http://docs.python.org/library/csv.html#csv-examplesXExamplestrXtut-moremodulesr(hhX<http://docs.python.org/tutorial/modules.html#tut-moremodulesXMore on ModulestrX dl-objectsr(hhX1http://docs.python.org/library/dl.html#dl-objectsX Dl ObjectstrXundoc-mac-modulesr(hhX;http://docs.python.org/library/undoc.html#undoc-mac-modulesXUndocumented Mac OS modulestrXpython-interfacer(hhX;http://docs.python.org/library/timeit.html#python-interfaceXPython InterfacetrX tut-fp-errorr(hhX?http://docs.python.org/tutorial/floatingpoint.html#tut-fp-errorXRepresentation ErrortrX msi-directoryr(hhX8http://docs.python.org/library/msilib.html#msi-directoryXDirectory ObjectstrXgenexprr(hhX9http://docs.python.org/reference/expressions.html#genexprXGenerator expressionstrXtut-classdefinitionr(hhX@http://docs.python.org/tutorial/classes.html#tut-classdefinitionXClass Definition SyntaxtrXcontent-handler-objectsr(hhXKhttp://docs.python.org/library/xml.sax.handler.html#content-handler-objectsXContentHandler ObjectstrX,optparse-querying-manipulating-option-parserr(hhXYhttp://docs.python.org/library/optparse.html#optparse-querying-manipulating-option-parserX,Querying and manipulating your option parsertrXctypes-type-conversionsr(hhXBhttp://docs.python.org/library/ctypes.html#ctypes-type-conversionsXType conversionstrXoperator-summaryr(hhXBhttp://docs.python.org/reference/expressions.html#operator-summaryXOperator precedencetrXcallsr(hhX7http://docs.python.org/reference/expressions.html#callsXCallstrXpep-314r(hhX0http://docs.python.org/whatsnew/2.5.html#pep-314X3PEP 314: Metadata for Python Software Packages v1.1trX mod-pythonr(hhX7http://docs.python.org/howto/webservers.html#mod-pythonX mod_pythontrXextending-distutilsr(hhXChttp://docs.python.org/distutils/extending.html#extending-distutilsXExtending DistutilstrXstringsr(hhX>http://docs.python.org/reference/lexical_analysis.html#stringsXString literalstruXpy:classr}r(Xurllib.FancyURLopenerr (hhX@http://docs.python.org/library/urllib.html#urllib.FancyURLopenerX-tr Xaetypes.NPropertyr (hhX=http://docs.python.org/library/aetypes.html#aetypes.NPropertyX-tr X Tix.NoteBookr (hhX4http://docs.python.org/library/tix.html#Tix.NoteBookX-trX nntplib.NNTPr(hhX8http://docs.python.org/library/nntplib.html#nntplib.NNTPX-trX Tix.CheckListr(hhX5http://docs.python.org/library/tix.html#Tix.CheckListX-trXdatetime.timedeltar(hhX?http://docs.python.org/library/datetime.html#datetime.timedeltaX-trXprofile.Profiler(hhX;http://docs.python.org/library/profile.html#profile.ProfileX-trXmsilib.Controlr(hhX9http://docs.python.org/library/msilib.html#msilib.ControlX-trXpkgutil.ImpImporterr(hhX?http://docs.python.org/library/pkgutil.html#pkgutil.ImpImporterX-trXurllib2.HTTPErrorProcessorr(hhXFhttp://docs.python.org/library/urllib2.html#urllib2.HTTPErrorProcessorX-trXcollections.Iteratorr(hhXDhttp://docs.python.org/library/collections.html#collections.IteratorX-trXurllib2.CacheFTPHandlerr(hhXChttp://docs.python.org/library/urllib2.html#urllib2.CacheFTPHandlerX-tr Xast.NodeVisitorr!(hhX7http://docs.python.org/library/ast.html#ast.NodeVisitorX-tr"Xcollections.MutableSequencer#(hhXKhttp://docs.python.org/library/collections.html#collections.MutableSequenceX-tr$Xmailbox.BabylMessager%(hhX@http://docs.python.org/library/mailbox.html#mailbox.BabylMessageX-tr&Xcollections.MutableMappingr'(hhXJhttp://docs.python.org/library/collections.html#collections.MutableMappingX-tr(Xcollections.ItemsViewr)(hhXEhttp://docs.python.org/library/collections.html#collections.ItemsViewX-tr*X Tix.HListr+(hhX1http://docs.python.org/library/tix.html#Tix.HListX-tr,Xasynchat.async_chatr-(hhX@http://docs.python.org/library/asynchat.html#asynchat.async_chatX-tr.XTix.DirSelectBoxr/(hhX8http://docs.python.org/library/tix.html#Tix.DirSelectBoxX-tr0Xasyncore.dispatcherr1(hhX@http://docs.python.org/library/asyncore.html#asyncore.dispatcherX-tr2Xemail.parser.FeedParserr3(hhXHhttp://docs.python.org/library/email.parser.html#email.parser.FeedParserX-tr4X aetypes.Ranger5(hhX9http://docs.python.org/library/aetypes.html#aetypes.RangeX-tr6X"xml.sax.xmlreader.AttributesNSImplr7(hhXUhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.AttributesNSImplX-tr8X turtle.Vec2Dr9(hhX7http://docs.python.org/library/turtle.html#turtle.Vec2DX-tr:X shelve.Shelfr;(hhX7http://docs.python.org/library/shelve.html#shelve.ShelfX-tr<X multiprocessing.pool.AsyncResultr=(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.AsyncResultX-tr>Xasyncore.file_wrapperr?(hhXBhttp://docs.python.org/library/asyncore.html#asyncore.file_wrapperX-tr@Xlogging.handlers.SysLogHandlerrA(hhXShttp://docs.python.org/library/logging.handlers.html#logging.handlers.SysLogHandlerX-trBX numbers.RealrC(hhX8http://docs.python.org/library/numbers.html#numbers.RealX-trDXurllib2.HTTPSHandlerrE(hhX@http://docs.python.org/library/urllib2.html#urllib2.HTTPSHandlerX-trFXaetypes.InsertionLocrG(hhX@http://docs.python.org/library/aetypes.html#aetypes.InsertionLocX-trHXsubprocess.PopenrI(hhX?http://docs.python.org/library/subprocess.html#subprocess.PopenX-trJXmailbox.MmdfMailboxrK(hhX?http://docs.python.org/library/mailbox.html#mailbox.MmdfMailboxX-trLXwsgiref.handlers.CGIHandlerrM(hhXGhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.CGIHandlerX-trNX repr.ReprrO(hhX2http://docs.python.org/library/repr.html#repr.ReprX-trPXaetypes.IntlWritingCoderQ(hhXChttp://docs.python.org/library/aetypes.html#aetypes.IntlWritingCodeX-trRXpprint.PrettyPrinterrS(hhX?http://docs.python.org/library/pprint.html#pprint.PrettyPrinterX-trTXxml.dom.pulldom.PullDOMrU(hhXKhttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.PullDOMX-trVX logging.handlers.DatagramHandlerrW(hhXUhttp://docs.python.org/library/logging.handlers.html#logging.handlers.DatagramHandlerX-trXXdecimal.DefaultContextrY(hhXBhttp://docs.python.org/library/decimal.html#decimal.DefaultContextX-trZXHTMLParser.HTMLParserr[(hhXDhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParserX-tr\Xcalendar.LocaleTextCalendarr](hhXHhttp://docs.python.org/library/calendar.html#calendar.LocaleTextCalendarX-tr^Xaetypes.QDPointr_(hhX;http://docs.python.org/library/aetypes.html#aetypes.QDPointX-tr`X chunk.Chunkra(hhX5http://docs.python.org/library/chunk.html#chunk.ChunkX-trbXctypes.c_longdoublerc(hhX>http://docs.python.org/library/ctypes.html#ctypes.c_longdoubleX-trdXurllib2.HTTPRedirectHandlerre(hhXGhttp://docs.python.org/library/urllib2.html#urllib2.HTTPRedirectHandlerX-trfXxml.sax.handler.ContentHandlerrg(hhXRhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandlerX-trhXdecimal.DivisionByZerori(hhXBhttp://docs.python.org/library/decimal.html#decimal.DivisionByZeroX-trjXurllib2.HTTPBasicAuthHandlerrk(hhXHhttp://docs.python.org/library/urllib2.html#urllib2.HTTPBasicAuthHandlerX-trlXio.BufferedRWPairrm(hhX8http://docs.python.org/library/io.html#io.BufferedRWPairX-trnXurllib.URLopenerro(hhX;http://docs.python.org/library/urllib.html#urllib.URLopenerX-trpX)SimpleHTTPServer.SimpleHTTPRequestHandlerrq(hhX^http://docs.python.org/library/simplehttpserver.html#SimpleHTTPServer.SimpleHTTPRequestHandlerX-trrXnumbers.Numberrs(hhX:http://docs.python.org/library/numbers.html#numbers.NumberX-trtXhotshot.Profileru(hhX;http://docs.python.org/library/hotshot.html#hotshot.ProfileX-trvXstring.Templaterw(hhX:http://docs.python.org/library/string.html#string.TemplateX-trxX#test.test_support.TransientResourcery(hhXLhttp://docs.python.org/library/test.html#test.test_support.TransientResourceX-trzXmsilib.Featurer{(hhX9http://docs.python.org/library/msilib.html#msilib.FeatureX-tr|Xcodeop.CommandCompilerr}(hhXAhttp://docs.python.org/library/codeop.html#codeop.CommandCompilerX-tr~Xdoctest.DocTestRunnerr(hhXAhttp://docs.python.org/library/doctest.html#doctest.DocTestRunnerX-trXctypes.c_ubyter(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_ubyteX-trXdecimal.Roundedr(hhX;http://docs.python.org/library/decimal.html#decimal.RoundedX-trX!urllib2.AbstractDigestAuthHandlerr(hhXMhttp://docs.python.org/library/urllib2.html#urllib2.AbstractDigestAuthHandlerX-trXurllib2.HTTPDigestAuthHandlerr(hhXIhttp://docs.python.org/library/urllib2.html#urllib2.HTTPDigestAuthHandlerX-trXTix.OptionMenur(hhX6http://docs.python.org/library/tix.html#Tix.OptionMenuX-trXcollections.Iterabler(hhXDhttp://docs.python.org/library/collections.html#collections.IterableX-trXcollections.ValuesViewr(hhXFhttp://docs.python.org/library/collections.html#collections.ValuesViewX-trXctypes.c_char_pr(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_char_pX-trX ctypes.c_uintr(hhX8http://docs.python.org/library/ctypes.html#ctypes.c_uintX-trXurllib2.FileHandlerr(hhX?http://docs.python.org/library/urllib2.html#urllib2.FileHandlerX-trXlogging.StreamHandlerr(hhXJhttp://docs.python.org/library/logging.handlers.html#logging.StreamHandlerX-trXfileinput.FileInputr(hhXAhttp://docs.python.org/library/fileinput.html#fileinput.FileInputX-trXimaplib.IMAP4_SSLr(hhX=http://docs.python.org/library/imaplib.html#imaplib.IMAP4_SSLX-trXemail.generator.Generatorr(hhXMhttp://docs.python.org/library/email.generator.html#email.generator.GeneratorX-trXtime.struct_timer(hhX9http://docs.python.org/library/time.html#time.struct_timeX-trX*SimpleXMLRPCServer.CGIXMLRPCRequestHandlerr(hhXahttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.CGIXMLRPCRequestHandlerX-trX mailbox.MHr(hhX6http://docs.python.org/library/mailbox.html#mailbox.MHX-trXshelve.DbfilenameShelfr(hhXAhttp://docs.python.org/library/shelve.html#shelve.DbfilenameShelfX-trXxml.etree.ElementTree.Elementr(hhXWhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementX-trXthreading.Timerr(hhX=http://docs.python.org/library/threading.html#threading.TimerX-trXdistutils.ccompiler.CCompilerr(hhXJhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompilerX-trX aetypes.Enumr(hhX8http://docs.python.org/library/aetypes.html#aetypes.EnumX-trXmodulefinder.ModuleFinderr(hhXJhttp://docs.python.org/library/modulefinder.html#modulefinder.ModuleFinderX-trXmultiprocessing.Lockr(hhXHhttp://docs.python.org/library/multiprocessing.html#multiprocessing.LockX-trX ftplib.FTPr(hhX5http://docs.python.org/library/ftplib.html#ftplib.FTPX-trXmailbox.MMDFMessager(hhX?http://docs.python.org/library/mailbox.html#mailbox.MMDFMessageX-trXcollections.MutableSetr(hhXFhttp://docs.python.org/library/collections.html#collections.MutableSetX-trXemail.mime.message.MIMEMessager(hhXMhttp://docs.python.org/library/email.mime.html#email.mime.message.MIMEMessageX-trX-SimpleXMLRPCServer.SimpleXMLRPCRequestHandlerr(hhXdhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCRequestHandlerX-trXctypes.c_void_pr(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_void_pX-trXxml.dom.pulldom.SAX2DOMr(hhXKhttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.SAX2DOMX-trX Tix.Balloonr(hhX3http://docs.python.org/library/tix.html#Tix.BalloonX-trX&argparse.ArgumentDefaultsHelpFormatterr(hhXShttp://docs.python.org/library/argparse.html#argparse.ArgumentDefaultsHelpFormatterX-trXturtle.RawTurtler(hhX;http://docs.python.org/library/turtle.html#turtle.RawTurtleX-trXunittest.TestCaser(hhX>http://docs.python.org/library/unittest.html#unittest.TestCaseX-trXdecimal.BasicContextr(hhX@http://docs.python.org/library/decimal.html#decimal.BasicContextX-trX xml.sax.xmlreader.AttributesImplr(hhXShttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.AttributesImplX-trXthreading.Eventr(hhX=http://docs.python.org/library/threading.html#threading.EventX-trX mhlib.Folderr(hhX6http://docs.python.org/library/mhlib.html#mhlib.FolderX-trXcollections.KeysViewr(hhXDhttp://docs.python.org/library/collections.html#collections.KeysViewX-trXUserDict.IterableUserDictr(hhXFhttp://docs.python.org/library/userdict.html#UserDict.IterableUserDictX-trXlogging.NullHandlerr(hhXHhttp://docs.python.org/library/logging.handlers.html#logging.NullHandlerX-trX"logging.handlers.NTEventLogHandlerr(hhXWhttp://docs.python.org/library/logging.handlers.html#logging.handlers.NTEventLogHandlerX-trX csv.excelr(hhX1http://docs.python.org/library/csv.html#csv.excelX-trX pstats.Statsr(hhX8http://docs.python.org/library/profile.html#pstats.StatsX-trXQueue.LifoQueuer(hhX9http://docs.python.org/library/queue.html#Queue.LifoQueueX-trXmailbox.MHMessager(hhX=http://docs.python.org/library/mailbox.html#mailbox.MHMessageX-trXdoctest.Exampler(hhX;http://docs.python.org/library/doctest.html#doctest.ExampleX-trX turtle.Shaper(hhX7http://docs.python.org/library/turtle.html#turtle.ShapeX-trXsqlite3.Connectionr(hhX>http://docs.python.org/library/sqlite3.html#sqlite3.ConnectionX-trXdecimal.Contextr(hhX;http://docs.python.org/library/decimal.html#decimal.ContextX-trXaetools.TalkTor(hhX:http://docs.python.org/library/aetools.html#aetools.TalkToX-trXdistutils.core.Distributionr(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.core.DistributionX-trX Tkinter.Tkr(hhX6http://docs.python.org/library/tkinter.html#Tkinter.TkX-trX turtle.Screenr(hhX8http://docs.python.org/library/turtle.html#turtle.ScreenX-trXctypes.py_objectr(hhX;http://docs.python.org/library/ctypes.html#ctypes.py_objectX-trX Tix.Controlr(hhX3http://docs.python.org/library/tix.html#Tix.ControlX-trX ttk.Treeviewr(hhX4http://docs.python.org/library/ttk.html#ttk.TreeviewX-trXCookie.SerialCookier(hhX>http://docs.python.org/library/cookie.html#Cookie.SerialCookieX-trXctypes.c_size_tr(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_size_tX-trXemail.header.Headerr(hhXDhttp://docs.python.org/library/email.header.html#email.header.HeaderX-trX#xml.sax.xmlreader.IncrementalParserr(hhXVhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParserX-trXrfc822.Messager(hhX9http://docs.python.org/library/rfc822.html#rfc822.MessageX-trXoptparse.OptionParserr(hhXBhttp://docs.python.org/library/optparse.html#optparse.OptionParserX-trX ctypes.c_charr(hhX8http://docs.python.org/library/ctypes.html#ctypes.c_charX-trX abc.ABCMetar(hhX3http://docs.python.org/library/abc.html#abc.ABCMetaX-trXcookielib.MozillaCookieJarr(hhXHhttp://docs.python.org/library/cookielib.html#cookielib.MozillaCookieJarX-trXConfigParser.SafeConfigParserr(hhXNhttp://docs.python.org/library/configparser.html#ConfigParser.SafeConfigParserX-trXStringIO.StringIOr (hhX>http://docs.python.org/library/stringio.html#StringIO.StringIOX-tr X ctypes.c_intr (hhX7http://docs.python.org/library/ctypes.html#ctypes.c_intX-tr Xxml.sax.saxutils.XMLFilterBaser (hhXPhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.XMLFilterBaseX-trXcollections.Callabler(hhXDhttp://docs.python.org/library/collections.html#collections.CallableX-trXdistutils.cmd.Commandr(hhXBhttp://docs.python.org/distutils/apiref.html#distutils.cmd.CommandX-trX io.StringIOr(hhX2http://docs.python.org/library/io.html#io.StringIOX-trXsmtpd.SMTPServerr(hhX:http://docs.python.org/library/smtpd.html#smtpd.SMTPServerX-trX mailbox.mboxr(hhX8http://docs.python.org/library/mailbox.html#mailbox.mboxX-trX msilib.Dialogr(hhX8http://docs.python.org/library/msilib.html#msilib.DialogX-trXcodecs.IncrementalDecoderr(hhXDhttp://docs.python.org/library/codecs.html#codecs.IncrementalDecoderX-trXlogging.handlers.SocketHandlerr(hhXShttp://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandlerX-trX#multiprocessing.connection.Listenerr(hhXWhttp://docs.python.org/library/multiprocessing.html#multiprocessing.connection.ListenerX-tr Xturtle.TurtleScreenr!(hhX>http://docs.python.org/library/turtle.html#turtle.TurtleScreenX-tr"Xjson.JSONEncoderr#(hhX9http://docs.python.org/library/json.html#json.JSONEncoderX-tr$Xxml.sax.xmlreader.InputSourcer%(hhXPhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSourceX-tr&Xmailbox.Messager'(hhX;http://docs.python.org/library/mailbox.html#mailbox.MessageX-tr(Xcsv.DictReaderr)(hhX6http://docs.python.org/library/csv.html#csv.DictReaderX-tr*Xdifflib.HtmlDiffr+(hhX<http://docs.python.org/library/difflib.html#difflib.HtmlDiffX-tr,Xemail.mime.base.MIMEBaser-(hhXGhttp://docs.python.org/library/email.mime.html#email.mime.base.MIMEBaseX-tr.X ttk.Styler/(hhX1http://docs.python.org/library/ttk.html#ttk.StyleX-tr0Xctypes.HRESULTr1(hhX9http://docs.python.org/library/ctypes.html#ctypes.HRESULTX-tr2Xthreading.localr3(hhX=http://docs.python.org/library/threading.html#threading.localX-tr4Xunittest.TestLoaderr5(hhX@http://docs.python.org/library/unittest.html#unittest.TestLoaderX-tr6Xio.BufferedReaderr7(hhX8http://docs.python.org/library/io.html#io.BufferedReaderX-tr8Xmultiprocessing.Processr9(hhXKhttp://docs.python.org/library/multiprocessing.html#multiprocessing.ProcessX-tr:Xcookielib.Cookier;(hhX>http://docs.python.org/library/cookielib.html#cookielib.CookieX-tr<Xstring.Formatterr=(hhX;http://docs.python.org/library/string.html#string.FormatterX-tr>X weakref.refr?(hhX7http://docs.python.org/library/weakref.html#weakref.refX-tr@Xcode.InteractiveConsolerA(hhX@http://docs.python.org/library/code.html#code.InteractiveConsoleX-trBXhttplib.HTTPMessagerC(hhX?http://docs.python.org/library/httplib.html#httplib.HTTPMessageX-trDX)logging.handlers.TimedRotatingFileHandlerrE(hhX^http://docs.python.org/library/logging.handlers.html#logging.handlers.TimedRotatingFileHandlerX-trFXturtle.ScrolledCanvasrG(hhX@http://docs.python.org/library/turtle.html#turtle.ScrolledCanvasX-trHX%distutils.command.bdist_msi.bdist_msirI(hhXRhttp://docs.python.org/distutils/apiref.html#distutils.command.bdist_msi.bdist_msiX-trJXurllib2.HTTPDefaultErrorHandlerrK(hhXKhttp://docs.python.org/library/urllib2.html#urllib2.HTTPDefaultErrorHandlerX-trLXtarfile.TarInforM(hhX;http://docs.python.org/library/tarfile.html#tarfile.TarInfoX-trNXzipfile.PyZipFilerO(hhX=http://docs.python.org/library/zipfile.html#zipfile.PyZipFileX-trPXhtmllib.HTMLParserrQ(hhX>http://docs.python.org/library/htmllib.html#htmllib.HTMLParserX-trRXmsilib.RadioButtonGrouprS(hhXBhttp://docs.python.org/library/msilib.html#msilib.RadioButtonGroupX-trTXaetypes.UnknownrU(hhX;http://docs.python.org/library/aetypes.html#aetypes.UnknownX-trVXre.RegexObjectrW(hhX5http://docs.python.org/library/re.html#re.RegexObjectX-trXX imaplib.IMAP4rY(hhX9http://docs.python.org/library/imaplib.html#imaplib.IMAP4X-trZXlogging.handlers.MemoryHandlerr[(hhXShttp://docs.python.org/library/logging.handlers.html#logging.handlers.MemoryHandlerX-tr\Xjson.JSONDecoderr](hhX9http://docs.python.org/library/json.html#json.JSONDecoderX-tr^X(wsgiref.simple_server.WSGIRequestHandlerr_(hhXThttp://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIRequestHandlerX-tr`Xdecimal.DecimalExceptionra(hhXDhttp://docs.python.org/library/decimal.html#decimal.DecimalExceptionX-trbXftplib.FTP_TLSrc(hhX9http://docs.python.org/library/ftplib.html#ftplib.FTP_TLSX-trdX ttk.Widgetre(hhX2http://docs.python.org/library/ttk.html#ttk.WidgetX-trfXctypes.c_ssize_trg(hhX;http://docs.python.org/library/ctypes.html#ctypes.c_ssize_tX-trhXlogging.handlers.SMTPHandlerri(hhXQhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SMTPHandlerX-trjXQueue.PriorityQueuerk(hhX=http://docs.python.org/library/queue.html#Queue.PriorityQueueX-trlXformatter.NullFormatterrm(hhXEhttp://docs.python.org/library/formatter.html#formatter.NullFormatterX-trnXtarfile.TarFileCompatro(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarFileCompatX-trpXsetrq(hhX0http://docs.python.org/library/stdtypes.html#setX-trrXxml.sax.xmlreader.Locatorrs(hhXLhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.LocatorX-trtXdistutils.core.Commandru(hhXChttp://docs.python.org/distutils/apiref.html#distutils.core.CommandX-trvXio.TextIOWrapperrw(hhX7http://docs.python.org/library/io.html#io.TextIOWrapperX-trxXre.MatchObjectry(hhX5http://docs.python.org/library/re.html#re.MatchObjectX-trzXTix.DirSelectDialogr{(hhX;http://docs.python.org/library/tix.html#Tix.DirSelectDialogX-tr|Xwsgiref.handlers.BaseHandlerr}(hhXHhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandlerX-tr~XMimeWriter.MimeWriterr(hhXDhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriterX-trXdecimal.Clampedr(hhX;http://docs.python.org/library/decimal.html#decimal.ClampedX-trXnumbers.Rationalr(hhX<http://docs.python.org/library/numbers.html#numbers.RationalX-trXcompiler.ast.Noder(hhX>http://docs.python.org/library/compiler.html#compiler.ast.NodeX-trXmailbox.PortableUnixMailboxr(hhXGhttp://docs.python.org/library/mailbox.html#mailbox.PortableUnixMailboxX-trXimaplib.IMAP4_streamr(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4_streamX-trXCookie.SmartCookier(hhX=http://docs.python.org/library/cookie.html#Cookie.SmartCookieX-trXcollections.Containerr(hhXEhttp://docs.python.org/library/collections.html#collections.ContainerX-trX turtle.RawPenr(hhX8http://docs.python.org/library/turtle.html#turtle.RawPenX-trXpdb.Pdbr(hhX/http://docs.python.org/library/pdb.html#pdb.PdbX-trXhttplib.HTTPConnectionr(hhXBhttp://docs.python.org/library/httplib.html#httplib.HTTPConnectionX-trXweakref.WeakKeyDictionaryr(hhXEhttp://docs.python.org/library/weakref.html#weakref.WeakKeyDictionaryX-trXmimetools.Messager(hhX?http://docs.python.org/library/mimetools.html#mimetools.MessageX-trXxml.sax.handler.EntityResolverr(hhXRhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.EntityResolverX-trXcookielib.DefaultCookiePolicyr(hhXKhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicyX-trXcodecs.StreamReaderr(hhX>http://docs.python.org/library/codecs.html#codecs.StreamReaderX-trX urllib2.AbstractBasicAuthHandlerr(hhXLhttp://docs.python.org/library/urllib2.html#urllib2.AbstractBasicAuthHandlerX-trXctypes.LibraryLoaderr(hhX?http://docs.python.org/library/ctypes.html#ctypes.LibraryLoaderX-trXsmtpd.MailmanProxyr(hhX<http://docs.python.org/library/smtpd.html#smtpd.MailmanProxyX-trXmailbox.Maildirr(hhX;http://docs.python.org/library/mailbox.html#mailbox.MaildirX-trXwsgiref.util.FileWrapperr(hhXDhttp://docs.python.org/library/wsgiref.html#wsgiref.util.FileWrapperX-trXaetypes.QDRectangler(hhX?http://docs.python.org/library/aetypes.html#aetypes.QDRectangleX-trXcollections.MappingViewr(hhXGhttp://docs.python.org/library/collections.html#collections.MappingViewX-trXaetypes.Logicalr(hhX;http://docs.python.org/library/aetypes.html#aetypes.LogicalX-trXimp.NullImporterr(hhX8http://docs.python.org/library/imp.html#imp.NullImporterX-trXsymtable.Functionr(hhX>http://docs.python.org/library/symtable.html#symtable.FunctionX-trXmultiprocessing.JoinableQueuer(hhXQhttp://docs.python.org/library/multiprocessing.html#multiprocessing.JoinableQueueX-trXpoplib.POP3_SSLr(hhX:http://docs.python.org/library/poplib.html#poplib.POP3_SSLX-trX$argparse.RawDescriptionHelpFormatterr(hhXQhttp://docs.python.org/library/argparse.html#argparse.RawDescriptionHelpFormatterX-trX&email.mime.application.MIMEApplicationr(hhXUhttp://docs.python.org/library/email.mime.html#email.mime.application.MIMEApplicationX-trXrandom.WichmannHillr(hhX>http://docs.python.org/library/random.html#random.WichmannHillX-trXio.BufferedWriterr(hhX8http://docs.python.org/library/io.html#io.BufferedWriterX-trX"multiprocessing.managers.BaseProxyr(hhXVhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseProxyX-trXimputil.BuiltinImporterr(hhXChttp://docs.python.org/library/imputil.html#imputil.BuiltinImporterX-trXast.ASTr(hhX/http://docs.python.org/library/ast.html#ast.ASTX-trX datetime.dater(hhX:http://docs.python.org/library/datetime.html#datetime.dateX-trXcollections.Setr(hhX?http://docs.python.org/library/collections.html#collections.SetX-trXctypes.BigEndianStructurer(hhXDhttp://docs.python.org/library/ctypes.html#ctypes.BigEndianStructureX-trXcookielib.CookieJarr(hhXAhttp://docs.python.org/library/cookielib.html#cookielib.CookieJarX-trX datetime.timer(hhX:http://docs.python.org/library/datetime.html#datetime.timeX-trXMiniAEFrame.MiniApplicationr(hhXKhttp://docs.python.org/library/miniaeframe.html#MiniAEFrame.MiniApplicationX-trXbz2.BZ2Compressorr(hhX9http://docs.python.org/library/bz2.html#bz2.BZ2CompressorX-trX multiprocessing.BoundedSemaphorer(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.BoundedSemaphoreX-trXnumbers.Integralr(hhX<http://docs.python.org/library/numbers.html#numbers.IntegralX-trX ctypes.c_byter(hhX8http://docs.python.org/library/ctypes.html#ctypes.c_byteX-trXctypes.c_int16r(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_int16X-trXzipfile.ZipFiler(hhX;http://docs.python.org/library/zipfile.html#zipfile.ZipFileX-trX ctypes.c_boolr(hhX8http://docs.python.org/library/ctypes.html#ctypes.c_boolX-trXcalendar.Calendarr(hhX>http://docs.python.org/library/calendar.html#calendar.CalendarX-trX*DocXMLRPCServer.DocCGIXMLRPCRequestHandlerr(hhX^http://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocCGIXMLRPCRequestHandlerX-trXformatter.AbstractFormatterr(hhXIhttp://docs.python.org/library/formatter.html#formatter.AbstractFormatterX-trXurllib2.Requestr(hhX;http://docs.python.org/library/urllib2.html#urllib2.RequestX-trXdecimal.Decimalr(hhX;http://docs.python.org/library/decimal.html#decimal.DecimalX-trXcodecs.StreamReaderWriterr(hhXDhttp://docs.python.org/library/codecs.html#codecs.StreamReaderWriterX-trXurllib2.ProxyHandlerr(hhX@http://docs.python.org/library/urllib2.html#urllib2.ProxyHandlerX-trXTix.LabelFramer(hhX6http://docs.python.org/library/tix.html#Tix.LabelFrameX-trXmailbox.BabylMailboxr(hhX@http://docs.python.org/library/mailbox.html#mailbox.BabylMailboxX-trXaetypes.AETextr(hhX:http://docs.python.org/library/aetypes.html#aetypes.AETextX-trXmultiprocessing.Eventr(hhXIhttp://docs.python.org/library/multiprocessing.html#multiprocessing.EventX-trXimputil.Importerr(hhX<http://docs.python.org/library/imputil.html#imputil.ImporterX-trXxdrlib.Unpackerr(hhX:http://docs.python.org/library/xdrlib.html#xdrlib.UnpackerX-trX"email.mime.multipart.MIMEMultipartr(hhXQhttp://docs.python.org/library/email.mime.html#email.mime.multipart.MIMEMultipartX-trXctypes.c_uint16r(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_uint16X-trXBastion.BastionClassr(hhX@http://docs.python.org/library/bastion.html#Bastion.BastionClassX-trXurllib2.FTPHandlerr(hhX>http://docs.python.org/library/urllib2.html#urllib2.FTPHandlerX-trXmultiprocessing.RLockr(hhXIhttp://docs.python.org/library/multiprocessing.html#multiprocessing.RLockX-trXwsgiref.handlers.SimpleHandlerr(hhXJhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.SimpleHandlerX-trXctypes.c_uint8r(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_uint8X-trXurlparse.BaseResultr(hhX@http://docs.python.org/library/urlparse.html#urlparse.BaseResultX-trXpipes.Templater (hhX8http://docs.python.org/library/pipes.html#pipes.TemplateX-tr Xctypes._FuncPtrr (hhX:http://docs.python.org/library/ctypes.html#ctypes._FuncPtrX-tr Xdictr (hhX1http://docs.python.org/library/stdtypes.html#dictX-trXtextwrap.TextWrapperr(hhXAhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapperX-trXTix.Treer(hhX0http://docs.python.org/library/tix.html#Tix.TreeX-trXzipfile.ZipInfor(hhX;http://docs.python.org/library/zipfile.html#zipfile.ZipInfoX-trXsets.ImmutableSetr(hhX:http://docs.python.org/library/sets.html#sets.ImmutableSetX-trX Tix.Selectr(hhX2http://docs.python.org/library/tix.html#Tix.SelectX-trXUserDict.UserDictr(hhX>http://docs.python.org/library/userdict.html#UserDict.UserDictX-trXpickle.Unpicklerr(hhX;http://docs.python.org/library/pickle.html#pickle.UnpicklerX-trXBaseHTTPServer.HTTPServerr(hhXLhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.HTTPServerX-trXrfc822.AddressListr(hhX=http://docs.python.org/library/rfc822.html#rfc822.AddressListX-tr Xctypes.c_uint64r!(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_uint64X-tr"Ximputil.ImportManagerr#(hhXAhttp://docs.python.org/library/imputil.html#imputil.ImportManagerX-tr$Xthreading.Conditionr%(hhXAhttp://docs.python.org/library/threading.html#threading.ConditionX-tr&Xemail.mime.audio.MIMEAudior'(hhXIhttp://docs.python.org/library/email.mime.html#email.mime.audio.MIMEAudioX-tr(Xsets.Setr)(hhX1http://docs.python.org/library/sets.html#sets.SetX-tr*X ctypes.CDLLr+(hhX6http://docs.python.org/library/ctypes.html#ctypes.CDLLX-tr,Xcollections.Hashabler-(hhXDhttp://docs.python.org/library/collections.html#collections.HashableX-tr.Xcollections.dequer/(hhXAhttp://docs.python.org/library/collections.html#collections.dequeX-tr0Xic.ICr1(hhX,http://docs.python.org/library/ic.html#ic.ICX-tr2Xmsilib.Directoryr3(hhX;http://docs.python.org/library/msilib.html#msilib.DirectoryX-tr4X Tix.PopupMenur5(hhX5http://docs.python.org/library/tix.html#Tix.PopupMenuX-tr6Xwarnings.catch_warningsr7(hhXDhttp://docs.python.org/library/warnings.html#warnings.catch_warningsX-tr8Xctypes.c_floatr9(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_floatX-tr:X xdrlib.Packerr;(hhX8http://docs.python.org/library/xdrlib.html#xdrlib.PackerX-tr<X Tix.Meterr=(hhX1http://docs.python.org/library/tix.html#Tix.MeterX-tr>Xasyncore.dispatcher_with_sendr?(hhXJhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher_with_sendX-tr@X ctypes.PyDLLrA(hhX7http://docs.python.org/library/ctypes.html#ctypes.PyDLLX-trBXsymtable.SymbolTablerC(hhXAhttp://docs.python.org/library/symtable.html#symtable.SymbolTableX-trDX csv.DialectrE(hhX3http://docs.python.org/library/csv.html#csv.DialectX-trFX$multiprocessing.managers.SyncManagerrG(hhXXhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManagerX-trHXemail.message.MessagerI(hhXGhttp://docs.python.org/library/email.message.html#email.message.MessageX-trJXcodecs.StreamWriterrK(hhX>http://docs.python.org/library/codecs.html#codecs.StreamWriterX-trLX ctypes.c_longrM(hhX8http://docs.python.org/library/ctypes.html#ctypes.c_longX-trNXcollections.SequencerO(hhXDhttp://docs.python.org/library/collections.html#collections.SequenceX-trPXdecimal.SubnormalrQ(hhX=http://docs.python.org/library/decimal.html#decimal.SubnormalX-trRXmailbox.MHMailboxrS(hhX=http://docs.python.org/library/mailbox.html#mailbox.MHMailboxX-trTXctypes.c_wcharrU(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_wcharX-trVXcollections.defaultdictrW(hhXGhttp://docs.python.org/library/collections.html#collections.defaultdictX-trXXdecimal.InexactrY(hhX;http://docs.python.org/library/decimal.html#decimal.InexactX-trZX Cookie.Morselr[(hhX8http://docs.python.org/library/cookie.html#Cookie.MorselX-tr\X wsgiref.simple_server.WSGIServerr](hhXLhttp://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIServerX-tr^Xmultiprocessing.Conditionr_(hhXMhttp://docs.python.org/library/multiprocessing.html#multiprocessing.ConditionX-tr`X smtplib.SMTPra(hhX8http://docs.python.org/library/smtplib.html#smtplib.SMTPX-trbXio.IncrementalNewlineDecoderrc(hhXChttp://docs.python.org/library/io.html#io.IncrementalNewlineDecoderX-trdX Tix.DirTreere(hhX3http://docs.python.org/library/tix.html#Tix.DirTreeX-trfX frozensetrg(hhX6http://docs.python.org/library/stdtypes.html#frozensetX-trhXemail.mime.text.MIMETextri(hhXGhttp://docs.python.org/library/email.mime.html#email.mime.text.MIMETextX-trjX!xml.etree.ElementTree.ElementTreerk(hhX[http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTreeX-trlXargparse.RawTextHelpFormatterrm(hhXJhttp://docs.python.org/library/argparse.html#argparse.RawTextHelpFormatterX-trnXthreading.Threadro(hhX>http://docs.python.org/library/threading.html#threading.ThreadX-trpXctypes.c_longlongrq(hhX<http://docs.python.org/library/ctypes.html#ctypes.c_longlongX-trrXmultiprocessing.Queuers(hhXIhttp://docs.python.org/library/multiprocessing.html#multiprocessing.QueueX-trtXcmd.Cmdru(hhX/http://docs.python.org/library/cmd.html#cmd.CmdX-trvXunittest.FunctionTestCaserw(hhXFhttp://docs.python.org/library/unittest.html#unittest.FunctionTestCaseX-trxX Tix.DirListry(hhX3http://docs.python.org/library/tix.html#Tix.DirListX-trzXoptparse.OptionGroupr{(hhXAhttp://docs.python.org/library/optparse.html#optparse.OptionGroupX-tr|Xdifflib.Differr}(hhX:http://docs.python.org/library/difflib.html#difflib.DifferX-tr~X2multiprocessing.multiprocessing.queues.SimpleQueuer(hhXfhttp://docs.python.org/library/multiprocessing.html#multiprocessing.multiprocessing.queues.SimpleQueueX-trX ctypes.c_int8r(hhX8http://docs.python.org/library/ctypes.html#ctypes.c_int8X-trX smtplib.LMTPr(hhX8http://docs.python.org/library/smtplib.html#smtplib.LMTPX-trX plistlib.Datar(hhX:http://docs.python.org/library/plistlib.html#plistlib.DataX-trXsmtplib.SMTP_SSLr(hhX<http://docs.python.org/library/smtplib.html#smtplib.SMTP_SSLX-trXmailbox.mboxMessager(hhX?http://docs.python.org/library/mailbox.html#mailbox.mboxMessageX-trXTix.tixCommandr(hhX6http://docs.python.org/library/tix.html#Tix.tixCommandX-trXunittest.TextTestRunnerr(hhXDhttp://docs.python.org/library/unittest.html#unittest.TextTestRunnerX-trXmimetypes.MimeTypesr(hhXAhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypesX-trXUserString.UserStringr(hhXBhttp://docs.python.org/library/userdict.html#UserString.UserStringX-trXctypes.c_doubler(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_doubleX-trXMiniAEFrame.AEServerr(hhXDhttp://docs.python.org/library/miniaeframe.html#MiniAEFrame.AEServerX-trXgettext.NullTranslationsr(hhXDhttp://docs.python.org/library/gettext.html#gettext.NullTranslationsX-trX popen2.Popen4r(hhX8http://docs.python.org/library/popen2.html#popen2.Popen4X-trX!xml.etree.ElementTree.TreeBuilderr(hhX[http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.TreeBuilderX-trX ctypes.WinDLLr(hhX8http://docs.python.org/library/ctypes.html#ctypes.WinDLLX-trXpickle.Picklerr(hhX9http://docs.python.org/library/pickle.html#pickle.PicklerX-trXctypes.c_ulongr(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_ulongX-trXurlparse.ParseResultr(hhXAhttp://docs.python.org/library/urlparse.html#urlparse.ParseResultX-trXpkgutil.ImpLoaderr(hhX=http://docs.python.org/library/pkgutil.html#pkgutil.ImpLoaderX-trX#logging.handlers.WatchedFileHandlerr(hhXXhttp://docs.python.org/library/logging.handlers.html#logging.handlers.WatchedFileHandlerX-trX uuid.UUIDr(hhX2http://docs.python.org/library/uuid.html#uuid.UUIDX-trXwsgiref.handlers.BaseCGIHandlerr(hhXKhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseCGIHandlerX-trXcurses.textpad.Textboxr(hhXAhttp://docs.python.org/library/curses.html#curses.textpad.TextboxX-trXaetypes.ComponentItemr(hhXAhttp://docs.python.org/library/aetypes.html#aetypes.ComponentItemX-trX turtle.Turtler(hhX8http://docs.python.org/library/turtle.html#turtle.TurtleX-trXsymtable.Classr(hhX;http://docs.python.org/library/symtable.html#symtable.ClassX-trXrandom.SystemRandomr(hhX>http://docs.python.org/library/random.html#random.SystemRandomX-trXsqlite3.Cursorr(hhX:http://docs.python.org/library/sqlite3.html#sqlite3.CursorX-trXUserString.MutableStringr(hhXEhttp://docs.python.org/library/userdict.html#UserString.MutableStringX-trXrobotparser.RobotFileParserr(hhXKhttp://docs.python.org/library/robotparser.html#robotparser.RobotFileParserX-trXxml.dom.pulldom.DOMEventStreamr(hhXRhttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStreamX-trXtarfile.TarFiler(hhX;http://docs.python.org/library/tarfile.html#tarfile.TarFileX-trXcalendar.HTMLCalendarr(hhXBhttp://docs.python.org/library/calendar.html#calendar.HTMLCalendarX-trXemail.mime.image.MIMEImager(hhXIhttp://docs.python.org/library/email.mime.html#email.mime.image.MIMEImageX-trX%SimpleXMLRPCServer.SimpleXMLRPCServerr(hhX\http://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCServerX-trXdifflib.SequenceMatcherr(hhXChttp://docs.python.org/library/difflib.html#difflib.SequenceMatcherX-trX asynchat.fifor(hhX:http://docs.python.org/library/asynchat.html#asynchat.fifoX-trX%test.test_support.EnvironmentVarGuardr(hhXNhttp://docs.python.org/library/test.html#test.test_support.EnvironmentVarGuardX-trXaetypes.Ordinalr(hhX;http://docs.python.org/library/aetypes.html#aetypes.OrdinalX-trXDocXMLRPCServer.DocXMLRPCServerr(hhXShttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocXMLRPCServerX-trXmailbox.MaildirMessager(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessageX-trXSocketServer.BaseServerr(hhXHhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServerX-trXlogging.Formatterr(hhX=http://docs.python.org/library/logging.html#logging.FormatterX-trXlogging.LoggerAdapterr(hhXAhttp://docs.python.org/library/logging.html#logging.LoggerAdapterX-trX$multiprocessing.managers.BaseManagerr(hhXXhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManagerX-trXxml.etree.ElementTree.QNamer(hhXUhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.QNameX-trXcodeop.Compiler(hhX9http://docs.python.org/library/codeop.html#codeop.CompileX-trXurllib2.UnknownHandlerr(hhXBhttp://docs.python.org/library/urllib2.html#urllib2.UnknownHandlerX-trX Tix.TListr(hhX1http://docs.python.org/library/tix.html#Tix.TListX-trXthreading.Semaphorer(hhXAhttp://docs.python.org/library/threading.html#threading.SemaphoreX-trXbdb.Breakpointr(hhX6http://docs.python.org/library/bdb.html#bdb.BreakpointX-trXunittest.TestResultr(hhX@http://docs.python.org/library/unittest.html#unittest.TestResultX-trX sqlite3.Rowr(hhX7http://docs.python.org/library/sqlite3.html#sqlite3.RowX-trX#CGIHTTPServer.CGIHTTPRequestHandlerr(hhXUhttp://docs.python.org/library/cgihttpserver.html#CGIHTTPServer.CGIHTTPRequestHandlerX-trXdecimal.ExtendedContextr(hhXChttp://docs.python.org/library/decimal.html#decimal.ExtendedContextX-trXcalendar.TextCalendarr(hhXBhttp://docs.python.org/library/calendar.html#calendar.TextCalendarX-trXUserList.UserListr(hhX>http://docs.python.org/library/userdict.html#UserList.UserListX-trX Tix.InputOnlyr(hhX5http://docs.python.org/library/tix.html#Tix.InputOnlyX-trX io.RawIOBaser(hhX3http://docs.python.org/library/io.html#io.RawIOBaseX-trXmultifile.MultiFiler(hhXAhttp://docs.python.org/library/multifile.html#multifile.MultiFileX-trXformatter.DumbWriterr(hhXBhttp://docs.python.org/library/formatter.html#formatter.DumbWriterX-trX'DocXMLRPCServer.DocXMLRPCRequestHandlerr(hhX[http://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocXMLRPCRequestHandlerX-trX ttk.Notebookr(hhX4http://docs.python.org/library/ttk.html#ttk.NotebookX-trX"distutils.fancy_getopt.FancyGetoptr(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.fancy_getopt.FancyGetoptX-trX shlex.shlexr(hhX5http://docs.python.org/library/shlex.html#shlex.shlexX-trX rexec.RExecr(hhX5http://docs.python.org/library/rexec.html#rexec.RExecX-trXdecimal.Underflowr(hhX=http://docs.python.org/library/decimal.html#decimal.UnderflowX-trX"test.test_support.WarningsRecorderr(hhXKhttp://docs.python.org/library/test.html#test.test_support.WarningsRecorderX-trXcollections.Counterr (hhXChttp://docs.python.org/library/collections.html#collections.CounterX-tr Xdoctest.DocTestFinderr (hhXAhttp://docs.python.org/library/doctest.html#doctest.DocTestFinderX-tr Xmailbox.Mailboxr (hhX;http://docs.python.org/library/mailbox.html#mailbox.MailboxX-trXdatetime.datetimer(hhX>http://docs.python.org/library/datetime.html#datetime.datetimeX-trXcookielib.LWPCookieJarr(hhXDhttp://docs.python.org/library/cookielib.html#cookielib.LWPCookieJarX-trXast.NodeTransformerr(hhX;http://docs.python.org/library/ast.html#ast.NodeTransformerX-trX mmap.mmapr(hhX2http://docs.python.org/library/mmap.html#mmap.mmapX-trXasyncore.file_dispatcherr(hhXEhttp://docs.python.org/library/asyncore.html#asyncore.file_dispatcherX-trX mhlib.Messager(hhX7http://docs.python.org/library/mhlib.html#mhlib.MessageX-trXdoctest.DocTestr(hhX;http://docs.python.org/library/doctest.html#doctest.DocTestX-trXsmtpd.PureProxyr(hhX9http://docs.python.org/library/smtpd.html#smtpd.PureProxyX-trX array.arrayr(hhX5http://docs.python.org/library/array.html#array.arrayX-tr Xhttplib.HTTPSConnectionr!(hhXChttp://docs.python.org/library/httplib.html#httplib.HTTPSConnectionX-tr"Xlogging.handlers.HTTPHandlerr#(hhXQhttp://docs.python.org/library/logging.handlers.html#logging.handlers.HTTPHandlerX-tr$X memoryviewr%(hhX7http://docs.python.org/library/stdtypes.html#memoryviewX-tr&Xargparse.ArgumentParserr'(hhXDhttp://docs.python.org/library/argparse.html#argparse.ArgumentParserX-tr(Xcodecs.IncrementalEncoderr)(hhXDhttp://docs.python.org/library/codecs.html#codecs.IncrementalEncoderX-tr*Xcode.InteractiveInterpreterr+(hhXDhttp://docs.python.org/library/code.html#code.InteractiveInterpreterX-tr,Xaetypes.ObjectSpecifierr-(hhXChttp://docs.python.org/library/aetypes.html#aetypes.ObjectSpecifierX-tr.X generatorr/(hhX;http://docs.python.org/reference/expressions.html#generatorX-tr0Xctypes._SimpleCDatar1(hhX>http://docs.python.org/library/ctypes.html#ctypes._SimpleCDataX-tr2Xio.BufferedRandomr3(hhX8http://docs.python.org/library/io.html#io.BufferedRandomX-tr4Xmultiprocessing.Semaphorer5(hhXMhttp://docs.python.org/library/multiprocessing.html#multiprocessing.SemaphoreX-tr6XConfigParser.ConfigParserr7(hhXJhttp://docs.python.org/library/configparser.html#ConfigParser.ConfigParserX-tr8X bz2.BZ2Filer9(hhX3http://docs.python.org/library/bz2.html#bz2.BZ2FileX-tr:Xdoctest.DebugRunnerr;(hhX?http://docs.python.org/library/doctest.html#doctest.DebugRunnerX-tr<X popen2.Popen3r=(hhX8http://docs.python.org/library/popen2.html#popen2.Popen3X-tr>Xlogging.FileHandlerr?(hhXHhttp://docs.python.org/library/logging.handlers.html#logging.FileHandlerX-tr@Xsched.schedulerrA(hhX9http://docs.python.org/library/sched.html#sched.schedulerX-trBXdecimal.InvalidOperationrC(hhXDhttp://docs.python.org/library/decimal.html#decimal.InvalidOperationX-trDX Tix.ComboBoxrE(hhX4http://docs.python.org/library/tix.html#Tix.ComboBoxX-trFXsymtable.SymbolrG(hhX<http://docs.python.org/library/symtable.html#symtable.SymbolX-trHX email.generator.DecodedGeneratorrI(hhXThttp://docs.python.org/library/email.generator.html#email.generator.DecodedGeneratorX-trJXaetypes.IntlTextrK(hhX<http://docs.python.org/library/aetypes.html#aetypes.IntlTextX-trLX Queue.QueuerM(hhX5http://docs.python.org/library/queue.html#Queue.QueueX-trNXsubprocess.STARTUPINFOrO(hhXEhttp://docs.python.org/library/subprocess.html#subprocess.STARTUPINFOX-trPXxml.sax.saxutils.XMLGeneratorrQ(hhXOhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.XMLGeneratorX-trRXxml.sax.handler.DTDHandlerrS(hhXNhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.DTDHandlerX-trTXaetypes.ComparisonrU(hhX>http://docs.python.org/library/aetypes.html#aetypes.ComparisonX-trVXunittest.TestSuiterW(hhX?http://docs.python.org/library/unittest.html#unittest.TestSuiteX-trXXdecimal.OverflowrY(hhX<http://docs.python.org/library/decimal.html#decimal.OverflowX-trZXemail.parser.Parserr[(hhXDhttp://docs.python.org/library/email.parser.html#email.parser.ParserX-tr\XCookie.BaseCookier](hhX<http://docs.python.org/library/cookie.html#Cookie.BaseCookieX-tr^Xcollections.OrderedDictr_(hhXGhttp://docs.python.org/library/collections.html#collections.OrderedDictX-tr`Ximputil.DynLoadSuffixImporterra(hhXIhttp://docs.python.org/library/imputil.html#imputil.DynLoadSuffixImporterX-trbXshelve.BsdDbShelfrc(hhX<http://docs.python.org/library/shelve.html#shelve.BsdDbShelfX-trdX aetypes.Typere(hhX8http://docs.python.org/library/aetypes.html#aetypes.TypeX-trfX io.IOBaserg(hhX0http://docs.python.org/library/io.html#io.IOBaseX-trhXaetypes.Keywordri(hhX;http://docs.python.org/library/aetypes.html#aetypes.KeywordX-trjXaetypes.Booleanrk(hhX;http://docs.python.org/library/aetypes.html#aetypes.BooleanX-trlXttk.Progressbarrm(hhX7http://docs.python.org/library/ttk.html#ttk.ProgressbarX-trnXctypes.Structurero(hhX;http://docs.python.org/library/ctypes.html#ctypes.StructureX-trpX ctypes.OleDLLrq(hhX8http://docs.python.org/library/ctypes.html#ctypes.OleDLLX-trrXsmtpd.DebuggingServerrs(hhX?http://docs.python.org/library/smtpd.html#smtpd.DebuggingServerX-trtXweakref.WeakValueDictionaryru(hhXGhttp://docs.python.org/library/weakref.html#weakref.WeakValueDictionaryX-trvX ttk.Comboboxrw(hhX4http://docs.python.org/library/ttk.html#ttk.ComboboxX-trxX!logging.handlers.BufferingHandlerry(hhXVhttp://docs.python.org/library/logging.handlers.html#logging.handlers.BufferingHandlerX-trzXaetypes.StyledTextr{(hhX>http://docs.python.org/library/aetypes.html#aetypes.StyledTextX-tr|Xemail.charset.Charsetr}(hhXGhttp://docs.python.org/library/email.charset.html#email.charset.CharsetX-tr~Xcollections.Sizedr(hhXAhttp://docs.python.org/library/collections.html#collections.SizedX-trXctypes.c_int64r(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_int64X-trXcollections.Mappingr(hhXChttp://docs.python.org/library/collections.html#collections.MappingX-trX)multiprocessing.pool.multiprocessing.Poolr(hhX]http://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.PoolX-trX Tix.FileEntryr(hhX5http://docs.python.org/library/tix.html#Tix.FileEntryX-trX msilib.CABr(hhX5http://docs.python.org/library/msilib.html#msilib.CABX-trXmhlib.MHr(hhX2http://docs.python.org/library/mhlib.html#mhlib.MHX-trXmultiprocessing.Connectionr(hhXNhttp://docs.python.org/library/multiprocessing.html#multiprocessing.ConnectionX-trXurllib2.HTTPHandlerr(hhX?http://docs.python.org/library/urllib2.html#urllib2.HTTPHandlerX-trX mutex.mutexr(hhX5http://docs.python.org/library/mutex.html#mutex.mutexX-trX trace.Tracer(hhX5http://docs.python.org/library/trace.html#trace.TraceX-trXlogging.Loggerr(hhX:http://docs.python.org/library/logging.html#logging.LoggerX-trXaetypes.RGBColorr(hhX<http://docs.python.org/library/aetypes.html#aetypes.RGBColorX-trXbdb.Bdbr(hhX/http://docs.python.org/library/bdb.html#bdb.BdbX-trX timeit.Timerr(hhX7http://docs.python.org/library/timeit.html#timeit.TimerX-trX'urllib2.HTTPPasswordMgrWithDefaultRealmr(hhXShttp://docs.python.org/library/urllib2.html#urllib2.HTTPPasswordMgrWithDefaultRealmX-trXnumbers.Complexr(hhX;http://docs.python.org/library/numbers.html#numbers.ComplexX-trXcalendar.LocaleHTMLCalendarr(hhXHhttp://docs.python.org/library/calendar.html#calendar.LocaleHTMLCalendarX-trXurllib2.OpenerDirectorr(hhXBhttp://docs.python.org/library/urllib2.html#urllib2.OpenerDirectorX-trX msilib.Binaryr(hhX8http://docs.python.org/library/msilib.html#msilib.BinaryX-trX mailbox.MMDFr(hhX8http://docs.python.org/library/mailbox.html#mailbox.MMDFX-trXctypes.LittleEndianStructurer(hhXGhttp://docs.python.org/library/ctypes.html#ctypes.LittleEndianStructureX-trX io.BytesIOr(hhX1http://docs.python.org/library/io.html#io.BytesIOX-trXfractions.Fractionr(hhX@http://docs.python.org/library/fractions.html#fractions.FractionX-trX%BaseHTTPServer.BaseHTTPRequestHandlerr(hhXXhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandlerX-trXurllib2.HTTPCookieProcessorr(hhXGhttp://docs.python.org/library/urllib2.html#urllib2.HTTPCookieProcessorX-trXdistutils.core.Extensionr(hhXEhttp://docs.python.org/distutils/apiref.html#distutils.core.ExtensionX-trXTix.PanedWindowr(hhX7http://docs.python.org/library/tix.html#Tix.PanedWindowX-trXtelnetlib.Telnetr(hhX>http://docs.python.org/library/telnetlib.html#telnetlib.TelnetX-trXUserDict.DictMixinr(hhX?http://docs.python.org/library/userdict.html#UserDict.DictMixinX-trXTix.ListNoteBookr(hhX8http://docs.python.org/library/tix.html#Tix.ListNoteBookX-trXctypes.c_int32r(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_int32X-trXxmlrpclib.MultiCallr(hhXAhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.MultiCallX-trXurllib2.BaseHandlerr(hhX?http://docs.python.org/library/urllib2.html#urllib2.BaseHandlerX-trXurllib2.HTTPPasswordMgrr(hhXChttp://docs.python.org/library/urllib2.html#urllib2.HTTPPasswordMgrX-trXTix.ExFileSelectBoxr(hhX;http://docs.python.org/library/tix.html#Tix.ExFileSelectBoxX-trXformatter.NullWriterr(hhXBhttp://docs.python.org/library/formatter.html#formatter.NullWriterX-trX struct.Structr(hhX8http://docs.python.org/library/struct.html#struct.StructX-trXcookielib.CookiePolicyr(hhXDhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicyX-trXformatter.AbstractWriterr(hhXFhttp://docs.python.org/library/formatter.html#formatter.AbstractWriterX-trXdoctest.DocTestParserr(hhXAhttp://docs.python.org/library/doctest.html#doctest.DocTestParserX-trXmailbox.UnixMailboxr(hhX?http://docs.python.org/library/mailbox.html#mailbox.UnixMailboxX-trXdistutils.text_file.TextFiler(hhXIhttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFileX-trXctypes.c_wchar_pr(hhX;http://docs.python.org/library/ctypes.html#ctypes.c_wchar_pX-trXxml.etree.ElementTree.XMLParserr(hhXYhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.XMLParserX-trXxml.sax.handler.ErrorHandlerr(hhXPhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ErrorHandlerX-trX Tix.ButtonBoxr(hhX5http://docs.python.org/library/tix.html#Tix.ButtonBoxX-trXweakref.WeakSetr(hhX;http://docs.python.org/library/weakref.html#weakref.WeakSetX-trXxml.sax.xmlreader.XMLReaderr(hhXNhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReaderX-trX csv.Snifferr(hhX3http://docs.python.org/library/csv.html#csv.SnifferX-trXTix.LabelEntryr(hhX6http://docs.python.org/library/tix.html#Tix.LabelEntryX-trXargparse.Namespacer(hhX?http://docs.python.org/library/argparse.html#argparse.NamespaceX-trX ctypes._CDatar(hhX8http://docs.python.org/library/ctypes.html#ctypes._CDataX-trXsgmllib.SGMLParserr(hhX>http://docs.python.org/library/sgmllib.html#sgmllib.SGMLParserX-trXtrace.CoverageResultsr(hhX?http://docs.python.org/library/trace.html#trace.CoverageResultsX-trXTix.StdButtonBoxr(hhX8http://docs.python.org/library/tix.html#Tix.StdButtonBoxX-trX io.FileIOr(hhX0http://docs.python.org/library/io.html#io.FileIOX-trXTix.Tixr(hhX/http://docs.python.org/library/tix.html#Tix.TixX-trXctypes.c_ushortr(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_ushortX-trXctypes.c_uint32r(hhX:http://docs.python.org/library/ctypes.html#ctypes.c_uint32X-trXcodecs.StreamRecoderr(hhX?http://docs.python.org/library/codecs.html#codecs.StreamRecoderX-trXwsgiref.headers.Headersr(hhXChttp://docs.python.org/library/wsgiref.html#wsgiref.headers.HeadersX-trX ctypes.Unionr(hhX7http://docs.python.org/library/ctypes.html#ctypes.UnionX-trXConfigParser.RawConfigParserr(hhXMhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParserX-trX poplib.POP3r(hhX6http://docs.python.org/library/poplib.html#poplib.POP3X-trXdatetime.tzinfor(hhX<http://docs.python.org/library/datetime.html#datetime.tzinfoX-trXurlparse.SplitResultr(hhXAhttp://docs.python.org/library/urlparse.html#urlparse.SplitResultX-trXcsv.DictWriterr(hhX6http://docs.python.org/library/csv.html#csv.DictWriterX-trXdoctest.OutputCheckerr(hhXAhttp://docs.python.org/library/doctest.html#doctest.OutputCheckerX-trXlogging.Filterr (hhX:http://docs.python.org/library/logging.html#logging.FilterX-tr Xhttplib.HTTPResponser (hhX@http://docs.python.org/library/httplib.html#httplib.HTTPResponseX-tr Xctypes.c_ulonglongr (hhX=http://docs.python.org/library/ctypes.html#ctypes.c_ulonglongX-trX(email.mime.nonmultipart.MIMENonMultipartr(hhXWhttp://docs.python.org/library/email.mime.html#email.mime.nonmultipart.MIMENonMultipartX-trXunittest.TextTestResultr(hhXDhttp://docs.python.org/library/unittest.html#unittest.TextTestResultX-trXargparse.FileTyper(hhX>http://docs.python.org/library/argparse.html#argparse.FileTypeX-trXzipimport.zipimporterr(hhXChttp://docs.python.org/library/zipimport.html#zipimport.zipimporterX-trXfilecmp.dircmpr(hhX:http://docs.python.org/library/filecmp.html#filecmp.dircmpX-trX gzip.GzipFiler(hhX6http://docs.python.org/library/gzip.html#gzip.GzipFileX-trX netrc.netrcr(hhX5http://docs.python.org/library/netrc.html#netrc.netrcX-trXlogging.LogRecordr(hhX=http://docs.python.org/library/logging.html#logging.LogRecordX-trXCookie.SimpleCookier(hhX>http://docs.python.org/library/cookie.html#Cookie.SimpleCookieX-tr Xxmlrpclib.ServerProxyr!(hhXChttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ServerProxyX-tr"XTix.FileSelectBoxr#(hhX9http://docs.python.org/library/tix.html#Tix.FileSelectBoxX-tr$Xbz2.BZ2Decompressorr%(hhX;http://docs.python.org/library/bz2.html#bz2.BZ2DecompressorX-tr&XTix.Formr'(hhX0http://docs.python.org/library/tix.html#Tix.FormX-tr(X$logging.handlers.RotatingFileHandlerr)(hhXYhttp://docs.python.org/library/logging.handlers.html#logging.handlers.RotatingFileHandlerX-tr*Xio.BufferedIOBaser+(hhX8http://docs.python.org/library/io.html#io.BufferedIOBaseX-tr,Xctypes.c_shortr-(hhX9http://docs.python.org/library/ctypes.html#ctypes.c_shortX-tr.Xurllib2.ProxyBasicAuthHandlerr/(hhXIhttp://docs.python.org/library/urllib2.html#urllib2.ProxyBasicAuthHandlerX-tr0X mailbox.Babylr1(hhX9http://docs.python.org/library/mailbox.html#mailbox.BabylX-tr2X csv.excel_tabr3(hhX5http://docs.python.org/library/csv.html#csv.excel_tabX-tr4X io.TextIOBaser5(hhX4http://docs.python.org/library/io.html#io.TextIOBaseX-tr6Xurllib2.ProxyDigestAuthHandlerr7(hhXJhttp://docs.python.org/library/urllib2.html#urllib2.ProxyDigestAuthHandlerX-tr8Xcookielib.FileCookieJarr9(hhXEhttp://docs.python.org/library/cookielib.html#cookielib.FileCookieJarX-tr:Xcompiler.visitor.ASTVisitorr;(hhXHhttp://docs.python.org/library/compiler.html#compiler.visitor.ASTVisitorX-tr<uX std:tokenr=}r>(Xtry_stmtr?(hhXKhttp://docs.python.org/reference/compound_stmts.html#grammar-token-try_stmtX-tr@XsublistrA(hhXJhttp://docs.python.org/reference/compound_stmts.html#grammar-token-sublistX-trBX longstringrC(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-longstringX-trDXold_lambda_exprrE(hhXOhttp://docs.python.org/reference/expressions.html#grammar-token-old_lambda_exprX-trFX raise_stmtrG(hhXKhttp://docs.python.org/reference/simple_stmts.html#grammar-token-raise_stmtX-trHXold_expression_listrI(hhXShttp://docs.python.org/reference/expressions.html#grammar-token-old_expression_listX-trJXdirective_option_namerK(hhXOhttp://docs.python.org/library/doctest.html#grammar-token-directive_option_nameX-trLX parenth_formrM(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-parenth_formX-trNXhexdigitrO(hhXMhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-hexdigitX-trPXassignment_stmtrQ(hhXPhttp://docs.python.org/reference/simple_stmts.html#grammar-token-assignment_stmtX-trRXsuiterS(hhXHhttp://docs.python.org/reference/compound_stmts.html#grammar-token-suiteX-trTX try2_stmtrU(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-try2_stmtX-trVX argument_listrW(hhXMhttp://docs.python.org/reference/expressions.html#grammar-token-argument_listX-trXXdigitrY(hhXJhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-digitX-trZXlongstringitemr[(hhXShttp://docs.python.org/reference/lexical_analysis.html#grammar-token-longstringitemX-tr\X simple_stmtr](hhXLhttp://docs.python.org/reference/simple_stmts.html#grammar-token-simple_stmtX-tr^X lower_boundr_(hhXKhttp://docs.python.org/reference/expressions.html#grammar-token-lower_boundX-tr`X exponentfloatra(hhXRhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-exponentfloatX-trbXclassdefrc(hhXKhttp://docs.python.org/reference/compound_stmts.html#grammar-token-classdefX-trdXslicingre(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-slicingX-trfXfor_stmtrg(hhXKhttp://docs.python.org/reference/compound_stmts.html#grammar-token-for_stmtX-trhXlongstringcharri(hhXShttp://docs.python.org/reference/lexical_analysis.html#grammar-token-longstringcharX-trjXextended_slicingrk(hhXPhttp://docs.python.org/reference/expressions.html#grammar-token-extended_slicingX-trlXintegerrm(hhXLhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-integerX-trnXshortstringitemro(hhXThttp://docs.python.org/reference/lexical_analysis.html#grammar-token-shortstringitemX-trpX decoratorrq(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-decoratorX-trrXnamers(hhXEhttp://docs.python.org/reference/simple_stmts.html#grammar-token-nameX-trtX key_datumru(hhXIhttp://docs.python.org/reference/expressions.html#grammar-token-key_datumX-trvX dict_displayrw(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-dict_displayX-trxXif_stmtry(hhXJhttp://docs.python.org/reference/compound_stmts.html#grammar-token-if_stmtX-trzXparameter_listr{(hhXQhttp://docs.python.org/reference/compound_stmts.html#grammar-token-parameter_listX-tr|Xdirective_optionr}(hhXJhttp://docs.python.org/library/doctest.html#grammar-token-directive_optionX-tr~X list_displayr(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-list_displayX-trX stringliteralr(hhXRhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-stringliteralX-trXfuncnamer(hhXKhttp://docs.python.org/reference/compound_stmts.html#grammar-token-funcnameX-trX with_stmtr(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-with_stmtX-trXcomp_forr(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-comp_forX-trXbindigitr(hhXMhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-bindigitX-trXpositional_argumentsr(hhXThttp://docs.python.org/reference/expressions.html#grammar-token-positional_argumentsX-trX identifierr(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-identifierX-trX uppercaser(hhXNhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-uppercaseX-trXmoduler(hhXGhttp://docs.python.org/reference/simple_stmts.html#grammar-token-moduleX-trXor_testr(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-or_testX-trXfractionr(hhXMhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-fractionX-trXfuture_statementr(hhXQhttp://docs.python.org/reference/simple_stmts.html#grammar-token-future_statementX-trXor_exprr(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-or_exprX-trX enclosurer(hhXIhttp://docs.python.org/reference/expressions.html#grammar-token-enclosureX-trXrelative_moduler(hhXPhttp://docs.python.org/reference/simple_stmts.html#grammar-token-relative_moduleX-trXcomp_ifr(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-comp_ifX-trXexponentr(hhXMhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-exponentX-trX directiver(hhXChttp://docs.python.org/library/doctest.html#grammar-token-directiveX-trXdict_comprehensionr(hhXRhttp://docs.python.org/reference/expressions.html#grammar-token-dict_comprehensionX-trX shift_exprr(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-shift_exprX-trX lc_letterr(hhXJhttp://docs.python.org/reference/introduction.html#grammar-token-lc_letterX-trX stringprefixr(hhXQhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-stringprefixX-trX list_iterr(hhXIhttp://docs.python.org/reference/expressions.html#grammar-token-list_iterX-trX exec_stmtr(hhXJhttp://docs.python.org/reference/simple_stmts.html#grammar-token-exec_stmtX-trXlist_forr(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-list_forX-trXellipsisr(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-ellipsisX-trX decoratorsr(hhXMhttp://docs.python.org/reference/compound_stmts.html#grammar-token-decoratorsX-trX compound_stmtr(hhXPhttp://docs.python.org/reference/compound_stmts.html#grammar-token-compound_stmtX-trX dotted_namer(hhXNhttp://docs.python.org/reference/compound_stmts.html#grammar-token-dotted_nameX-trX longintegerr(hhXPhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-longintegerX-trXsimple_slicingr(hhXNhttp://docs.python.org/reference/expressions.html#grammar-token-simple_slicingX-trXa_exprr(hhXFhttp://docs.python.org/reference/expressions.html#grammar-token-a_exprX-trX augtargetr(hhXJhttp://docs.python.org/reference/simple_stmts.html#grammar-token-augtargetX-trX index_stringr(hhXEhttp://docs.python.org/library/string.html#grammar-token-index_stringX-trX nonzerodigitr(hhXQhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-nonzerodigitX-trXxor_exprr(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-xor_exprX-trX try1_stmtr(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-try1_stmtX-trX comparisonr(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-comparisonX-trXattribute_namer(hhXGhttp://docs.python.org/library/string.html#grammar-token-attribute_nameX-trX pass_stmtr(hhXJhttp://docs.python.org/reference/simple_stmts.html#grammar-token-pass_stmtX-trX upper_boundr(hhXKhttp://docs.python.org/reference/expressions.html#grammar-token-upper_boundX-trX imagnumberr(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-imagnumberX-trX proper_slicer(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-proper_sliceX-trX yield_atomr(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-yield_atomX-trXstrider(hhXFhttp://docs.python.org/reference/expressions.html#grammar-token-strideX-trX comp_iterr(hhXIhttp://docs.python.org/reference/expressions.html#grammar-token-comp_iterX-trX expressionr(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-expressionX-trXarg_namer(hhXAhttp://docs.python.org/library/string.html#grammar-token-arg_nameX-trX element_indexr(hhXFhttp://docs.python.org/library/string.html#grammar-token-element_indexX-trX keyword_itemr(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-keyword_itemX-trXprimaryr(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-primaryX-trX classnamer(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-classnameX-trX return_stmtr(hhXLhttp://docs.python.org/reference/simple_stmts.html#grammar-token-return_stmtX-trX comprehensionr(hhXMhttp://docs.python.org/reference/expressions.html#grammar-token-comprehensionX-trX format_specr(hhXDhttp://docs.python.org/library/string.html#grammar-token-format_specX-trXshortstringcharr(hhXThttp://docs.python.org/reference/lexical_analysis.html#grammar-token-shortstringcharX-trXold_expressionr(hhXNhttp://docs.python.org/reference/expressions.html#grammar-token-old_expressionX-trX defparameterr(hhXOhttp://docs.python.org/reference/compound_stmts.html#grammar-token-defparameterX-trX slice_listr(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-slice_listX-trX lambda_exprr(hhXKhttp://docs.python.org/reference/expressions.html#grammar-token-lambda_exprX-trX import_stmtr(hhXLhttp://docs.python.org/reference/simple_stmts.html#grammar-token-import_stmtX-trX continue_stmtr(hhXNhttp://docs.python.org/reference/simple_stmts.html#grammar-token-continue_stmtX-trXu_exprr(hhXFhttp://docs.python.org/reference/expressions.html#grammar-token-u_exprX-trXwidthr(hhX>http://docs.python.org/library/string.html#grammar-token-widthX-trXliteralr(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-literalX-trX attributerefr(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-attributerefX-trXcallr(hhXDhttp://docs.python.org/reference/expressions.html#grammar-token-callX-trXaugopr(hhXFhttp://docs.python.org/reference/simple_stmts.html#grammar-token-augopX-trX short_slicer (hhXKhttp://docs.python.org/reference/expressions.html#grammar-token-short_sliceX-tr Xstring_conversionr (hhXQhttp://docs.python.org/reference/expressions.html#grammar-token-string_conversionX-tr Xtyper (hhX=http://docs.python.org/library/string.html#grammar-token-typeX-trX statementr(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-statementX-trX print_stmtr(hhXKhttp://docs.python.org/reference/simple_stmts.html#grammar-token-print_stmtX-trX precisionr(hhXBhttp://docs.python.org/library/string.html#grammar-token-precisionX-trX on_or_offr(hhXChttp://docs.python.org/library/doctest.html#grammar-token-on_or_offX-trX target_listr(hhXLhttp://docs.python.org/reference/simple_stmts.html#grammar-token-target_listX-trX long_slicer(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-long_sliceX-trXaugmented_assignment_stmtr(hhXZhttp://docs.python.org/reference/simple_stmts.html#grammar-token-augmented_assignment_stmtX-trXatomr(hhXDhttp://docs.python.org/reference/expressions.html#grammar-token-atomX-trXfuncdefr(hhXJhttp://docs.python.org/reference/compound_stmts.html#grammar-token-funcdefX-tr Xsignr!(hhX=http://docs.python.org/library/string.html#grammar-token-signX-tr"X field_namer#(hhXChttp://docs.python.org/library/string.html#grammar-token-field_nameX-tr$X subscriptionr%(hhXLhttp://docs.python.org/reference/expressions.html#grammar-token-subscriptionX-tr&X binintegerr'(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-binintegerX-tr(Xkey_datum_listr)(hhXNhttp://docs.python.org/reference/expressions.html#grammar-token-key_datum_listX-tr*Xtargetr+(hhXGhttp://docs.python.org/reference/simple_stmts.html#grammar-token-targetX-tr,X input_inputr-(hhXShttp://docs.python.org/reference/toplevel_components.html#grammar-token-input_inputX-tr.X file_inputr/(hhXRhttp://docs.python.org/reference/toplevel_components.html#grammar-token-file_inputX-tr0Xalignr1(hhX>http://docs.python.org/library/string.html#grammar-token-alignX-tr2X set_displayr3(hhXKhttp://docs.python.org/reference/expressions.html#grammar-token-set_displayX-tr4X slice_itemr5(hhXJhttp://docs.python.org/reference/expressions.html#grammar-token-slice_itemX-tr6Xintpartr7(hhXLhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-intpartX-tr8Xand_exprr9(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-and_exprX-tr:X yield_stmtr;(hhXKhttp://docs.python.org/reference/simple_stmts.html#grammar-token-yield_stmtX-tr<X comp_operatorr=(hhXMhttp://docs.python.org/reference/expressions.html#grammar-token-comp_operatorX-tr>Xyield_expressionr?(hhXPhttp://docs.python.org/reference/expressions.html#grammar-token-yield_expressionX-tr@Xreplacement_fieldrA(hhXJhttp://docs.python.org/library/string.html#grammar-token-replacement_fieldX-trBXnot_testrC(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-not_testX-trDX escapeseqrE(hhXNhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-escapeseqX-trFXfillrG(hhX=http://docs.python.org/library/string.html#grammar-token-fillX-trHX break_stmtrI(hhXKhttp://docs.python.org/reference/simple_stmts.html#grammar-token-break_stmtX-trJX conversionrK(hhXChttp://docs.python.org/library/string.html#grammar-token-conversionX-trLX octintegerrM(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-octintegerX-trNX inheritancerO(hhXNhttp://docs.python.org/reference/compound_stmts.html#grammar-token-inheritanceX-trPX eval_inputrQ(hhXRhttp://docs.python.org/reference/toplevel_components.html#grammar-token-eval_inputX-trRXfeaturerS(hhXHhttp://docs.python.org/reference/simple_stmts.html#grammar-token-featureX-trTXpowerrU(hhXEhttp://docs.python.org/reference/expressions.html#grammar-token-powerX-trVXdecimalintegerrW(hhXShttp://docs.python.org/reference/lexical_analysis.html#grammar-token-decimalintegerX-trXXexpression_stmtrY(hhXPhttp://docs.python.org/reference/simple_stmts.html#grammar-token-expression_stmtX-trZXlist_ifr[(hhXGhttp://docs.python.org/reference/expressions.html#grammar-token-list_ifX-tr\X global_stmtr](hhXLhttp://docs.python.org/reference/simple_stmts.html#grammar-token-global_stmtX-tr^X with_itemr_(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-with_itemX-tr`X parameterra(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-parameterX-trbXlist_comprehensionrc(hhXRhttp://docs.python.org/reference/expressions.html#grammar-token-list_comprehensionX-trdXoctdigitre(hhXMhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-octdigitX-trfXdirective_optionsrg(hhXKhttp://docs.python.org/library/doctest.html#grammar-token-directive_optionsX-trhX lowercaseri(hhXNhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-lowercaseX-trjXand_testrk(hhXHhttp://docs.python.org/reference/expressions.html#grammar-token-and_testX-trlXkeyword_argumentsrm(hhXQhttp://docs.python.org/reference/expressions.html#grammar-token-keyword_argumentsX-trnX shortstringro(hhXPhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-shortstringX-trpXm_exprrq(hhXFhttp://docs.python.org/reference/expressions.html#grammar-token-m_exprX-trrXinteractive_inputrs(hhXYhttp://docs.python.org/reference/toplevel_components.html#grammar-token-interactive_inputX-trtXletterru(hhXKhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-letterX-trvX decoratedrw(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-decoratedX-trxX hexintegerry(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-hexintegerX-trzX stmt_listr{(hhXLhttp://docs.python.org/reference/compound_stmts.html#grammar-token-stmt_listX-tr|X assert_stmtr}(hhXLhttp://docs.python.org/reference/simple_stmts.html#grammar-token-assert_stmtX-tr~X floatnumberr(hhXPhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-floatnumberX-trXgenerator_expressionr(hhXThttp://docs.python.org/reference/expressions.html#grammar-token-generator_expressionX-trXexpression_listr(hhXOhttp://docs.python.org/reference/expressions.html#grammar-token-expression_listX-trXdel_stmtr(hhXIhttp://docs.python.org/reference/simple_stmts.html#grammar-token-del_stmtX-trX while_stmtr(hhXMhttp://docs.python.org/reference/compound_stmts.html#grammar-token-while_stmtX-trXconditional_expressionr(hhXVhttp://docs.python.org/reference/expressions.html#grammar-token-conditional_expressionX-trX pointfloatr(hhXOhttp://docs.python.org/reference/lexical_analysis.html#grammar-token-pointfloatX-truXc:varr}r(X PyFile_Typer(hhX2http://docs.python.org/c-api/file.html#PyFile_TypeX-trX PyFloat_Typer(hhX4http://docs.python.org/c-api/float.html#PyFloat_TypeX-trXPy_single_inputr(hhX:http://docs.python.org/c-api/veryhigh.html#Py_single_inputX-trX PyDict_Typer(hhX2http://docs.python.org/c-api/dict.html#PyDict_TypeX-trX PyTrace_LINEr(hhX3http://docs.python.org/c-api/init.html#PyTrace_LINEX-trX PyCell_Typer(hhX2http://docs.python.org/c-api/cell.html#PyCell_TypeX-trX PyModule_Typer(hhX6http://docs.python.org/c-api/module.html#PyModule_TypeX-trX Py_eval_inputr(hhX8http://docs.python.org/c-api/veryhigh.html#Py_eval_inputX-trXPyFunction_Typer(hhX:http://docs.python.org/c-api/function.html#PyFunction_TypeX-trXPySeqIter_Typer(hhX9http://docs.python.org/c-api/iterator.html#PySeqIter_TypeX-trX PyMethod_Typer(hhX6http://docs.python.org/c-api/method.html#PyMethod_TypeX-trXPy_END_OF_BUFFERr(hhX9http://docs.python.org/c-api/buffer.html#Py_END_OF_BUFFERX-trXPyTrace_EXCEPTIONr(hhX8http://docs.python.org/c-api/init.html#PyTrace_EXCEPTIONX-trXPyComplex_Typer(hhX8http://docs.python.org/c-api/complex.html#PyComplex_TypeX-trX PyList_Typer(hhX2http://docs.python.org/c-api/list.html#PyList_TypeX-trXPyInstance_Typer(hhX7http://docs.python.org/c-api/class.html#PyInstance_TypeX-trX Py_file_inputr(hhX8http://docs.python.org/c-api/veryhigh.html#Py_file_inputX-trX PyBuffer_Typer(hhX6http://docs.python.org/c-api/buffer.html#PyBuffer_TypeX-trXPyImport_FrozenModulesr(hhX?http://docs.python.org/c-api/import.html#PyImport_FrozenModulesX-trXPyByteArray_Typer(hhX<http://docs.python.org/c-api/bytearray.html#PyByteArray_TypeX-trX PyTrace_CALLr(hhX3http://docs.python.org/c-api/init.html#PyTrace_CALLX-trXCO_FUTURE_DIVISIONr(hhX=http://docs.python.org/c-api/veryhigh.html#CO_FUTURE_DIVISIONX-trXPyFrozenSet_Typer(hhX6http://docs.python.org/c-api/set.html#PyFrozenSet_TypeX-trX PyType_Typer(hhX2http://docs.python.org/c-api/type.html#PyType_TypeX-trX PyTuple_Typer(hhX4http://docs.python.org/c-api/tuple.html#PyTuple_TypeX-trX_Py_NoneStructr(hhX;http://docs.python.org/c-api/allocation.html#_Py_NoneStructX-trXPyTrace_RETURNr(hhX5http://docs.python.org/c-api/init.html#PyTrace_RETURNX-trXPyUnicode_Typer(hhX8http://docs.python.org/c-api/unicode.html#PyUnicode_TypeX-trX PyInt_Typer(hhX0http://docs.python.org/c-api/int.html#PyInt_TypeX-trX PyClass_Typer(hhX4http://docs.python.org/c-api/class.html#PyClass_TypeX-trX PyLong_Typer(hhX2http://docs.python.org/c-api/long.html#PyLong_TypeX-trXPyTrace_C_CALLr(hhX5http://docs.python.org/c-api/init.html#PyTrace_C_CALLX-trX PyCode_Typer(hhX2http://docs.python.org/c-api/code.html#PyCode_TypeX-trXPyTrace_C_EXCEPTIONr(hhX:http://docs.python.org/c-api/init.html#PyTrace_C_EXCEPTIONX-trXPy_Noner(hhX.http://docs.python.org/c-api/none.html#Py_NoneX-trXPyTrace_C_RETURNr(hhX7http://docs.python.org/c-api/init.html#PyTrace_C_RETURNX-trXPyCallIter_Typer(hhX:http://docs.python.org/c-api/iterator.html#PyCallIter_TypeX-trX PyString_Typer(hhX6http://docs.python.org/c-api/string.html#PyString_TypeX-trX PyGen_Typer(hhX0http://docs.python.org/c-api/gen.html#PyGen_TypeX-trX PySlice_Typer(hhX4http://docs.python.org/c-api/slice.html#PySlice_TypeX-trX PySet_Typer(hhX0http://docs.python.org/c-api/set.html#PySet_TypeX-trXPy_Falser(hhX/http://docs.python.org/c-api/bool.html#Py_FalseX-trXPy_Truer(hhX.http://docs.python.org/c-api/bool.html#Py_TrueX-trXPyProperty_Typer(hhX<http://docs.python.org/c-api/descriptor.html#PyProperty_TypeX-truX std:2to3fixerr}r(Xxranger(hhX9http://docs.python.org/library/2to3.html#2to3fixer-xrangeX-trX numliteralsr(hhX>http://docs.python.org/library/2to3.html#2to3fixer-numliteralsX-trXreducer(hhX9http://docs.python.org/library/2to3.html#2to3fixer-reduceX-trX set_literalr(hhX>http://docs.python.org/library/2to3.html#2to3fixer-set_literalX-trXimports2r(hhX;http://docs.python.org/library/2to3.html#2to3fixer-imports2X-trXinternr(hhX9http://docs.python.org/library/2to3.html#2to3fixer-internX-trXhas_keyr(hhX:http://docs.python.org/library/2to3.html#2to3fixer-has_keyX-trXurllibr(hhX9http://docs.python.org/library/2to3.html#2to3fixer-urllibX-trXunicoder(hhX:http://docs.python.org/library/2to3.html#2to3fixer-unicodeX-trX xreadlinesr(hhX=http://docs.python.org/library/2to3.html#2to3fixer-xreadlinesX-trXapplyr(hhX8http://docs.python.org/library/2to3.html#2to3fixer-applyX-trX isinstancer(hhX=http://docs.python.org/library/2to3.html#2to3fixer-isinstanceX-trXnonzeror(hhX:http://docs.python.org/library/2to3.html#2to3fixer-nonzeroX-trX basestringr(hhX=http://docs.python.org/library/2to3.html#2to3fixer-basestringX-trXraiser(hhX8http://docs.python.org/library/2to3.html#2to3fixer-raiseX-trXstandard_errorr(hhXAhttp://docs.python.org/library/2to3.html#2to3fixer-standard_errorX-trXgetcwdur (hhX:http://docs.python.org/library/2to3.html#2to3fixer-getcwduX-tr Xner (hhX5http://docs.python.org/library/2to3.html#2to3fixer-neX-tr Xlongr (hhX7http://docs.python.org/library/2to3.html#2to3fixer-longX-trX funcattrsr(hhX<http://docs.python.org/library/2to3.html#2to3fixer-funcattrsX-trXfuturer(hhX9http://docs.python.org/library/2to3.html#2to3fixer-futureX-trXdictr(hhX7http://docs.python.org/library/2to3.html#2to3fixer-dictX-trXitertools_importsr(hhXDhttp://docs.python.org/library/2to3.html#2to3fixer-itertools_importsX-trXimportsr(hhX:http://docs.python.org/library/2to3.html#2to3fixer-importsX-trXprintr(hhX8http://docs.python.org/library/2to3.html#2to3fixer-printX-trXimportr(hhX9http://docs.python.org/library/2to3.html#2to3fixer-importX-trXws_commar(hhX;http://docs.python.org/library/2to3.html#2to3fixer-ws_commaX-trX metaclassr(hhX<http://docs.python.org/library/2to3.html#2to3fixer-metaclassX-tr Xexceptr!(hhX9http://docs.python.org/library/2to3.html#2to3fixer-exceptX-tr"Xmapr#(hhX6http://docs.python.org/library/2to3.html#2to3fixer-mapX-tr$Xexecr%(hhX7http://docs.python.org/library/2to3.html#2to3fixer-execX-tr&Xbufferr'(hhX9http://docs.python.org/library/2to3.html#2to3fixer-bufferX-tr(Xexecfiler)(hhX;http://docs.python.org/library/2to3.html#2to3fixer-execfileX-tr*X tuple_paramsr+(hhX?http://docs.python.org/library/2to3.html#2to3fixer-tuple_paramsX-tr,Xreprr-(hhX7http://docs.python.org/library/2to3.html#2to3fixer-reprX-tr.Xcallabler/(hhX;http://docs.python.org/library/2to3.html#2to3fixer-callableX-tr0Xnextr1(hhX7http://docs.python.org/library/2to3.html#2to3fixer-nextX-tr2Xinputr3(hhX8http://docs.python.org/library/2to3.html#2to3fixer-inputX-tr4Xthrowr5(hhX8http://docs.python.org/library/2to3.html#2to3fixer-throwX-tr6Xtypesr7(hhX8http://docs.python.org/library/2to3.html#2to3fixer-typesX-tr8Xzipr9(hhX6http://docs.python.org/library/2to3.html#2to3fixer-zipX-tr:Xrenamesr;(hhX:http://docs.python.org/library/2to3.html#2to3fixer-renamesX-tr<Xidiomsr=(hhX9http://docs.python.org/library/2to3.html#2to3fixer-idiomsX-tr>X raw_inputr?(hhX<http://docs.python.org/library/2to3.html#2to3fixer-raw_inputX-tr@XparenrA(hhX8http://docs.python.org/library/2to3.html#2to3fixer-parenX-trBXfilterrC(hhX9http://docs.python.org/library/2to3.html#2to3fixer-filterX-trDX itertoolsrE(hhX<http://docs.python.org/library/2to3.html#2to3fixer-itertoolsX-trFXsys_excrG(hhX:http://docs.python.org/library/2to3.html#2to3fixer-sys_excX-trHX methodattrsrI(hhX>http://docs.python.org/library/2to3.html#2to3fixer-methodattrsX-trJXexitfuncrK(hhX;http://docs.python.org/library/2to3.html#2to3fixer-exitfuncX-trLuXpy:datarM}rN(Xdoctest.DONT_ACCEPT_BLANKLINErO(hhXIhttp://docs.python.org/library/doctest.html#doctest.DONT_ACCEPT_BLANKLINEX-trPXwinsound.SND_ASYNCrQ(hhX?http://docs.python.org/library/winsound.html#winsound.SND_ASYNCX-trRX re.VERBOSErS(hhX1http://docs.python.org/library/re.html#re.VERBOSEX-trTXMETH_OrU(hhX3http://docs.python.org/c-api/structures.html#METH_OX-trVXsqlite3.PARSE_COLNAMESrW(hhXBhttp://docs.python.org/library/sqlite3.html#sqlite3.PARSE_COLNAMESX-trXXsys.version_inforY(hhX8http://docs.python.org/library/sys.html#sys.version_infoX-trZX token.STARr[(hhX4http://docs.python.org/library/token.html#token.STARX-tr\Xos.X_OKr](hhX.http://docs.python.org/library/os.html#os.X_OKX-tr^Xtypes.MethodTyper_(hhX:http://docs.python.org/library/types.html#types.MethodTypeX-tr`X os.EX_CONFIGra(hhX3http://docs.python.org/library/os.html#os.EX_CONFIGX-trbXtoken.tok_namerc(hhX8http://docs.python.org/library/token.html#token.tok_nameX-trdXtypes.DictProxyTypere(hhX=http://docs.python.org/library/types.html#types.DictProxyTypeX-trfX codecs.BOMrg(hhX5http://docs.python.org/library/codecs.html#codecs.BOMX-trhXtypes.BufferTyperi(hhX:http://docs.python.org/library/types.html#types.BufferTypeX-trjX#subprocess.CREATE_NEW_PROCESS_GROUPrk(hhXRhttp://docs.python.org/library/subprocess.html#subprocess.CREATE_NEW_PROCESS_GROUPX-trlXstatvfs.F_BFREErm(hhX;http://docs.python.org/library/statvfs.html#statvfs.F_BFREEX-trnXos.O_SEQUENTIALro(hhX6http://docs.python.org/library/os.html#os.O_SEQUENTIALX-trpXPy_TPFLAGS_HAVE_GCrq(hhX<http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_GCX-trrX errno.ELIBACCrs(hhX7http://docs.python.org/library/errno.html#errno.ELIBACCX-trtXtypes.ClassTyperu(hhX9http://docs.python.org/library/types.html#types.ClassTypeX-trvXerrno.ETIMEDOUTrw(hhX9http://docs.python.org/library/errno.html#errno.ETIMEDOUTX-trxXcd.READYry(hhX/http://docs.python.org/library/cd.html#cd.READYX-trzXMacOS.linkmodelr{(hhX9http://docs.python.org/library/macos.html#MacOS.linkmodelX-tr|X errno.EBADMSGr}(hhX7http://docs.python.org/library/errno.html#errno.EBADMSGX-tr~X token.SLASHr(hhX5http://docs.python.org/library/token.html#token.SLASHX-trXsunau.AUDIO_FILE_ENCODING_FLOATr(hhXIhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_FLOATX-trX os.EX_DATAERRr(hhX4http://docs.python.org/library/os.html#os.EX_DATAERRX-trX&_winreg.REG_RESOURCE_REQUIREMENTS_LISTr(hhXRhttp://docs.python.org/library/_winreg.html#_winreg.REG_RESOURCE_REQUIREMENTS_LISTX-trX sys.meta_pathr(hhX5http://docs.python.org/library/sys.html#sys.meta_pathX-trXsocket.AF_UNIXr(hhX9http://docs.python.org/library/socket.html#socket.AF_UNIXX-trX_winreg.KEY_READr(hhX<http://docs.python.org/library/_winreg.html#_winreg.KEY_READX-trX METH_NOARGSr(hhX8http://docs.python.org/c-api/structures.html#METH_NOARGSX-trX errno.EREMCHGr(hhX7http://docs.python.org/library/errno.html#errno.EREMCHGX-trXtypes.ModuleTyper(hhX:http://docs.python.org/library/types.html#types.ModuleTypeX-trXtoken.NT_OFFSETr(hhX9http://docs.python.org/library/token.html#token.NT_OFFSETX-trXtypes.XRangeTyper(hhX:http://docs.python.org/library/types.html#types.XRangeTypeX-trX$xml.sax.handler.feature_external_gesr(hhXXhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.feature_external_gesX-trX_winreg.KEY_CREATE_SUB_KEYr(hhXFhttp://docs.python.org/library/_winreg.html#_winreg.KEY_CREATE_SUB_KEYX-trX stat.S_IFREGr(hhX5http://docs.python.org/library/stat.html#stat.S_IFREGX-trX"os.path.supports_unicode_filenamesr(hhXNhttp://docs.python.org/library/os.path.html#os.path.supports_unicode_filenamesX-trXlocale.CODESETr(hhX9http://docs.python.org/library/locale.html#locale.CODESETX-trXerrno.ENETDOWNr(hhX8http://docs.python.org/library/errno.html#errno.ENETDOWNX-trXos.pathconf_namesr(hhX8http://docs.python.org/library/os.html#os.pathconf_namesX-trXFalser(hhX3http://docs.python.org/library/constants.html#FalseX-trX errno.ERANGEr(hhX6http://docs.python.org/library/errno.html#errno.ERANGEX-trXsubprocess.PIPEr(hhX>http://docs.python.org/library/subprocess.html#subprocess.PIPEX-trXtoken.LEFTSHIFTr(hhX9http://docs.python.org/library/token.html#token.LEFTSHIFTX-trX os.curdirr(hhX0http://docs.python.org/library/os.html#os.curdirX-trX errno.EREMOTEr(hhX7http://docs.python.org/library/errno.html#errno.EREMOTEX-trXsignal.CTRL_C_EVENTr(hhX>http://docs.python.org/library/signal.html#signal.CTRL_C_EVENTX-trXlocale.YESEXPRr(hhX9http://docs.python.org/library/locale.html#locale.YESEXPRX-trX errno.EL2HLTr(hhX6http://docs.python.org/library/errno.html#errno.EL2HLTX-trX os.EX_IOERRr(hhX2http://docs.python.org/library/os.html#os.EX_IOERRX-trX errno.EBUSYr(hhX5http://docs.python.org/library/errno.html#errno.EBUSYX-trXsys.__stderr__r(hhX6http://docs.python.org/library/sys.html#sys.__stderr__X-trXerrno.EOVERFLOWr(hhX9http://docs.python.org/library/errno.html#errno.EOVERFLOWX-trX msilib.schemar(hhX8http://docs.python.org/library/msilib.html#msilib.schemaX-trX_winreg.REG_BINARYr(hhX>http://docs.python.org/library/_winreg.html#_winreg.REG_BINARYX-trX os.SEEK_CURr(hhX2http://docs.python.org/library/os.html#os.SEEK_CURX-trXlocale.THOUSEPr(hhX9http://docs.python.org/library/locale.html#locale.THOUSEPX-trXPy_TPFLAGS_HAVE_SEQUENCE_INr(hhXEhttp://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_SEQUENCE_INX-trX __metaclass__r(hhX=http://docs.python.org/reference/datamodel.html#__metaclass__X-trXcd.audior(hhX/http://docs.python.org/library/cd.html#cd.audioX-trX errno.ENOTBLKr(hhX7http://docs.python.org/library/errno.html#errno.ENOTBLKX-trX dl.RTLD_NOWr(hhX2http://docs.python.org/library/dl.html#dl.RTLD_NOWX-trX_winreg.HKEY_CLASSES_ROOTr(hhXEhttp://docs.python.org/library/_winreg.html#_winreg.HKEY_CLASSES_ROOTX-trXNoner(hhX2http://docs.python.org/library/constants.html#NoneX-trX stat.ST_NLINKr(hhX6http://docs.python.org/library/stat.html#stat.ST_NLINKX-trXhashlib.hashlib.algorithmsr(hhXFhttp://docs.python.org/library/hashlib.html#hashlib.hashlib.algorithmsX-trXos.EX_OKr(hhX/http://docs.python.org/library/os.html#os.EX_OKX-trXimp.SEARCH_ERRORr(hhX8http://docs.python.org/library/imp.html#imp.SEARCH_ERRORX-trXresource.RLIMIT_DATAr(hhXAhttp://docs.python.org/library/resource.html#resource.RLIMIT_DATAX-trXos.namer(hhX.http://docs.python.org/library/os.html#os.nameX-trXerrno.ENETUNREACHr(hhX;http://docs.python.org/library/errno.html#errno.ENETUNREACHX-trXcodecs.BOM_UTF16_BEr(hhX>http://docs.python.org/library/codecs.html#codecs.BOM_UTF16_BEX-trXxml.sax.handler.all_propertiesr(hhXRhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.all_propertiesX-trXstring.lettersr(hhX9http://docs.python.org/library/string.html#string.lettersX-trX dis.hasjrelr(hhX3http://docs.python.org/library/dis.html#dis.hasjrelX-trX time.tznamer(hhX4http://docs.python.org/library/time.html#time.tznameX-trX errno.ELOOPr(hhX5http://docs.python.org/library/errno.html#errno.ELOOPX-trXcd.indexr(hhX/http://docs.python.org/library/cd.html#cd.indexX-trX token.NAMEr(hhX4http://docs.python.org/library/token.html#token.NAMEX-trX os.O_ASYNCr(hhX1http://docs.python.org/library/os.html#os.O_ASYNCX-trXTruer(hhX2http://docs.python.org/library/constants.html#TrueX-trXre.DEBUGr(hhX/http://docs.python.org/library/re.html#re.DEBUGX-trX sys.exitfuncr(hhX4http://docs.python.org/library/sys.html#sys.exitfuncX-trXresource.RLIMIT_STACKr(hhXBhttp://docs.python.org/library/resource.html#resource.RLIMIT_STACKX-trXerrno.EDESTADDRREQr(hhX<http://docs.python.org/library/errno.html#errno.EDESTADDRREQX-trXsignal.SIG_IGNr(hhX9http://docs.python.org/library/signal.html#signal.SIG_IGNX-trXPy_TPFLAGS_HEAPTYPEr(hhX=http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HEAPTYPEX-trXtoken.N_TOKENSr(hhX8http://docs.python.org/library/token.html#token.N_TOKENSX-trX errno.ENODEVr(hhX6http://docs.python.org/library/errno.html#errno.ENODEVX-trX sys.maxsizer(hhX3http://docs.python.org/library/sys.html#sys.maxsizeX-trXsubprocess.STARTF_USESTDHANDLESr (hhXNhttp://docs.python.org/library/subprocess.html#subprocess.STARTF_USESTDHANDLESX-tr Xtypes.FrameTyper (hhX9http://docs.python.org/library/types.html#types.FrameTypeX-tr X locale.NOEXPRr (hhX8http://docs.python.org/library/locale.html#locale.NOEXPRX-trX_winreg.REG_MULTI_SZr(hhX@http://docs.python.org/library/_winreg.html#_winreg.REG_MULTI_SZX-trX errno.ENOLCKr(hhX6http://docs.python.org/library/errno.html#errno.ENOLCKX-trX tokenize.NLr(hhX8http://docs.python.org/library/tokenize.html#tokenize.NLX-trXmacostools.BUFSIZr(hhX@http://docs.python.org/library/macostools.html#macostools.BUFSIZX-trXtypes.ListTyper(hhX8http://docs.python.org/library/types.html#types.ListTypeX-trXsys.path_hooksr(hhX6http://docs.python.org/library/sys.html#sys.path_hooksX-trX errno.E2BIGr(hhX5http://docs.python.org/library/errno.html#errno.E2BIGX-trXsubprocess.STDOUTr(hhX@http://docs.python.org/library/subprocess.html#subprocess.STDOUTX-trX_winreg.HKEY_PERFORMANCE_DATAr(hhXIhttp://docs.python.org/library/_winreg.html#_winreg.HKEY_PERFORMANCE_DATAX-tr Xtarfile.ENCODINGr!(hhX<http://docs.python.org/library/tarfile.html#tarfile.ENCODINGX-tr"Xwinsound.MB_ICONEXCLAMATIONr#(hhXHhttp://docs.python.org/library/winsound.html#winsound.MB_ICONEXCLAMATIONX-tr$X sys.stdoutr%(hhX2http://docs.python.org/library/sys.html#sys.stdoutX-tr&X errno.ESTALEr'(hhX6http://docs.python.org/library/errno.html#errno.ESTALEX-tr(Xurllib._urlopenerr)(hhX<http://docs.python.org/library/urllib.html#urllib._urlopenerX-tr*X dis.opmapr+(hhX1http://docs.python.org/library/dis.html#dis.opmapX-tr,X os.defpathr-(hhX1http://docs.python.org/library/os.html#os.defpathX-tr.XEllipsisr/(hhX6http://docs.python.org/library/constants.html#EllipsisX-tr0X os.O_BINARYr1(hhX2http://docs.python.org/library/os.html#os.O_BINARYX-tr2X os.linesepr3(hhX1http://docs.python.org/library/os.html#os.linesepX-tr4X os.environr5(hhX1http://docs.python.org/library/os.html#os.environX-tr6X stat.S_IFLNKr7(hhX5http://docs.python.org/library/stat.html#stat.S_IFLNKX-tr8Xcodecs.BOM_UTF8r9(hhX:http://docs.python.org/library/codecs.html#codecs.BOM_UTF8X-tr:Xsys.__excepthook__r;(hhX:http://docs.python.org/library/sys.html#sys.__excepthook__X-tr<Xtempfile.tempdirr=(hhX=http://docs.python.org/library/tempfile.html#tempfile.tempdirX-tr>X stat.S_IFIFOr?(hhX5http://docs.python.org/library/stat.html#stat.S_IFIFOX-tr@Xsha.digest_sizerA(hhX7http://docs.python.org/library/sha.html#sha.digest_sizeX-trBXresource.RLIMIT_VMEMrC(hhXAhttp://docs.python.org/library/resource.html#resource.RLIMIT_VMEMX-trDXtypes.StringTypesrE(hhX;http://docs.python.org/library/types.html#types.StringTypesX-trFXtokenize.COMMENTrG(hhX=http://docs.python.org/library/tokenize.html#tokenize.COMMENTX-trHXPy_TPFLAGS_HAVE_INPLACEOPSrI(hhXDhttp://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_INPLACEOPSX-trJXerrno.ECONNRESETrK(hhX:http://docs.python.org/library/errno.html#errno.ECONNRESETX-trLX stat.S_ISVTXrM(hhX5http://docs.python.org/library/stat.html#stat.S_ISVTXX-trNX signal.NSIGrO(hhX6http://docs.python.org/library/signal.html#signal.NSIGX-trPXuuid.RESERVED_FUTURErQ(hhX=http://docs.python.org/library/uuid.html#uuid.RESERVED_FUTUREX-trRXssl.OPENSSL_VERSION_NUMBERrS(hhXBhttp://docs.python.org/library/ssl.html#ssl.OPENSSL_VERSION_NUMBERX-trTXgc.DEBUG_INSTANCESrU(hhX9http://docs.python.org/library/gc.html#gc.DEBUG_INSTANCESX-trVX re.DOTALLrW(hhX0http://docs.python.org/library/re.html#re.DOTALLX-trXX errno.ENOTTYrY(hhX6http://docs.python.org/library/errno.html#errno.ENOTTYX-trZX stat.S_IRWXGr[(hhX5http://docs.python.org/library/stat.html#stat.S_IRWXGX-tr\Xtypes.MemberDescriptorTyper](hhXDhttp://docs.python.org/library/types.html#types.MemberDescriptorTypeX-tr^Xposixfile.SEEK_CURr_(hhX@http://docs.python.org/library/posixfile.html#posixfile.SEEK_CURX-tr`Xmsvcrt.LK_UNLCKra(hhX:http://docs.python.org/library/msvcrt.html#msvcrt.LK_UNLCKX-trbX stat.S_IRWXOrc(hhX5http://docs.python.org/library/stat.html#stat.S_IRWXOX-trdX&sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5re(hhXPhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5X-trfX&sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3rg(hhXPhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3X-trhX cd.PAUSEDri(hhX0http://docs.python.org/library/cd.html#cd.PAUSEDX-trjXtime.accept2dyearrk(hhX:http://docs.python.org/library/time.html#time.accept2dyearX-trlXstatvfs.F_FILESrm(hhX;http://docs.python.org/library/statvfs.html#statvfs.F_FILESX-trnX stat.S_IRWXUro(hhX5http://docs.python.org/library/stat.html#stat.S_IRWXUX-trpX stat.S_IFCHRrq(hhX5http://docs.python.org/library/stat.html#stat.S_IFCHRX-trrX token.DOTrs(hhX3http://docs.python.org/library/token.html#token.DOTX-trtXresource.RLIMIT_NOFILEru(hhXChttp://docs.python.org/library/resource.html#resource.RLIMIT_NOFILEX-trvXsys.exc_tracebackrw(hhX9http://docs.python.org/library/sys.html#sys.exc_tracebackX-trxX errno.EL3RSTry(hhX6http://docs.python.org/library/errno.html#errno.EL3RSTX-trzX errno.EADVr{(hhX4http://docs.python.org/library/errno.html#errno.EADVX-tr|X errno.ECHRNGr}(hhX6http://docs.python.org/library/errno.html#errno.ECHRNGX-tr~Xtypes.UnboundMethodTyper(hhXAhttp://docs.python.org/library/types.html#types.UnboundMethodTypeX-trX_winreg.REG_NONEr(hhX<http://docs.python.org/library/_winreg.html#_winreg.REG_NONEX-trX os.P_WAITr(hhX0http://docs.python.org/library/os.html#os.P_WAITX-trX errno.EDQUOTr(hhX6http://docs.python.org/library/errno.html#errno.EDQUOTX-trX errno.ENOSTRr(hhX6http://docs.python.org/library/errno.html#errno.ENOSTRX-trX os.O_RSYNCr(hhX1http://docs.python.org/library/os.html#os.O_RSYNCX-trX errno.EBADRQCr(hhX7http://docs.python.org/library/errno.html#errno.EBADRQCX-trX os.O_RDONLYr(hhX2http://docs.python.org/library/os.html#os.O_RDONLYX-trXlocale.ERA_D_FMTr(hhX;http://docs.python.org/library/locale.html#locale.ERA_D_FMTX-trXtoken.DOUBLESTARr(hhX:http://docs.python.org/library/token.html#token.DOUBLESTARX-trX errno.EACCESr(hhX6http://docs.python.org/library/errno.html#errno.EACCESX-trX types.IntTyper(hhX7http://docs.python.org/library/types.html#types.IntTypeX-trXsocket.has_ipv6r(hhX:http://docs.python.org/library/socket.html#socket.has_ipv6X-trX errno.EPIPEr(hhX5http://docs.python.org/library/errno.html#errno.EPIPEX-trXimp.PKG_DIRECTORYr(hhX9http://docs.python.org/library/imp.html#imp.PKG_DIRECTORYX-trXPy_TPFLAGS_HAVE_GETCHARBUFFERr(hhXGhttp://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_GETCHARBUFFERX-trXos.R_OKr(hhX.http://docs.python.org/library/os.html#os.R_OKX-trXssl.CERT_OPTIONALr(hhX9http://docs.python.org/library/ssl.html#ssl.CERT_OPTIONALX-trXtypes.DictTyper(hhX8http://docs.python.org/library/types.html#types.DictTypeX-trXos.sysconf_namesr(hhX7http://docs.python.org/library/os.html#os.sysconf_namesX-trXos.confstr_namesr(hhX7http://docs.python.org/library/os.html#os.confstr_namesX-trXsys.dont_write_bytecoder(hhX?http://docs.python.org/library/sys.html#sys.dont_write_bytecodeX-trXzipfile.ZIP_STOREDr(hhX>http://docs.python.org/library/zipfile.html#zipfile.ZIP_STOREDX-trX,xml.sax.handler.property_declaration_handlerr(hhX`http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.property_declaration_handlerX-trXNotImplementedr(hhX<http://docs.python.org/library/constants.html#NotImplementedX-trX stat.ST_CTIMEr(hhX6http://docs.python.org/library/stat.html#stat.ST_CTIMEX-trX token.GREATERr(hhX7http://docs.python.org/library/token.html#token.GREATERX-trXstatvfs.F_NAMEMAXr(hhX=http://docs.python.org/library/statvfs.html#statvfs.F_NAMEMAXX-trXssl.OPENSSL_VERSIONr(hhX;http://docs.python.org/library/ssl.html#ssl.OPENSSL_VERSIONX-trXcalendar.day_abbrr(hhX>http://docs.python.org/library/calendar.html#calendar.day_abbrX-trXsite.USER_SITEr(hhX7http://docs.python.org/library/site.html#site.USER_SITEX-trXsys.pathr(hhX0http://docs.python.org/library/sys.html#sys.pathX-trX os.O_EXLOCKr(hhX2http://docs.python.org/library/os.html#os.O_EXLOCKX-trXsqlite3.sqlite_version_infor(hhXGhttp://docs.python.org/library/sqlite3.html#sqlite3.sqlite_version_infoX-trXtypes.GetSetDescriptorTyper(hhXDhttp://docs.python.org/library/types.html#types.GetSetDescriptorTypeX-trX stat.ST_ATIMEr(hhX6http://docs.python.org/library/stat.html#stat.ST_ATIMEX-trX os.O_TRUNCr(hhX1http://docs.python.org/library/os.html#os.O_TRUNCX-trX __debug__r(hhX7http://docs.python.org/library/constants.html#__debug__X-trXlocale.LC_COLLATEr(hhX<http://docs.python.org/library/locale.html#locale.LC_COLLATEX-trXerrno.EHOSTUNREACHr(hhX<http://docs.python.org/library/errno.html#errno.EHOSTUNREACHX-trX errno.ENFILEr(hhX6http://docs.python.org/library/errno.html#errno.ENFILEX-trXPy_TPFLAGS_HAVE_CLASSr(hhX?http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_CLASSX-trX os.P_DETACHr(hhX2http://docs.python.org/library/os.html#os.P_DETACHX-trX_winreg.KEY_SET_VALUEr(hhXAhttp://docs.python.org/library/_winreg.html#_winreg.KEY_SET_VALUEX-trXstring.ascii_lettersr(hhX?http://docs.python.org/library/string.html#string.ascii_lettersX-trXtest.test_support.verboser(hhXBhttp://docs.python.org/library/test.html#test.test_support.verboseX-trX sunau.AUDIO_FILE_ENCODING_DOUBLEr(hhXJhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_DOUBLEX-trXPy_TPFLAGS_READYr(hhX:http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_READYX-trXtest.test_support.have_unicoder(hhXGhttp://docs.python.org/library/test.html#test.test_support.have_unicodeX-trXthread.LockTyper(hhX:http://docs.python.org/library/thread.html#thread.LockTypeX-trX_winreg.KEY_WRITEr(hhX=http://docs.python.org/library/_winreg.html#_winreg.KEY_WRITEX-trX_winreg.REG_LINKr(hhX<http://docs.python.org/library/_winreg.html#_winreg.REG_LINKX-trX os.WUNTRACEDr(hhX3http://docs.python.org/library/os.html#os.WUNTRACEDX-trXssl.PROTOCOL_SSLv23r(hhX;http://docs.python.org/library/ssl.html#ssl.PROTOCOL_SSLv23X-trXstat.UF_APPENDr(hhX7http://docs.python.org/library/stat.html#stat.UF_APPENDX-trXos.O_SHORT_LIVEDr(hhX7http://docs.python.org/library/os.html#os.O_SHORT_LIVEDX-trXsubprocess.STD_OUTPUT_HANDLEr(hhXKhttp://docs.python.org/library/subprocess.html#subprocess.STD_OUTPUT_HANDLEX-trX uuid.RFC_4122r(hhX6http://docs.python.org/library/uuid.html#uuid.RFC_4122X-trXtypes.TracebackTyper(hhX=http://docs.python.org/library/types.html#types.TracebackTypeX-trXlocale.ERA_D_T_FMTr(hhX=http://docs.python.org/library/locale.html#locale.ERA_D_T_FMTX-trX os.extsepr(hhX0http://docs.python.org/library/os.html#os.extsepX-trX#sunau.AUDIO_FILE_ENCODING_LINEAR_16r(hhXMhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_LINEAR_16X-trXlocale.ALT_DIGITSr(hhX<http://docs.python.org/library/locale.html#locale.ALT_DIGITSX-trX sys.maxintr(hhX2http://docs.python.org/library/sys.html#sys.maxintX-trX sys.__stdin__r(hhX5http://docs.python.org/library/sys.html#sys.__stdin__X-trX token.SEMIr(hhX4http://docs.python.org/library/token.html#token.SEMIX-trX time.altzoner(hhX5http://docs.python.org/library/time.html#time.altzoneX-trXstatvfs.F_FAVAILr(hhX<http://docs.python.org/library/statvfs.html#statvfs.F_FAVAILX-trXresource.RLIMIT_OFILEr(hhXBhttp://docs.python.org/library/resource.html#resource.RLIMIT_OFILEX-trXerrno.EOPNOTSUPPr (hhX:http://docs.python.org/library/errno.html#errno.EOPNOTSUPPX-tr Xerrno.ENOTCONNr (hhX8http://docs.python.org/library/errno.html#errno.ENOTCONNX-tr Xhashlib.hash.digest_sizer (hhXDhttp://docs.python.org/library/hashlib.html#hashlib.hash.digest_sizeX-trXerrno.ENOPROTOOPTr(hhX;http://docs.python.org/library/errno.html#errno.ENOPROTOOPTX-trXwinsound.SND_NOSTOPr(hhX@http://docs.python.org/library/winsound.html#winsound.SND_NOSTOPX-trXcmath.pir(hhX2http://docs.python.org/library/cmath.html#cmath.piX-trXerrno.ESTRPIPEr(hhX8http://docs.python.org/library/errno.html#errno.ESTRPIPEX-trX sys.byteorderr(hhX5http://docs.python.org/library/sys.html#sys.byteorderX-trXstatvfs.F_BAVAILr(hhX<http://docs.python.org/library/statvfs.html#statvfs.F_BAVAILX-trXstat.UF_IMMUTABLEr(hhX:http://docs.python.org/library/stat.html#stat.UF_IMMUTABLEX-trXweakref.ProxyTypesr(hhX>http://docs.python.org/library/weakref.html#weakref.ProxyTypesX-trXcd.CDROMr(hhX/http://docs.python.org/library/cd.html#cd.CDROMX-tr Xsocket.SOMAXCONNr!(hhX;http://docs.python.org/library/socket.html#socket.SOMAXCONNX-tr"X gc.DEBUG_LEAKr#(hhX4http://docs.python.org/library/gc.html#gc.DEBUG_LEAKX-tr$X os.EX_NOHOSTr%(hhX3http://docs.python.org/library/os.html#os.EX_NOHOSTX-tr&Xlocale.RADIXCHARr'(hhX;http://docs.python.org/library/locale.html#locale.RADIXCHARX-tr(Xsys.argvr)(hhX0http://docs.python.org/library/sys.html#sys.argvX-tr*Xtoken.ENDMARKERr+(hhX9http://docs.python.org/library/token.html#token.ENDMARKERX-tr,Xxml.sax.handler.all_featuresr-(hhXPhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.all_featuresX-tr.Xxml.dom.XHTML_NAMESPACEr/(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.XHTML_NAMESPACEX-tr0Xsite.USER_BASEr1(hhX7http://docs.python.org/library/site.html#site.USER_BASEX-tr2X locale.T_FMTr3(hhX7http://docs.python.org/library/locale.html#locale.T_FMTX-tr4Xerrno.EADDRNOTAVAILr5(hhX=http://docs.python.org/library/errno.html#errno.EADDRNOTAVAILX-tr6X stat.S_IXGRPr7(hhX5http://docs.python.org/library/stat.html#stat.S_IXGRPX-tr8Xuuid.NAMESPACE_OIDr9(hhX;http://docs.python.org/library/uuid.html#uuid.NAMESPACE_OIDX-tr:Xmath.er;(hhX/http://docs.python.org/library/math.html#math.eX-tr<X!xml.sax.handler.property_dom_noder=(hhXUhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.property_dom_nodeX-tr>Xtarfile.DEFAULT_FORMATr?(hhXBhttp://docs.python.org/library/tarfile.html#tarfile.DEFAULT_FORMATX-tr@X errno.EDEADLKrA(hhX7http://docs.python.org/library/errno.html#errno.EDEADLKX-trBXsignal.SIG_DFLrC(hhX9http://docs.python.org/library/signal.html#signal.SIG_DFLX-trDX errno.EPERMrE(hhX5http://docs.python.org/library/errno.html#errno.EPERMX-trFXtoken.RIGHTSHIFTrG(hhX:http://docs.python.org/library/token.html#token.RIGHTSHIFTX-trHXerrno.EADDRINUSErI(hhX:http://docs.python.org/library/errno.html#errno.EADDRINUSEX-trJXtempfile.templaterK(hhX>http://docs.python.org/library/tempfile.html#tempfile.templateX-trLXstatvfs.F_FFREErM(hhX;http://docs.python.org/library/statvfs.html#statvfs.F_FFREEX-trNXstring.printablerO(hhX;http://docs.python.org/library/string.html#string.printableX-trPX_winreg.REG_SZrQ(hhX:http://docs.python.org/library/_winreg.html#_winreg.REG_SZX-trRX codecs.BOM_LErS(hhX8http://docs.python.org/library/codecs.html#codecs.BOM_LEX-trTX errno.ENAVAILrU(hhX7http://docs.python.org/library/errno.html#errno.ENAVAILX-trVX token.STRINGrW(hhX6http://docs.python.org/library/token.html#token.STRINGX-trXX token.COLONrY(hhX5http://docs.python.org/library/token.html#token.COLONX-trZX stat.S_IWGRPr[(hhX5http://docs.python.org/library/stat.html#stat.S_IWGRPX-tr\Xtoken.DOUBLESTAREQUALr](hhX?http://docs.python.org/library/token.html#token.DOUBLESTAREQUALX-tr^X stat.ST_SIZEr_(hhX5http://docs.python.org/library/stat.html#stat.ST_SIZEX-tr`X token.VBARra(hhX4http://docs.python.org/library/token.html#token.VBARX-trbXerrno.EPROTOTYPErc(hhX:http://docs.python.org/library/errno.html#errno.EPROTOTYPEX-trdXerrno.ECONNABORTEDre(hhX<http://docs.python.org/library/errno.html#errno.ECONNABORTEDX-trfXPy_TPFLAGS_DEFAULTrg(hhX<http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_DEFAULTX-trhXdoctest.REPORT_CDIFFri(hhX@http://docs.python.org/library/doctest.html#doctest.REPORT_CDIFFX-trjX errno.ENOSPCrk(hhX6http://docs.python.org/library/errno.html#errno.ENOSPCX-trlXsqlite3.versionrm(hhX;http://docs.python.org/library/sqlite3.html#sqlite3.versionX-trnX stat.S_IRUSRro(hhX5http://docs.python.org/library/stat.html#stat.S_IRUSRX-trpX*xml.sax.handler.feature_namespace_prefixesrq(hhX^http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.feature_namespace_prefixesX-trrXgc.DEBUG_UNCOLLECTABLErs(hhX=http://docs.python.org/library/gc.html#gc.DEBUG_UNCOLLECTABLEX-trtX errno.EUNATCHru(hhX7http://docs.python.org/library/errno.html#errno.EUNATCHX-trvXunittest.defaultTestLoaderrw(hhXGhttp://docs.python.org/library/unittest.html#unittest.defaultTestLoaderX-trxX errno.EBADEry(hhX5http://docs.python.org/library/errno.html#errno.EBADEX-trzXerrno.EMULTIHOPr{(hhX9http://docs.python.org/library/errno.html#errno.EMULTIHOPX-tr|X errno.EILSEQr}(hhX6http://docs.python.org/library/errno.html#errno.EILSEQX-tr~X_winreg.KEY_ENUMERATE_SUB_KEYSr(hhXJhttp://docs.python.org/library/_winreg.html#_winreg.KEY_ENUMERATE_SUB_KEYSX-trX errno.ENOPKGr(hhX6http://docs.python.org/library/errno.html#errno.ENOPKGX-trXxml.dom.XMLNS_NAMESPACEr(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.XMLNS_NAMESPACEX-trXssl.PROTOCOL_TLSv1r(hhX:http://docs.python.org/library/ssl.html#ssl.PROTOCOL_TLSv1X-trXcd.atimer(hhX/http://docs.python.org/library/cd.html#cd.atimeX-trX errno.EISCONNr(hhX7http://docs.python.org/library/errno.html#errno.EISCONNX-trX token.INDENTr(hhX6http://docs.python.org/library/token.html#token.INDENTX-trX os.O_SHLOCKr(hhX2http://docs.python.org/library/os.html#os.O_SHLOCKX-trXos.EX_CANTCREATr(hhX6http://docs.python.org/library/os.html#os.EX_CANTCREATX-trXcsv.QUOTE_NONNUMERICr(hhX<http://docs.python.org/library/csv.html#csv.QUOTE_NONNUMERICX-trXsymbol.sym_namer(hhX:http://docs.python.org/library/symbol.html#symbol.sym_nameX-trXxml.dom.EMPTY_NAMESPACEr(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.EMPTY_NAMESPACEX-trXtoken.DOUBLESLASHr(hhX;http://docs.python.org/library/token.html#token.DOUBLESLASHX-trXgc.DEBUG_COLLECTABLEr(hhX;http://docs.python.org/library/gc.html#gc.DEBUG_COLLECTABLEX-trXposixfile.SEEK_ENDr(hhX@http://docs.python.org/library/posixfile.html#posixfile.SEEK_ENDX-trX METH_STATICr(hhX8http://docs.python.org/c-api/structures.html#METH_STATICX-trX errno.EBADFDr(hhX6http://docs.python.org/library/errno.html#errno.EBADFDX-trX cd.PLAYINGr(hhX1http://docs.python.org/library/cd.html#cd.PLAYINGX-trXcodecs.BOM_UTF32r(hhX;http://docs.python.org/library/codecs.html#codecs.BOM_UTF32X-trXuuid.NAMESPACE_X500r(hhX<http://docs.python.org/library/uuid.html#uuid.NAMESPACE_X500X-trXsys.last_tracebackr(hhX:http://docs.python.org/library/sys.html#sys.last_tracebackX-trX errno.EDOTDOTr(hhX7http://docs.python.org/library/errno.html#errno.EDOTDOTX-trX dl.RTLD_LAZYr(hhX3http://docs.python.org/library/dl.html#dl.RTLD_LAZYX-trX os.O_NOCTTYr(hhX2http://docs.python.org/library/os.html#os.O_NOCTTYX-trX imp.PY_FROZENr(hhX5http://docs.python.org/library/imp.html#imp.PY_FROZENX-trX dis.haslocalr(hhX4http://docs.python.org/library/dis.html#dis.haslocalX-trXmsvcrt.LK_RLCKr(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.LK_RLCKX-trX sys.versionr(hhX3http://docs.python.org/library/sys.html#sys.versionX-trXdistutils.sysconfig.EXEC_PREFIXr(hhXLhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.EXEC_PREFIXX-trXcStringIO.InputTyper(hhX@http://docs.python.org/library/stringio.html#cStringIO.InputTypeX-trX sha.blocksizer(hhX5http://docs.python.org/library/sha.html#sha.blocksizeX-trXgc.DEBUG_SAVEALLr(hhX7http://docs.python.org/library/gc.html#gc.DEBUG_SAVEALLX-trX stat.S_IWRITEr(hhX6http://docs.python.org/library/stat.html#stat.S_IWRITEX-trXPy_TPFLAGS_CHECKTYPESr(hhX?http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_CHECKTYPESX-trX stat.ST_DEVr(hhX4http://docs.python.org/library/stat.html#stat.ST_DEVX-trXcodecs.BOM_UTF32_BEr(hhX>http://docs.python.org/library/codecs.html#codecs.BOM_UTF32_BEX-trXtest.test_support.TESTFNr(hhXAhttp://docs.python.org/library/test.html#test.test_support.TESTFNX-trX sys.platformr(hhX4http://docs.python.org/library/sys.html#sys.platformX-trX stat.S_IREADr(hhX5http://docs.python.org/library/stat.html#stat.S_IREADX-trXcalendar.day_namer(hhX>http://docs.python.org/library/calendar.html#calendar.day_nameX-trXresource.RLIMIT_NPROCr(hhXBhttp://docs.python.org/library/resource.html#resource.RLIMIT_NPROCX-trXdoctest.REPORT_UDIFFr(hhX@http://docs.python.org/library/doctest.html#doctest.REPORT_UDIFFX-trXmimetypes.common_typesr(hhXDhttp://docs.python.org/library/mimetypes.html#mimetypes.common_typesX-trX sys.modulesr(hhX3http://docs.python.org/library/sys.html#sys.modulesX-trXmsilib.sequencer(hhX:http://docs.python.org/library/msilib.html#msilib.sequenceX-trX_winreg.KEY_QUERY_VALUEr(hhXChttp://docs.python.org/library/_winreg.html#_winreg.KEY_QUERY_VALUEX-trX sys.long_infor(hhX5http://docs.python.org/library/sys.html#sys.long_infoX-trXtoken.LEFTSHIFTEQUALr(hhX>http://docs.python.org/library/token.html#token.LEFTSHIFTEQUALX-trX token.LBRACEr(hhX6http://docs.python.org/library/token.html#token.LBRACEX-trX_winreg.REG_DWORDr(hhX=http://docs.python.org/library/_winreg.html#_winreg.REG_DWORDX-trXtest.test_support.is_jythonr(hhXDhttp://docs.python.org/library/test.html#test.test_support.is_jythonX-trX errno.EFBIGr(hhX5http://docs.python.org/library/errno.html#errno.EFBIGX-trXtabnanny.verboser(hhX=http://docs.python.org/library/tabnanny.html#tabnanny.verboseX-trX os.devnullr(hhX1http://docs.python.org/library/os.html#os.devnullX-trXarray.ArrayTyper(hhX9http://docs.python.org/library/array.html#array.ArrayTypeX-trXstat.SF_IMMUTABLEr(hhX:http://docs.python.org/library/stat.html#stat.SF_IMMUTABLEX-trX(xml.sax.handler.feature_string_interningr(hhX\http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.feature_string_interningX-trX os.pathsepr(hhX1http://docs.python.org/library/os.html#os.pathsepX-trX token.RSQBr(hhX4http://docs.python.org/library/token.html#token.RSQBX-trX stat.S_IWOTHr(hhX5http://docs.python.org/library/stat.html#stat.S_IWOTHX-trX$ConfigParser.MAX_INTERPOLATION_DEPTHr(hhXUhttp://docs.python.org/library/configparser.html#ConfigParser.MAX_INTERPOLATION_DEPTHX-trXcsv.QUOTE_MINIMALr(hhX9http://docs.python.org/library/csv.html#csv.QUOTE_MINIMALX-trX_winreg.REG_DWORD_BIG_ENDIANr(hhXHhttp://docs.python.org/library/_winreg.html#_winreg.REG_DWORD_BIG_ENDIANX-trXtoken.RIGHTSHIFTEQUALr(hhX?http://docs.python.org/library/token.html#token.RIGHTSHIFTEQUALX-trXstring.punctuationr(hhX=http://docs.python.org/library/string.html#string.punctuationX-trX stat.S_IXOTHr(hhX5http://docs.python.org/library/stat.html#stat.S_IXOTHX-trXerrno.EDEADLOCKr(hhX9http://docs.python.org/library/errno.html#errno.EDEADLOCKX-trX errno.ETXTBSYr(hhX7http://docs.python.org/library/errno.html#errno.ETXTBSYX-trXsignal.CTRL_BREAK_EVENTr(hhXBhttp://docs.python.org/library/signal.html#signal.CTRL_BREAK_EVENTX-trXdoctest.ELLIPSISr (hhX<http://docs.python.org/library/doctest.html#doctest.ELLIPSISX-tr X os.O_NDELAYr (hhX2http://docs.python.org/library/os.html#os.O_NDELAYX-tr Xmimetypes.encodings_mapr (hhXEhttp://docs.python.org/library/mimetypes.html#mimetypes.encodings_mapX-trXsocket.SOCK_SEQPACKETr(hhX@http://docs.python.org/library/socket.html#socket.SOCK_SEQPACKETX-trX errno.ENONETr(hhX6http://docs.python.org/library/errno.html#errno.ENONETX-trX stat.S_IRGRPr(hhX5http://docs.python.org/library/stat.html#stat.S_IRGRPX-trX os.WNOHANGr(hhX1http://docs.python.org/library/os.html#os.WNOHANGX-trXerrno.EHOSTDOWNr(hhX9http://docs.python.org/library/errno.html#errno.EHOSTDOWNX-trX os.O_CREATr(hhX1http://docs.python.org/library/os.html#os.O_CREATX-trX stat.S_IEXECr(hhX5http://docs.python.org/library/stat.html#stat.S_IEXECX-trXmd5.digest_sizer(hhX7http://docs.python.org/library/md5.html#md5.digest_sizeX-trXresource.RUSAGE_BOTHr(hhXAhttp://docs.python.org/library/resource.html#resource.RUSAGE_BOTHX-tr X stat.S_IWUSRr!(hhX5http://docs.python.org/library/stat.html#stat.S_IWUSRX-tr"Xssl.OPENSSL_VERSION_INFOr#(hhX@http://docs.python.org/library/ssl.html#ssl.OPENSSL_VERSION_INFOX-tr$Xhashlib.hash.block_sizer%(hhXChttp://docs.python.org/library/hashlib.html#hashlib.hash.block_sizeX-tr&Xtypes.SliceTyper'(hhX9http://docs.python.org/library/types.html#types.SliceTypeX-tr(Xcmath.er)(hhX1http://docs.python.org/library/cmath.html#cmath.eX-tr*Xsubprocess.STD_ERROR_HANDLEr+(hhXJhttp://docs.python.org/library/subprocess.html#subprocess.STD_ERROR_HANDLEX-tr,X os.O_DIRECTr-(hhX2http://docs.python.org/library/os.html#os.O_DIRECTX-tr.X errno.ENODATAr/(hhX7http://docs.python.org/library/errno.html#errno.ENODATAX-tr0X stat.S_IFBLKr1(hhX5http://docs.python.org/library/stat.html#stat.S_IFBLKX-tr2X mimify.MAXLENr3(hhX8http://docs.python.org/library/mimify.html#mimify.MAXLENX-tr4Xsignal.ITIMER_REALr5(hhX=http://docs.python.org/library/signal.html#signal.ITIMER_REALX-tr6Xweakref.ProxyTyper7(hhX=http://docs.python.org/library/weakref.html#weakref.ProxyTypeX-tr8X imp.PY_SOURCEr9(hhX5http://docs.python.org/library/imp.html#imp.PY_SOURCEX-tr:Xsys.ps2r;(hhX/http://docs.python.org/library/sys.html#sys.ps2X-tr<Xsocket.AF_INET6r=(hhX:http://docs.python.org/library/socket.html#socket.AF_INET6X-tr>X!doctest.REPORT_ONLY_FIRST_FAILUREr?(hhXMhttp://docs.python.org/library/doctest.html#doctest.REPORT_ONLY_FIRST_FAILUREX-tr@Xos.seprA(hhX-http://docs.python.org/library/os.html#os.sepX-trBXmimetypes.types_maprC(hhXAhttp://docs.python.org/library/mimetypes.html#mimetypes.types_mapX-trDX errno.EXDEVrE(hhX5http://docs.python.org/library/errno.html#errno.EXDEVX-trFX dis.hasconstrG(hhX4http://docs.python.org/library/dis.html#dis.hasconstX-trHX imghdr.testsrI(hhX7http://docs.python.org/library/imghdr.html#imghdr.testsX-trJXMacOS.runtimemodelrK(hhX<http://docs.python.org/library/macos.html#MacOS.runtimemodelX-trLX token.TILDErM(hhX5http://docs.python.org/library/token.html#token.TILDEX-trNXos.EX_UNAVAILABLErO(hhX8http://docs.python.org/library/os.html#os.EX_UNAVAILABLEX-trPX errno.EINVALrQ(hhX6http://docs.python.org/library/errno.html#errno.EINVALX-trRXos.F_OKrS(hhX.http://docs.python.org/library/os.html#os.F_OKX-trTXtypes.UnicodeTyperU(hhX;http://docs.python.org/library/types.html#types.UnicodeTypeX-trVX os.EX_OSFILErW(hhX3http://docs.python.org/library/os.html#os.EX_OSFILEX-trXX errno.ELIBSCNrY(hhX7http://docs.python.org/library/errno.html#errno.ELIBSCNX-trZXsys.builtin_module_namesr[(hhX@http://docs.python.org/library/sys.html#sys.builtin_module_namesX-tr\X errno.ECHILDr](hhX6http://docs.python.org/library/errno.html#errno.ECHILDX-tr^Xcd.identr_(hhX/http://docs.python.org/library/cd.html#cd.identX-tr`Xlocale.LC_TIMEra(hhX9http://docs.python.org/library/locale.html#locale.LC_TIMEX-trbX_winreg.HKEY_DYN_DATArc(hhXAhttp://docs.python.org/library/_winreg.html#_winreg.HKEY_DYN_DATAX-trdX curses.ERRre(hhX5http://docs.python.org/library/curses.html#curses.ERRX-trfX re.IGNORECASErg(hhX4http://docs.python.org/library/re.html#re.IGNORECASEX-trhXcd.ERRORri(hhX/http://docs.python.org/library/cd.html#cd.ERRORX-trjXlocale.D_T_FMTrk(hhX9http://docs.python.org/library/locale.html#locale.D_T_FMTX-trlX errno.EFAULTrm(hhX6http://docs.python.org/library/errno.html#errno.EFAULTX-trnXerrno.EINPROGRESSro(hhX;http://docs.python.org/library/errno.html#errno.EINPROGRESSX-trpX __slots__rq(hhX9http://docs.python.org/reference/datamodel.html#__slots__X-trrXuuid.RESERVED_MICROSOFTrs(hhX@http://docs.python.org/library/uuid.html#uuid.RESERVED_MICROSOFTX-trtXtoken.PERCENTEQUALru(hhX<http://docs.python.org/library/token.html#token.PERCENTEQUALX-trvXuuid.NAMESPACE_DNSrw(hhX;http://docs.python.org/library/uuid.html#uuid.NAMESPACE_DNSX-trxXmimetypes.initedry(hhX>http://docs.python.org/library/mimetypes.html#mimetypes.initedX-trzXmsvcrt.LK_NBLCKr{(hhX:http://docs.python.org/library/msvcrt.html#msvcrt.LK_NBLCKX-tr|X errno.ENOCSIr}(hhX6http://docs.python.org/library/errno.html#errno.ENOCSIX-tr~Xwinsound.MB_OKr(hhX;http://docs.python.org/library/winsound.html#winsound.MB_OKX-trXos.EX_TEMPFAILr(hhX5http://docs.python.org/library/os.html#os.EX_TEMPFAILX-trX errno.ENOTNAMr(hhX7http://docs.python.org/library/errno.html#errno.ENOTNAMX-trXwinsound.SND_LOOPr(hhX>http://docs.python.org/library/winsound.html#winsound.SND_LOOPX-trX locale.LC_ALLr(hhX8http://docs.python.org/library/locale.html#locale.LC_ALLX-trXerrno.errorcoder(hhX9http://docs.python.org/library/errno.html#errno.errorcodeX-trXcodecs.BOM_UTF16_LEr(hhX>http://docs.python.org/library/codecs.html#codecs.BOM_UTF16_LEX-trX cd.DATASIZEr(hhX2http://docs.python.org/library/cd.html#cd.DATASIZEX-trXsys.__displayhook__r(hhX;http://docs.python.org/library/sys.html#sys.__displayhook__X-trXtarfile.GNU_FORMATr(hhX>http://docs.python.org/library/tarfile.html#tarfile.GNU_FORMATX-trX copyrightr(hhX7http://docs.python.org/library/constants.html#copyrightX-trXstring.octdigitsr(hhX;http://docs.python.org/library/string.html#string.octdigitsX-trXtoken.STAREQUALr(hhX9http://docs.python.org/library/token.html#token.STAREQUALX-trX stat.S_ENFMTr(hhX5http://docs.python.org/library/stat.html#stat.S_ENFMTX-trX cd.NODISCr(hhX0http://docs.python.org/library/cd.html#cd.NODISCX-trX os.O_NOATIMEr(hhX3http://docs.python.org/library/os.html#os.O_NOATIMEX-trXwinsound.SND_FILENAMEr(hhXBhttp://docs.python.org/library/winsound.html#winsound.SND_FILENAMEX-trX cd.BLOCKSIZEr(hhX3http://docs.python.org/library/cd.html#cd.BLOCKSIZEX-trXmsvcrt.LK_LOCKr(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.LK_LOCKX-trXerrno.EREMOTEIOr(hhX9http://docs.python.org/library/errno.html#errno.EREMOTEIOX-trXssl.CERT_REQUIREDr(hhX9http://docs.python.org/library/ssl.html#ssl.CERT_REQUIREDX-trX os.O_SYNCr(hhX0http://docs.python.org/library/os.html#os.O_SYNCX-trXPy_TPFLAGS_HAVE_ITERr(hhX>http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_ITERX-trX locale.D_FMTr(hhX7http://docs.python.org/library/locale.html#locale.D_FMTX-trX locale.ERAr(hhX5http://docs.python.org/library/locale.html#locale.ERAX-trX#sunau.AUDIO_FILE_ENCODING_LINEAR_24r(hhXMhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_LINEAR_24X-trXsocket.SOCK_RDMr(hhX:http://docs.python.org/library/socket.html#socket.SOCK_RDMX-trXsys.py3kwarningr(hhX7http://docs.python.org/library/sys.html#sys.py3kwarningX-trXwinsound.MB_ICONHANDr(hhXAhttp://docs.python.org/library/winsound.html#winsound.MB_ICONHANDX-trX errno.ENOSRr(hhX5http://docs.python.org/library/errno.html#errno.ENOSRX-trXdoctest.NORMALIZE_WHITESPACEr(hhXHhttp://docs.python.org/library/doctest.html#doctest.NORMALIZE_WHITESPACEX-trX token.NEWLINEr(hhX7http://docs.python.org/library/token.html#token.NEWLINEX-trX errno.ELNRNGr(hhX6http://docs.python.org/library/errno.html#errno.ELNRNGX-trXstat.UF_NOUNLINKr(hhX9http://docs.python.org/library/stat.html#stat.UF_NOUNLINKX-trXlocale.T_FMT_AMPMr(hhX<http://docs.python.org/library/locale.html#locale.T_FMT_AMPMX-trXstat.SF_ARCHIVEDr(hhX9http://docs.python.org/library/stat.html#stat.SF_ARCHIVEDX-trXdoctest.REPORTING_FLAGSr(hhXChttp://docs.python.org/library/doctest.html#doctest.REPORTING_FLAGSX-trX errno.EUCLEANr(hhX7http://docs.python.org/library/errno.html#errno.EUCLEANX-trX_winreg.KEY_WOW64_64KEYr(hhXChttp://docs.python.org/library/_winreg.html#_winreg.KEY_WOW64_64KEYX-trX sys.flagsr(hhX1http://docs.python.org/library/sys.html#sys.flagsX-trXcd.ptimer(hhX/http://docs.python.org/library/cd.html#cd.ptimeX-trXtypes.FunctionTyper(hhX<http://docs.python.org/library/types.html#types.FunctionTypeX-trX errno.EPROTOr(hhX6http://docs.python.org/library/errno.html#errno.EPROTOX-trX re.LOCALEr(hhX0http://docs.python.org/library/re.html#re.LOCALEX-trX token.RPARr(hhX4http://docs.python.org/library/token.html#token.RPARX-trX os.P_OVERLAYr(hhX3http://docs.python.org/library/os.html#os.P_OVERLAYX-trX_winreg.REG_RESOURCE_LISTr(hhXEhttp://docs.python.org/library/_winreg.html#_winreg.REG_RESOURCE_LISTX-trX errno.ETIMEr(hhX5http://docs.python.org/library/errno.html#errno.ETIMEX-trXerrno.EPROTONOSUPPORTr(hhX?http://docs.python.org/library/errno.html#errno.EPROTONOSUPPORTX-trX!sunau.AUDIO_FILE_ENCODING_MULAW_8r(hhXKhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_MULAW_8X-trXtarfile.TarFileCompat.TAR_PLAINr(hhXKhttp://docs.python.org/library/tarfile.html#tarfile.TarFileCompat.TAR_PLAINX-trXtarfile.USTAR_FORMATr(hhX@http://docs.python.org/library/tarfile.html#tarfile.USTAR_FORMATX-trXtoken.ERRORTOKENr(hhX:http://docs.python.org/library/token.html#token.ERRORTOKENX-trXio.DEFAULT_BUFFER_SIZEr(hhX=http://docs.python.org/library/io.html#io.DEFAULT_BUFFER_SIZEX-trX Py_TPFLAGS_GCr(hhX7http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_GCX-trXtypes.EllipsisTyper(hhX<http://docs.python.org/library/types.html#types.EllipsisTypeX-trXweakref.ReferenceTyper(hhXAhttp://docs.python.org/library/weakref.html#weakref.ReferenceTypeX-trXsys.path_importer_cacher(hhX?http://docs.python.org/library/sys.html#sys.path_importer_cacheX-trXdistutils.sysconfig.PREFIXr(hhXGhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.PREFIXX-trXmimetypes.knownfilesr(hhXBhttp://docs.python.org/library/mimetypes.html#mimetypes.knownfilesX-trX re.UNICODEr(hhX1http://docs.python.org/library/re.html#re.UNICODEX-trX stat.ST_UIDr(hhX4http://docs.python.org/library/stat.html#stat.ST_UIDX-trXmimify.CHARSETr(hhX9http://docs.python.org/library/mimify.html#mimify.CHARSETX-trX string.digitsr(hhX8http://docs.python.org/library/string.html#string.digitsX-trXsqlite3.PARSE_DECLTYPESr(hhXChttp://docs.python.org/library/sqlite3.html#sqlite3.PARSE_DECLTYPESX-trX stat.ST_MTIMEr(hhX6http://docs.python.org/library/stat.html#stat.ST_MTIMEX-trXtoken.ATr(hhX2http://docs.python.org/library/token.html#token.ATX-trX re.MULTILINEr(hhX3http://docs.python.org/library/re.html#re.MULTILINEX-trX errno.EMLINKr(hhX6http://docs.python.org/library/errno.html#errno.EMLINKX-trX dis.hasjabsr (hhX3http://docs.python.org/library/dis.html#dis.hasjabsX-tr X posix.environr (hhX7http://docs.python.org/library/posix.html#posix.environX-tr X imp.C_BUILTINr (hhX5http://docs.python.org/library/imp.html#imp.C_BUILTINX-trXtypes.NoneTyper(hhX8http://docs.python.org/library/types.html#types.NoneTypeX-trXtoken.OPr(hhX2http://docs.python.org/library/token.html#token.OPX-trX METH_KEYWORDSr(hhX:http://docs.python.org/c-api/structures.html#METH_KEYWORDSX-trX os.O_NOFOLLOWr(hhX4http://docs.python.org/library/os.html#os.O_NOFOLLOWX-trX stat.S_IROTHr(hhX5http://docs.python.org/library/stat.html#stat.S_IROTHX-trX csv.QUOTE_ALLr(hhX5http://docs.python.org/library/csv.html#csv.QUOTE_ALLX-trXxml.dom.XML_NAMESPACEr(hhXAhttp://docs.python.org/library/xml.dom.html#xml.dom.XML_NAMESPACEX-trXcd.STILLr(hhX/http://docs.python.org/library/cd.html#cd.STILLX-trXlicenser(hhX5http://docs.python.org/library/constants.html#licenseX-tr Xre.Ir!(hhX+http://docs.python.org/library/re.html#re.IX-tr"Xre.Mr#(hhX+http://docs.python.org/library/re.html#re.MX-tr$Xsocket.SocketTyper%(hhX<http://docs.python.org/library/socket.html#socket.SocketTypeX-tr&Xtoken.NOTEQUALr'(hhX8http://docs.python.org/library/token.html#token.NOTEQUALX-tr(Xre.Sr)(hhX+http://docs.python.org/library/re.html#re.SX-tr*Xre.Ur+(hhX+http://docs.python.org/library/re.html#re.UX-tr,Xwinsound.SND_MEMORYr-(hhX@http://docs.python.org/library/winsound.html#winsound.SND_MEMORYX-tr.X errno.ECOMMr/(hhX5http://docs.python.org/library/errno.html#errno.ECOMMX-tr0Xtypes.InstanceTyper1(hhX<http://docs.python.org/library/types.html#types.InstanceTypeX-tr2X token.EQEQUALr3(hhX7http://docs.python.org/library/token.html#token.EQEQUALX-tr4Xlocale.LC_CTYPEr5(hhX:http://docs.python.org/library/locale.html#locale.LC_CTYPEX-tr6X token.COMMAr7(hhX5http://docs.python.org/library/token.html#token.COMMAX-tr8X os.O_RDWRr9(hhX0http://docs.python.org/library/os.html#os.O_RDWRX-tr:X os.pardirr;(hhX0http://docs.python.org/library/os.html#os.pardirX-tr<Xos.O_TEMPORARYr=(hhX5http://docs.python.org/library/os.html#os.O_TEMPORARYX-tr>X cd.controlr?(hhX1http://docs.python.org/library/cd.html#cd.controlX-tr@X$_winreg.REG_FULL_RESOURCE_DESCRIPTORrA(hhXPhttp://docs.python.org/library/_winreg.html#_winreg.REG_FULL_RESOURCE_DESCRIPTORX-trBXtypes.TupleTyperC(hhX9http://docs.python.org/library/types.html#types.TupleTypeX-trDX curses.OKrE(hhX4http://docs.python.org/library/curses.html#curses.OKX-trFXgc.DEBUG_STATSrG(hhX5http://docs.python.org/library/gc.html#gc.DEBUG_STATSX-trHX(xml.sax.handler.property_lexical_handlerrI(hhX\http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.property_lexical_handlerX-trJX time.daylightrK(hhX6http://docs.python.org/library/time.html#time.daylightX-trLXquitrM(hhX2http://docs.python.org/library/constants.html#quitX-trNX_winreg.HKEY_CURRENT_CONFIGrO(hhXGhttp://docs.python.org/library/_winreg.html#_winreg.HKEY_CURRENT_CONFIGX-trPX cd.catalogrQ(hhX1http://docs.python.org/library/cd.html#cd.catalogX-trRXlocale.ERA_T_FMTrS(hhX;http://docs.python.org/library/locale.html#locale.ERA_T_FMTX-trTXsubprocess.STD_INPUT_HANDLErU(hhXJhttp://docs.python.org/library/subprocess.html#subprocess.STD_INPUT_HANDLEX-trVX errno.EUSERSrW(hhX6http://docs.python.org/library/errno.html#errno.EUSERSX-trXX errno.ELIBBADrY(hhX7http://docs.python.org/library/errno.html#errno.ELIBBADX-trZX os.O_APPENDr[(hhX2http://docs.python.org/library/os.html#os.O_APPENDX-tr\X sys.winverr](hhX2http://docs.python.org/library/sys.html#sys.winverX-tr^Xtoken.CIRCUMFLEXEQUALr_(hhX?http://docs.python.org/library/token.html#token.CIRCUMFLEXEQUALX-tr`Xunicodedata.unidata_versionra(hhXKhttp://docs.python.org/library/unicodedata.html#unicodedata.unidata_versionX-trbX sunau.AUDIO_FILE_ENCODING_ALAW_8rc(hhXJhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_ALAW_8X-trdXerrno.ELIBEXECre(hhX8http://docs.python.org/library/errno.html#errno.ELIBEXECX-trfX ssl.CERT_NONErg(hhX5http://docs.python.org/library/ssl.html#ssl.CERT_NONEX-trhX os.O_WRONLYri(hhX2http://docs.python.org/library/os.html#os.O_WRONLYX-trjX errno.ENOMSGrk(hhX6http://docs.python.org/library/errno.html#errno.ENOMSGX-trlXtypes.FileTyperm(hhX8http://docs.python.org/library/types.html#types.FileTypeX-trnX token.MINUSro(hhX5http://docs.python.org/library/token.html#token.MINUSX-trpXstat.SF_APPENDrq(hhX7http://docs.python.org/library/stat.html#stat.SF_APPENDX-trrXtypes.FloatTypers(hhX9http://docs.python.org/library/types.html#types.FloatTypeX-trtXerrno.ENOTUNIQru(hhX8http://docs.python.org/library/errno.html#errno.ENOTUNIQX-trvX os.TMP_MAXrw(hhX1http://docs.python.org/library/os.html#os.TMP_MAXX-trxXresource.RLIMIT_MEMLOCKry(hhXDhttp://docs.python.org/library/resource.html#resource.RLIMIT_MEMLOCKX-trzXstring.ascii_uppercaser{(hhXAhttp://docs.python.org/library/string.html#string.ascii_uppercaseX-tr|Xuuid.RESERVED_NCSr}(hhX:http://docs.python.org/library/uuid.html#uuid.RESERVED_NCSX-tr~X"sunau.AUDIO_FILE_ENCODING_LINEAR_8r(hhXLhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_LINEAR_8X-trX errno.ENOTDIRr(hhX7http://docs.python.org/library/errno.html#errno.ENOTDIRX-trXsignal.ITIMER_VIRTUALr(hhX@http://docs.python.org/library/signal.html#signal.ITIMER_VIRTUALX-trXtoken.PLUSEQUALr(hhX9http://docs.python.org/library/token.html#token.PLUSEQUALX-trX_winreg.KEY_ALL_ACCESSr(hhXBhttp://docs.python.org/library/_winreg.html#_winreg.KEY_ALL_ACCESSX-trXresource.RLIMIT_COREr(hhXAhttp://docs.python.org/library/resource.html#resource.RLIMIT_COREX-trXstat.SF_NOUNLINKr(hhX9http://docs.python.org/library/stat.html#stat.SF_NOUNLINKX-trXsubprocess.STARTF_USESHOWWINDOWr(hhXNhttp://docs.python.org/library/subprocess.html#subprocess.STARTF_USESHOWWINDOWX-trXdoctest.REPORT_NDIFFr(hhX@http://docs.python.org/library/doctest.html#doctest.REPORT_NDIFFX-trX errno.EXFULLr(hhX6http://docs.python.org/library/errno.html#errno.EXFULLX-trXstring.lowercaser(hhX;http://docs.python.org/library/string.html#string.lowercaseX-trXresource.RLIMIT_FSIZEr(hhXBhttp://docs.python.org/library/resource.html#resource.RLIMIT_FSIZEX-trXwinsound.SND_NOWAITr(hhX@http://docs.python.org/library/winsound.html#winsound.SND_NOWAITX-trXtypes.ComplexTyper(hhX;http://docs.python.org/library/types.html#types.ComplexTypeX-trXre.Lr(hhX+http://docs.python.org/library/re.html#re.LX-trXsys.float_repr_styler(hhX<http://docs.python.org/library/sys.html#sys.float_repr_styleX-trXtypes.DictionaryTyper(hhX>http://docs.python.org/library/types.html#types.DictionaryTypeX-trXos.EX_NOTFOUNDr(hhX5http://docs.python.org/library/os.html#os.EX_NOTFOUNDX-trX os.EX_NOUSERr(hhX3http://docs.python.org/library/os.html#os.EX_NOUSERX-trXtoken.BACKQUOTEr(hhX9http://docs.python.org/library/token.html#token.BACKQUOTEX-trXcalendar.month_namer(hhX@http://docs.python.org/library/calendar.html#calendar.month_nameX-trXtypes.GeneratorTyper(hhX=http://docs.python.org/library/types.html#types.GeneratorTypeX-trX errno.ENOBUFSr(hhX7http://docs.python.org/library/errno.html#errno.ENOBUFSX-trXos.O_NOINHERITr(hhX5http://docs.python.org/library/os.html#os.O_NOINHERITX-trXresource.RLIMIT_RSSr(hhX@http://docs.python.org/library/resource.html#resource.RLIMIT_RSSX-trXsys.__stdout__r(hhX6http://docs.python.org/library/sys.html#sys.__stdout__X-trXresource.RLIMIT_ASr(hhX?http://docs.python.org/library/resource.html#resource.RLIMIT_ASX-trXtoken.LESSEQUALr(hhX9http://docs.python.org/library/token.html#token.LESSEQUALX-trX METH_COEXISTr(hhX9http://docs.python.org/c-api/structures.html#METH_COEXISTX-trX stat.ST_GIDr(hhX4http://docs.python.org/library/stat.html#stat.ST_GIDX-trXresource.RUSAGE_CHILDRENr(hhXEhttp://docs.python.org/library/resource.html#resource.RUSAGE_CHILDRENX-trXsys.subversionr(hhX6http://docs.python.org/library/sys.html#sys.subversionX-trX_winreg.KEY_WOW64_32KEYr(hhXChttp://docs.python.org/library/_winreg.html#_winreg.KEY_WOW64_32KEYX-trXPy_TPFLAGS_HAVE_WEAKREFSr(hhXBhttp://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_WEAKREFSX-trXlocale.CRNCYSTRr(hhX:http://docs.python.org/library/locale.html#locale.CRNCYSTRX-trXcurses.versionr(hhX9http://docs.python.org/library/curses.html#curses.versionX-trXxml.dom.pulldom.default_bufsizer(hhXShttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.default_bufsizeX-trX#xml.sax.handler.property_xml_stringr(hhXWhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.property_xml_stringX-trXcalendar.month_abbrr(hhX@http://docs.python.org/library/calendar.html#calendar.month_abbrX-trXtypes.LambdaTyper(hhX:http://docs.python.org/library/types.html#types.LambdaTypeX-trXre.Xr(hhX+http://docs.python.org/library/re.html#re.XX-trX!tarfile.TarFileCompat.TAR_GZIPPEDr(hhXMhttp://docs.python.org/library/tarfile.html#tarfile.TarFileCompat.TAR_GZIPPEDX-trX_winreg.REG_DWORD_LITTLE_ENDIANr(hhXKhttp://docs.python.org/library/_winreg.html#_winreg.REG_DWORD_LITTLE_ENDIANX-trX sys.stderrr(hhX2http://docs.python.org/library/sys.html#sys.stderrX-trXerrno.EWOULDBLOCKr(hhX;http://docs.python.org/library/errno.html#errno.EWOULDBLOCKX-trXerrno.ESHUTDOWNr(hhX9http://docs.python.org/library/errno.html#errno.ESHUTDOWNX-trXsys.tracebacklimitr(hhX:http://docs.python.org/library/sys.html#sys.tracebacklimitX-trXstatvfs.F_BSIZEr(hhX;http://docs.python.org/library/statvfs.html#statvfs.F_BSIZEX-trX errno.EIOr(hhX3http://docs.python.org/library/errno.html#errno.EIOX-trX dbm.libraryr(hhX3http://docs.python.org/library/dbm.html#dbm.libraryX-trX errno.EBFONTr(hhX6http://docs.python.org/library/errno.html#errno.EBFONTX-trX stat.ST_MODEr(hhX5http://docs.python.org/library/stat.html#stat.ST_MODEX-trXsys.ps1r(hhX/http://docs.python.org/library/sys.html#sys.ps1X-trXlocale.LC_MONETARYr(hhX=http://docs.python.org/library/locale.html#locale.LC_MONETARYX-trX os.SEEK_ENDr(hhX2http://docs.python.org/library/os.html#os.SEEK_ENDX-trXsubprocess.SW_HIDEr(hhXAhttp://docs.python.org/library/subprocess.html#subprocess.SW_HIDEX-trXsqlite3.sqlite_versionr(hhXBhttp://docs.python.org/library/sqlite3.html#sqlite3.sqlite_versionX-trX errno.ESPIPEr(hhX6http://docs.python.org/library/errno.html#errno.ESPIPEX-trXmarshal.versionr(hhX;http://docs.python.org/library/marshal.html#marshal.versionX-trX errno.ENOMEMr(hhX6http://docs.python.org/library/errno.html#errno.ENOMEMX-trXresource.RUSAGE_SELFr(hhXAhttp://docs.python.org/library/resource.html#resource.RUSAGE_SELFX-trX os.EX_NOPERMr(hhX3http://docs.python.org/library/os.html#os.EX_NOPERMX-trXresource.RLIM_INFINITYr(hhXChttp://docs.python.org/library/resource.html#resource.RLIM_INFINITYX-trXtoken.VBAREQUALr(hhX9http://docs.python.org/library/token.html#token.VBAREQUALX-trXtarfile.PAX_FORMATr(hhX>http://docs.python.org/library/tarfile.html#tarfile.PAX_FORMATX-trX os.altsepr(hhX0http://docs.python.org/library/os.html#os.altsepX-trX os.P_NOWAITr(hhX2http://docs.python.org/library/os.html#os.P_NOWAITX-trXcd.pnumr(hhX.http://docs.python.org/library/cd.html#cd.pnumX-trXerrno.ECONNREFUSEDr(hhX<http://docs.python.org/library/errno.html#errno.ECONNREFUSEDX-trXftplib.all_errorsr (hhX<http://docs.python.org/library/ftplib.html#ftplib.all_errorsX-tr Xerrno.ENOTEMPTYr (hhX9http://docs.python.org/library/errno.html#errno.ENOTEMPTYX-tr X os.O_DSYNCr (hhX1http://docs.python.org/library/os.html#os.O_DSYNCX-trXstat.SF_SNAPSHOTr(hhX9http://docs.python.org/library/stat.html#stat.SF_SNAPSHOTX-trXsqlite3.version_infor(hhX@http://docs.python.org/library/sqlite3.html#sqlite3.version_infoX-trX os.EX_NOINPUTr(hhX4http://docs.python.org/library/os.html#os.EX_NOINPUTX-trX errno.ENOANOr(hhX6http://docs.python.org/library/errno.html#errno.ENOANOX-trX METH_OLDARGSr(hhX9http://docs.python.org/c-api/structures.html#METH_OLDARGSX-trX METH_CLASSr(hhX7http://docs.python.org/c-api/structures.html#METH_CLASSX-trXdatetime.MINYEARr(hhX=http://docs.python.org/library/datetime.html#datetime.MINYEARX-trXerrno.EPFNOSUPPORTr(hhX<http://docs.python.org/library/errno.html#errno.EPFNOSUPPORTX-trXtoken.AMPEREQUALr(hhX:http://docs.python.org/library/token.html#token.AMPEREQUALX-tr Xstring.whitespacer!(hhX<http://docs.python.org/library/string.html#string.whitespaceX-tr"Xtoken.CIRCUMFLEXr#(hhX:http://docs.python.org/library/token.html#token.CIRCUMFLEXX-tr$Xcodecs.BOM_UTF16r%(hhX;http://docs.python.org/library/codecs.html#codecs.BOM_UTF16X-tr&Xos.EX_PROTOCOLr'(hhX5http://docs.python.org/library/os.html#os.EX_PROTOCOLX-tr(Xsignal.ITIMER_PROFr)(hhX=http://docs.python.org/library/signal.html#signal.ITIMER_PROFX-tr*X time.timezoner+(hhX6http://docs.python.org/library/time.html#time.timezoneX-tr,X errno.ENOEXECr-(hhX7http://docs.python.org/library/errno.html#errno.ENOEXECX-tr.Xstat.UF_NODUMPr/(hhX7http://docs.python.org/library/stat.html#stat.UF_NODUMPX-tr0X msilib.textr1(hhX6http://docs.python.org/library/msilib.html#msilib.textX-tr2X dis.hasfreer3(hhX3http://docs.python.org/library/dis.html#dis.hasfreeX-tr4X parser.STTyper5(hhX8http://docs.python.org/library/parser.html#parser.STTypeX-tr6X sys.last_typer7(hhX5http://docs.python.org/library/sys.html#sys.last_typeX-tr8X stat.S_ISUIDr9(hhX5http://docs.python.org/library/stat.html#stat.S_ISUIDX-tr:X errno.EAGAINr;(hhX6http://docs.python.org/library/errno.html#errno.EAGAINX-tr<X_winreg.KEY_CREATE_LINKr=(hhXChttp://docs.python.org/library/_winreg.html#_winreg.KEY_CREATE_LINKX-tr>Xsite.ENABLE_USER_SITEr?(hhX>http://docs.python.org/library/site.html#site.ENABLE_USER_SITEX-tr@Ximageop.backward_compatiblerA(hhXGhttp://docs.python.org/library/imageop.html#imageop.backward_compatibleX-trBXstring.hexdigitsrC(hhX;http://docs.python.org/library/string.html#string.hexdigitsX-trDX token.PERCENTrE(hhX7http://docs.python.org/library/token.html#token.PERCENTX-trFX os.EX_OSERRrG(hhX2http://docs.python.org/library/os.html#os.EX_OSERRX-trHXerrno.ESOCKTNOSUPPORTrI(hhX?http://docs.python.org/library/errno.html#errno.ESOCKTNOSUPPORTX-trJXxml.parsers.expat.XMLParserTyperK(hhXKhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.XMLParserTypeX-trLX dis.opnamerM(hhX2http://docs.python.org/library/dis.html#dis.opnameX-trNXtypes.CodeTyperO(hhX8http://docs.python.org/library/types.html#types.CodeTypeX-trPX stat.ST_INOrQ(hhX4http://docs.python.org/library/stat.html#stat.ST_INOX-trRXtypes.TypeTyperS(hhX8http://docs.python.org/library/types.html#types.TypeTypeX-trTXmath.pirU(hhX0http://docs.python.org/library/math.html#math.piX-trVX errno.ENXIOrW(hhX5http://docs.python.org/library/errno.html#errno.ENXIOX-trXX errno.EMFILErY(hhX6http://docs.python.org/library/errno.html#errno.EMFILEX-trZXsys.executabler[(hhX6http://docs.python.org/library/sys.html#sys.executableX-tr\X_winreg.HKEY_LOCAL_MACHINEr](hhXFhttp://docs.python.org/library/_winreg.html#_winreg.HKEY_LOCAL_MACHINEX-tr^X_winreg.KEY_EXECUTEr_(hhX?http://docs.python.org/library/_winreg.html#_winreg.KEY_EXECUTEX-tr`Xzipfile.ZIP_DEFLATEDra(hhX@http://docs.python.org/library/zipfile.html#zipfile.ZIP_DEFLATEDX-trbXposixfile.SEEK_SETrc(hhX@http://docs.python.org/library/posixfile.html#posixfile.SEEK_SETX-trdX errno.ENOLINKre(hhX7http://docs.python.org/library/errno.html#errno.ENOLINKX-trfX#sunau.AUDIO_FILE_ENCODING_LINEAR_32rg(hhXMhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_LINEAR_32X-trhX errno.EBADSLTri(hhX7http://docs.python.org/library/errno.html#errno.EBADSLTX-trjXsys.hexversionrk(hhX6http://docs.python.org/library/sys.html#sys.hexversionX-trlXuuid.NAMESPACE_URLrm(hhX;http://docs.python.org/library/uuid.html#uuid.NAMESPACE_URLX-trnX errno.ESRCHro(hhX5http://docs.python.org/library/errno.html#errno.ESRCHX-trpX errno.ELIBMAXrq(hhX7http://docs.python.org/library/errno.html#errno.ELIBMAXX-trrX_winreg.HKEY_USERSrs(hhX>http://docs.python.org/library/_winreg.html#_winreg.HKEY_USERSX-trtXstat.UF_HIDDENru(hhX7http://docs.python.org/library/stat.html#stat.UF_HIDDENX-trvXsys.float_inforw(hhX6http://docs.python.org/library/sys.html#sys.float_infoX-trxX stat.S_IFSOCKry(hhX6http://docs.python.org/library/stat.html#stat.S_IFSOCKX-trzX doctest.SKIPr{(hhX8http://docs.python.org/library/doctest.html#doctest.SKIPX-tr|X_winreg.HKEY_CURRENT_USERr}(hhXEhttp://docs.python.org/library/_winreg.html#_winreg.HKEY_CURRENT_USERX-tr~Xtypes.NotImplementedTyper(hhXBhttp://docs.python.org/library/types.html#types.NotImplementedTypeX-trX$xml.sax.handler.feature_external_pesr(hhXXhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.feature_external_pesX-trXexitr(hhX2http://docs.python.org/library/constants.html#exitX-trX token.DEDENTr(hhX6http://docs.python.org/library/token.html#token.DEDENTX-trX sys.prefixr(hhX2http://docs.python.org/library/sys.html#sys.prefixX-trXdis.hascomparer(hhX6http://docs.python.org/library/dis.html#dis.hascompareX-trXstat.UF_OPAQUEr(hhX7http://docs.python.org/library/stat.html#stat.UF_OPAQUEX-trXhttplib.HTTP_PORTr(hhX=http://docs.python.org/library/httplib.html#httplib.HTTP_PORTX-trX METH_VARARGSr(hhX9http://docs.python.org/c-api/structures.html#METH_VARARGSX-trXcreditsr(hhX5http://docs.python.org/library/constants.html#creditsX-trX os.O_TEXTr(hhX0http://docs.python.org/library/os.html#os.O_TEXTX-trXerrno.ERESTARTr(hhX8http://docs.python.org/library/errno.html#errno.ERESTARTX-trX token.RBRACEr(hhX6http://docs.python.org/library/token.html#token.RBRACEX-trX token.LSQBr(hhX4http://docs.python.org/library/token.html#token.LSQBX-trX errno.EISDIRr(hhX6http://docs.python.org/library/errno.html#errno.EISDIRX-trX errno.ENOSYSr(hhX6http://docs.python.org/library/errno.html#errno.ENOSYSX-trX errno.EL3HLTr(hhX6http://docs.python.org/library/errno.html#errno.EL3HLTX-trXunicodedata.ucd_3_2_0r(hhXEhttp://docs.python.org/library/unicodedata.html#unicodedata.ucd_3_2_0X-trXwinsound.SND_ALIASr(hhX?http://docs.python.org/library/winsound.html#winsound.SND_ALIASX-trX%asynchat.async_chat.ac_in_buffer_sizer(hhXRhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.ac_in_buffer_sizeX-trX os.SEEK_SETr(hhX2http://docs.python.org/library/os.html#os.SEEK_SETX-trX&asynchat.async_chat.ac_out_buffer_sizer(hhXShttp://docs.python.org/library/asynchat.html#asynchat.async_chat.ac_out_buffer_sizeX-trX dis.cmp_opr(hhX2http://docs.python.org/library/dis.html#dis.cmp_opX-trX"xml.sax.handler.feature_namespacesr(hhXVhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.feature_namespacesX-trX sys.exc_typer(hhX4http://docs.python.org/library/sys.html#sys.exc_typeX-trXdoctest.DONT_ACCEPT_TRUE_FOR_1r(hhXJhttp://docs.python.org/library/doctest.html#doctest.DONT_ACCEPT_TRUE_FOR_1X-trXhtmlentitydefs.entitydefsr(hhXEhttp://docs.python.org/library/htmllib.html#htmlentitydefs.entitydefsX-trXsys.maxunicoder(hhX6http://docs.python.org/library/sys.html#sys.maxunicodeX-trX os.EX_USAGEr(hhX2http://docs.python.org/library/os.html#os.EX_USAGEX-trXresource.RLIMIT_CPUr(hhX@http://docs.python.org/library/resource.html#resource.RLIMIT_CPUX-trX sys.stdinr(hhX1http://docs.python.org/library/sys.html#sys.stdinX-trXos.EX_SOFTWAREr(hhX5http://docs.python.org/library/os.html#os.EX_SOFTWAREX-trX sys.dllhandler(hhX5http://docs.python.org/library/sys.html#sys.dllhandleX-trXtoken.GREATEREQUALr(hhX<http://docs.python.org/library/token.html#token.GREATEREQUALX-trXgc.DEBUG_OBJECTSr(hhX7http://docs.python.org/library/gc.html#gc.DEBUG_OBJECTSX-trX errno.EIDRMr(hhX5http://docs.python.org/library/errno.html#errno.EIDRMX-trXimp.C_EXTENSIONr(hhX7http://docs.python.org/library/imp.html#imp.C_EXTENSIONX-trXsocket.SOCK_RAWr(hhX:http://docs.python.org/library/socket.html#socket.SOCK_RAWX-trXsocket.SOCK_STREAMr(hhX=http://docs.python.org/library/socket.html#socket.SOCK_STREAMX-trXPy_TPFLAGS_HAVE_RICHCOMPAREr(hhXEhttp://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_HAVE_RICHCOMPAREX-trX errno.EEXISTr(hhX6http://docs.python.org/library/errno.html#errno.EEXISTX-trX"xml.sax.handler.feature_validationr(hhXVhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.feature_validationX-trXerrno.EALREADYr(hhX8http://docs.python.org/library/errno.html#errno.EALREADYX-trX dis.hasnamer(hhX3http://docs.python.org/library/dis.html#dis.hasnameX-trXmsvcrt.LK_NBRLCKr(hhX;http://docs.python.org/library/msvcrt.html#msvcrt.LK_NBRLCKX-trXmimetypes.suffix_mapr(hhXBhttp://docs.python.org/library/mimetypes.html#mimetypes.suffix_mapX-trXlocale.CHAR_MAXr(hhX:http://docs.python.org/library/locale.html#locale.CHAR_MAXX-trXstatvfs.F_FRSIZEr(hhX<http://docs.python.org/library/statvfs.html#statvfs.F_FRSIZEX-trX token.EQUALr(hhX5http://docs.python.org/library/token.html#token.EQUALX-trXdatetime.MAXYEARr(hhX=http://docs.python.org/library/datetime.html#datetime.MAXYEARX-trXhtmlentitydefs.name2codepointr(hhXIhttp://docs.python.org/library/htmllib.html#htmlentitydefs.name2codepointX-trXkeyword.kwlistr(hhX:http://docs.python.org/library/keyword.html#keyword.kwlistX-trXwinsound.SND_PURGEr(hhX?http://docs.python.org/library/winsound.html#winsound.SND_PURGEX-trXos.W_OKr(hhX.http://docs.python.org/library/os.html#os.W_OKX-trXtoken.MINEQUALr(hhX8http://docs.python.org/library/token.html#token.MINEQUALX-trX token.NUMBERr(hhX6http://docs.python.org/library/token.html#token.NUMBERX-trXtypes.BuiltinMethodTyper(hhXAhttp://docs.python.org/library/types.html#types.BuiltinMethodTypeX-trXsys.exec_prefixr(hhX7http://docs.python.org/library/sys.html#sys.exec_prefixX-trX sys.copyrightr(hhX5http://docs.python.org/library/sys.html#sys.copyrightX-trXwinsound.SND_NODEFAULTr(hhXChttp://docs.python.org/library/winsound.html#winsound.SND_NODEFAULTX-trXformatter.AS_ISr(hhX=http://docs.python.org/library/formatter.html#formatter.AS_ISX-trXerrno.ETOOMANYREFSr(hhX<http://docs.python.org/library/errno.html#errno.ETOOMANYREFSX-trXerrno.EMSGSIZEr(hhX8http://docs.python.org/library/errno.html#errno.EMSGSIZEX-trXtypes.BooleanTyper(hhX;http://docs.python.org/library/types.html#types.BooleanTypeX-trXos.O_DIRECTORYr(hhX5http://docs.python.org/library/os.html#os.O_DIRECTORYX-trXweakref.CallableProxyTyper(hhXEhttp://docs.python.org/library/weakref.html#weakref.CallableProxyTypeX-trXstring.uppercaser(hhX;http://docs.python.org/library/string.html#string.uppercaseX-trXwinsound.MB_ICONASTERISKr(hhXEhttp://docs.python.org/library/winsound.html#winsound.MB_ICONASTERISKX-trXssl.PROTOCOL_SSLv3r(hhX:http://docs.python.org/library/ssl.html#ssl.PROTOCOL_SSLv3X-trXssl.PROTOCOL_SSLv2r (hhX:http://docs.python.org/library/ssl.html#ssl.PROTOCOL_SSLv2X-tr X errno.EBADFr (hhX5http://docs.python.org/library/errno.html#errno.EBADFX-tr Xstatvfs.F_BLOCKSr (hhX<http://docs.python.org/library/statvfs.html#statvfs.F_BLOCKSX-trXhttplib.responsesr(hhX=http://docs.python.org/library/httplib.html#httplib.responsesX-trXtypes.LongTyper(hhX8http://docs.python.org/library/types.html#types.LongTypeX-trX os.O_RANDOMr(hhX2http://docs.python.org/library/os.html#os.O_RANDOMX-trXhttplib.HTTPS_PORTr(hhX>http://docs.python.org/library/httplib.html#httplib.HTTPS_PORTX-trXerrno.ENOTSOCKr(hhX8http://docs.python.org/library/errno.html#errno.ENOTSOCKX-trX errno.EBADRr(hhX5http://docs.python.org/library/errno.html#errno.EBADRX-trXerrno.EAFNOSUPPORTr(hhX<http://docs.python.org/library/errno.html#errno.EAFNOSUPPORTX-trX token.PLUSr(hhX4http://docs.python.org/library/token.html#token.PLUSX-trX errno.EINTRr(hhX5http://docs.python.org/library/errno.html#errno.EINTRX-tr X errno.EROFSr!(hhX5http://docs.python.org/library/errno.html#errno.EROFSX-tr"Xhtmlentitydefs.codepoint2namer#(hhXIhttp://docs.python.org/library/htmllib.html#htmlentitydefs.codepoint2nameX-tr$X codecs.BOM_BEr%(hhX8http://docs.python.org/library/codecs.html#codecs.BOM_BEX-tr&Xsys.last_valuer'(hhX6http://docs.python.org/library/sys.html#sys.last_valueX-tr(X os.P_NOWAITOr)(hhX3http://docs.python.org/library/os.html#os.P_NOWAITOX-tr*X os.WCONTINUEDr+(hhX4http://docs.python.org/library/os.html#os.WCONTINUEDX-tr,X$sunau.AUDIO_FILE_ENCODING_ADPCM_G722r-(hhXNhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_ADPCM_G722X-tr.X token.LPARr/(hhX4http://docs.python.org/library/token.html#token.LPARX-tr0Xsocket.AF_INETr1(hhX9http://docs.python.org/library/socket.html#socket.AF_INETX-tr2X token.AMPERr3(hhX5http://docs.python.org/library/token.html#token.AMPERX-tr4Xstat.UF_COMPRESSEDr5(hhX;http://docs.python.org/library/stat.html#stat.UF_COMPRESSEDX-tr6Xstatvfs.F_FLAGr7(hhX:http://docs.python.org/library/statvfs.html#statvfs.F_FLAGX-tr8X$sunau.AUDIO_FILE_ENCODING_ADPCM_G721r9(hhXNhttp://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_ENCODING_ADPCM_G721X-tr:Xcurses.ascii.controlnamesr;(hhXJhttp://docs.python.org/library/curses.ascii.html#curses.ascii.controlnamesX-tr<Xlocale.LC_MESSAGESr=(hhX=http://docs.python.org/library/locale.html#locale.LC_MESSAGESX-tr>X sys.exc_valuer?(hhX5http://docs.python.org/library/sys.html#sys.exc_valueX-tr@Xdoctest.IGNORE_EXCEPTION_DETAILrA(hhXKhttp://docs.python.org/library/doctest.html#doctest.IGNORE_EXCEPTION_DETAILX-trBXcodecs.BOM_UTF32_LErC(hhX>http://docs.python.org/library/codecs.html#codecs.BOM_UTF32_LEX-trDXerrno.ENETRESETrE(hhX9http://docs.python.org/library/errno.html#errno.ENETRESETX-trFXerrno.ENAMETOOLONGrG(hhX<http://docs.python.org/library/errno.html#errno.ENAMETOOLONGX-trHXtypes.BuiltinFunctionTyperI(hhXChttp://docs.python.org/library/types.html#types.BuiltinFunctionTypeX-trJXsys.api_versionrK(hhX7http://docs.python.org/library/sys.html#sys.api_versionX-trLX errno.EISNAMrM(hhX6http://docs.python.org/library/errno.html#errno.EISNAMX-trNXsunau.AUDIO_FILE_MAGICrO(hhX@http://docs.python.org/library/sunau.html#sunau.AUDIO_FILE_MAGICX-trPX stat.S_IFDIRrQ(hhX5http://docs.python.org/library/stat.html#stat.S_IFDIRX-trRXimp.PY_COMPILEDrS(hhX7http://docs.python.org/library/imp.html#imp.PY_COMPILEDX-trTX site.PREFIXESrU(hhX6http://docs.python.org/library/site.html#site.PREFIXESX-trVXlocale.LC_NUMERICrW(hhX<http://docs.python.org/library/locale.html#locale.LC_NUMERICX-trXX stat.S_IXUSRrY(hhX5http://docs.python.org/library/stat.html#stat.S_IXUSRX-trZXpickle.HIGHEST_PROTOCOLr[(hhXBhttp://docs.python.org/library/pickle.html#pickle.HIGHEST_PROTOCOLX-tr\X gc.garbager](hhX1http://docs.python.org/library/gc.html#gc.garbageX-tr^X os.O_EXCLr_(hhX0http://docs.python.org/library/os.html#os.O_EXCLX-tr`X errno.EDOMra(hhX4http://docs.python.org/library/errno.html#errno.EDOMX-trbX repr.aReprrc(hhX3http://docs.python.org/library/repr.html#repr.aReprX-trdXcStringIO.OutputTypere(hhXAhttp://docs.python.org/library/stringio.html#cStringIO.OutputTypeX-trfX_winreg.KEY_NOTIFYrg(hhX>http://docs.python.org/library/_winreg.html#_winreg.KEY_NOTIFYX-trhXtoken.SLASHEQUALri(hhX:http://docs.python.org/library/token.html#token.SLASHEQUALX-trjXdoctest.COMPARISON_FLAGSrk(hhXDhttp://docs.python.org/library/doctest.html#doctest.COMPARISON_FLAGSX-trlXtypes.StringTyperm(hhX:http://docs.python.org/library/types.html#types.StringTypeX-trnXPy_TPFLAGS_READYINGro(hhX=http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_READYINGX-trpXtoken.DOUBLESLASHEQUALrq(hhX@http://docs.python.org/library/token.html#token.DOUBLESLASHEQUALX-trrXsocket.SOCK_DGRAMrs(hhX<http://docs.python.org/library/socket.html#socket.SOCK_DGRAMX-trtX os.O_NONBLOCKru(hhX4http://docs.python.org/library/os.html#os.O_NONBLOCKX-trvXsubprocess.CREATE_NEW_CONSOLErw(hhXLhttp://docs.python.org/library/subprocess.html#subprocess.CREATE_NEW_CONSOLEX-trxX token.LESSry(hhX4http://docs.python.org/library/token.html#token.LESSX-trzXPy_TPFLAGS_BASETYPEr{(hhX=http://docs.python.org/c-api/typeobj.html#Py_TPFLAGS_BASETYPEX-tr|X_winreg.REG_EXPAND_SZr}(hhXAhttp://docs.python.org/library/_winreg.html#_winreg.REG_EXPAND_SZX-tr~Xstring.ascii_lowercaser(hhXAhttp://docs.python.org/library/string.html#string.ascii_lowercaseX-trXwinsound.MB_ICONQUESTIONr(hhXEhttp://docs.python.org/library/winsound.html#winsound.MB_ICONQUESTIONX-trX errno.ESRMNTr(hhX6http://docs.python.org/library/errno.html#errno.ESRMNTX-trXerrno.EL2NSYNCr(hhX8http://docs.python.org/library/errno.html#errno.EL2NSYNCX-trXtabnanny.filename_onlyr(hhXChttp://docs.python.org/library/tabnanny.html#tabnanny.filename_onlyX-trXcsv.QUOTE_NONEr(hhX6http://docs.python.org/library/csv.html#csv.QUOTE_NONEX-trX stat.S_ISGIDr(hhX5http://docs.python.org/library/stat.html#stat.S_ISGIDX-trXsys.warnoptionsr(hhX7http://docs.python.org/library/sys.html#sys.warnoptionsX-trX errno.ENOENTr(hhX6http://docs.python.org/library/errno.html#errno.ENOENTX-truXstd:termr}r(Xvirtual machiner(hhX9http://docs.python.org/glossary.html#term-virtual-machineX-trX __future__r(hhX0http://docs.python.org/glossary.html#term-futureX-trXiteratorr(hhX2http://docs.python.org/glossary.html#term-iteratorX-trXlbylr(hhX.http://docs.python.org/glossary.html#term-lbylX-trX interpretedr(hhX5http://docs.python.org/glossary.html#term-interpretedX-trXbytecoder(hhX2http://docs.python.org/glossary.html#term-bytecodeX-trXpositional argumentr(hhX=http://docs.python.org/glossary.html#term-positional-argumentX-trXcoercionr(hhX2http://docs.python.org/glossary.html#term-coercionX-trXiterabler(hhX2http://docs.python.org/glossary.html#term-iterableX-trX generatorr(hhX3http://docs.python.org/glossary.html#term-generatorX-trX file objectr(hhX5http://docs.python.org/glossary.html#term-file-objectX-trXcomplex numberr(hhX8http://docs.python.org/glossary.html#term-complex-numberX-trXkeyword argumentr(hhX:http://docs.python.org/glossary.html#term-keyword-argumentX-trX>>>r(hhX*http://docs.python.org/glossary.html#term-X-trXtriple-quoted stringr(hhX>http://docs.python.org/glossary.html#term-triple-quoted-stringX-trX statementr(hhX3http://docs.python.org/glossary.html#term-statementX-trXgilr(hhX-http://docs.python.org/glossary.html#term-gilX-trXtyper(hhX.http://docs.python.org/glossary.html#term-typeX-trXgarbage collectionr(hhX<http://docs.python.org/glossary.html#term-garbage-collectionX-trXfinderr(hhX0http://docs.python.org/glossary.html#term-finderX-trXfunctionr(hhX2http://docs.python.org/glossary.html#term-functionX-trXextension moduler(hhX:http://docs.python.org/glossary.html#term-extension-moduleX-trXcontext managerr(hhX9http://docs.python.org/glossary.html#term-context-managerX-trXspecial methodr(hhX8http://docs.python.org/glossary.html#term-special-methodX-trXinteger divisionr(hhX:http://docs.python.org/glossary.html#term-integer-divisionX-trX...r(hhX+http://docs.python.org/glossary.html#term-1X-trXglobal interpreter lockr(hhXAhttp://docs.python.org/glossary.html#term-global-interpreter-lockX-trXloaderr(hhX0http://docs.python.org/glossary.html#term-loaderX-trX decoratorr(hhX3http://docs.python.org/glossary.html#term-decoratorX-trXlist comprehensionr(hhX<http://docs.python.org/glossary.html#term-list-comprehensionX-trXcpythonr(hhX1http://docs.python.org/glossary.html#term-cpythonX-trX parameterr(hhX3http://docs.python.org/glossary.html#term-parameterX-trXlistr(hhX.http://docs.python.org/glossary.html#term-listX-trX immutabler(hhX3http://docs.python.org/glossary.html#term-immutableX-trXbytes-like objectr(hhX;http://docs.python.org/glossary.html#term-bytes-like-objectX-trXidler(hhX.http://docs.python.org/glossary.html#term-idleX-trXhashabler(hhX2http://docs.python.org/glossary.html#term-hashableX-trX classic classr(hhX7http://docs.python.org/glossary.html#term-classic-classX-trXreference countr(hhX9http://docs.python.org/glossary.html#term-reference-countX-trXviewr(hhX.http://docs.python.org/glossary.html#term-viewX-trXfloor divisionr(hhX8http://docs.python.org/glossary.html#term-floor-divisionX-trX interactiver(hhX5http://docs.python.org/glossary.html#term-interactiveX-trX python 3000r(hhX5http://docs.python.org/glossary.html#term-python-3000X-trXsequencer(hhX2http://docs.python.org/glossary.html#term-sequenceX-trXbdflr(hhX.http://docs.python.org/glossary.html#term-bdflX-trX attributer(hhX3http://docs.python.org/glossary.html#term-attributeX-trXargumentr(hhX2http://docs.python.org/glossary.html#term-argumentX-trXmoduler(hhX0http://docs.python.org/glossary.html#term-moduleX-trXeafpr(hhX.http://docs.python.org/glossary.html#term-eafpX-trX importingr(hhX3http://docs.python.org/glossary.html#term-importingX-trXstruct sequencer(hhX9http://docs.python.org/glossary.html#term-struct-sequenceX-trXpythonicr(hhX2http://docs.python.org/glossary.html#term-pythonicX-trXslicer(hhX/http://docs.python.org/glossary.html#term-sliceX-trX descriptorr(hhX4http://docs.python.org/glossary.html#term-descriptorX-trX2to3r(hhX-http://docs.python.org/glossary.html#term-to3X-trXimporterr(hhX2http://docs.python.org/glossary.html#term-importerX-trXabstract base classr(hhX=http://docs.python.org/glossary.html#term-abstract-base-classX-trXfile-like objectr(hhX:http://docs.python.org/glossary.html#term-file-like-objectX-trXmutabler(hhX1http://docs.python.org/glossary.html#term-mutableX-trX metaclassr (hhX3http://docs.python.org/glossary.html#term-metaclassX-tr Xmethodr (hhX0http://docs.python.org/glossary.html#term-methodX-tr X zen of pythonr (hhX7http://docs.python.org/glossary.html#term-zen-of-pythonX-trXnew-style classr(hhX9http://docs.python.org/glossary.html#term-new-style-classX-trX dictionaryr(hhX4http://docs.python.org/glossary.html#term-dictionaryX-trXobjectr(hhX0http://docs.python.org/glossary.html#term-objectX-trX docstringr(hhX3http://docs.python.org/glossary.html#term-docstringX-trXmappingr(hhX1http://docs.python.org/glossary.html#term-mappingX-trX named tupler(hhX5http://docs.python.org/glossary.html#term-named-tupleX-trX key functionr(hhX6http://docs.python.org/glossary.html#term-key-functionX-trXmethod resolution orderr(hhXAhttp://docs.python.org/glossary.html#term-method-resolution-orderX-trXclassr(hhX/http://docs.python.org/glossary.html#term-classX-tr Xuniversal newlinesr!(hhX<http://docs.python.org/glossary.html#term-universal-newlinesX-tr"Xpackager#(hhX1http://docs.python.org/glossary.html#term-packageX-tr$X __slots__r%(hhX/http://docs.python.org/glossary.html#term-slotsX-tr&Xmror'(hhX-http://docs.python.org/glossary.html#term-mroX-tr(Xgenerator expressionr)(hhX>http://docs.python.org/glossary.html#term-generator-expressionX-tr*X nested scoper+(hhX6http://docs.python.org/glossary.html#term-nested-scopeX-tr,X namespacer-(hhX3http://docs.python.org/glossary.html#term-namespaceX-tr.X expressionr/(hhX4http://docs.python.org/glossary.html#term-expressionX-tr0X duck-typingr1(hhX5http://docs.python.org/glossary.html#term-duck-typingX-tr2Xlambdar3(hhX0http://docs.python.org/glossary.html#term-lambdaX-tr4uX py:exceptionr5}r6(Xxml.dom.SyntaxErrr7(hhX=http://docs.python.org/library/xml.dom.html#xml.dom.SyntaxErrX-tr8Xmailbox.ExternalClashErrorr9(hhXFhttp://docs.python.org/library/mailbox.html#mailbox.ExternalClashErrorX-tr:X ssl.SSLErrorr;(hhX4http://docs.python.org/library/ssl.html#ssl.SSLErrorX-tr<XConfigParser.ParsingErrorr=(hhXJhttp://docs.python.org/library/configparser.html#ConfigParser.ParsingErrorX-tr>Xsgmllib.SGMLParseErrorr?(hhXBhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParseErrorX-tr@X dbm.errorrA(hhX1http://docs.python.org/library/dbm.html#dbm.errorX-trBXsmtplib.SMTPSenderRefusedrC(hhXEhttp://docs.python.org/library/smtplib.html#smtplib.SMTPSenderRefusedX-trDX sunau.ErrorrE(hhX5http://docs.python.org/library/sunau.html#sunau.ErrorX-trFXthreading.ThreadErrorrG(hhXChttp://docs.python.org/library/threading.html#threading.ThreadErrorX-trHXexceptions.TypeErrorrI(hhXChttp://docs.python.org/library/exceptions.html#exceptions.TypeErrorX-trJX locale.ErrorrK(hhX7http://docs.python.org/library/locale.html#locale.ErrorX-trLXuu.ErrorrM(hhX/http://docs.python.org/library/uu.html#uu.ErrorX-trNXexceptions.KeyboardInterruptrO(hhXKhttp://docs.python.org/library/exceptions.html#exceptions.KeyboardInterruptX-trPXxml.dom.InvalidStateErrrQ(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.InvalidStateErrX-trRXtarfile.ReadErrorrS(hhX=http://docs.python.org/library/tarfile.html#tarfile.ReadErrorX-trTXhttplib.ImproperConnectionStaterU(hhXKhttp://docs.python.org/library/httplib.html#httplib.ImproperConnectionStateX-trVX$ConfigParser.InterpolationDepthErrorrW(hhXUhttp://docs.python.org/library/configparser.html#ConfigParser.InterpolationDepthErrorX-trXXtarfile.HeaderErrorrY(hhX?http://docs.python.org/library/tarfile.html#tarfile.HeaderErrorX-trZXexceptions.ValueErrorr[(hhXDhttp://docs.python.org/library/exceptions.html#exceptions.ValueErrorX-tr\Xexceptions.WindowsErrorr](hhXFhttp://docs.python.org/library/exceptions.html#exceptions.WindowsErrorX-tr^X dbhash.errorr_(hhX7http://docs.python.org/library/dbhash.html#dbhash.errorX-tr`Xmailbox.FormatErrorra(hhX?http://docs.python.org/library/mailbox.html#mailbox.FormatErrorX-trbXcd.errorrc(hhX/http://docs.python.org/library/cd.html#cd.errorX-trdXpickle.PickleErrorre(hhX=http://docs.python.org/library/pickle.html#pickle.PickleErrorX-trfXexceptions.ArithmeticErrorrg(hhXIhttp://docs.python.org/library/exceptions.html#exceptions.ArithmeticErrorX-trhXnetrc.NetrcParseErrorri(hhX?http://docs.python.org/library/netrc.html#netrc.NetrcParseErrorX-trjXhttplib.ResponseNotReadyrk(hhXDhttp://docs.python.org/library/httplib.html#httplib.ResponseNotReadyX-trlXsocket.timeoutrm(hhX9http://docs.python.org/library/socket.html#socket.timeoutX-trnX Queue.Emptyro(hhX5http://docs.python.org/library/queue.html#Queue.EmptyX-trpXexceptions.TabErrorrq(hhXBhttp://docs.python.org/library/exceptions.html#exceptions.TabErrorX-trrXConfigParser.NoSectionErrorrs(hhXLhttp://docs.python.org/library/configparser.html#ConfigParser.NoSectionErrorX-trtXexceptions.UnicodeEncodeErrorru(hhXLhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeEncodeErrorX-trvXemail.errors.HeaderParseErrorrw(hhXNhttp://docs.python.org/library/email.errors.html#email.errors.HeaderParseErrorX-trxXhttplib.CannotSendHeaderry(hhXDhttp://docs.python.org/library/httplib.html#httplib.CannotSendHeaderX-trzXexceptions.UserWarningr{(hhXEhttp://docs.python.org/library/exceptions.html#exceptions.UserWarningX-tr|Xhttplib.InvalidURLr}(hhX>http://docs.python.org/library/httplib.html#httplib.InvalidURLX-tr~Xxml.sax.SAXExceptionr(hhX@http://docs.python.org/library/xml.sax.html#xml.sax.SAXExceptionX-trXexceptions.ImportErrorr(hhXEhttp://docs.python.org/library/exceptions.html#exceptions.ImportErrorX-trXtarfile.StreamErrorr(hhX?http://docs.python.org/library/tarfile.html#tarfile.StreamErrorX-trX curses.errorr(hhX7http://docs.python.org/library/curses.html#curses.errorX-trXurllib2.HTTPErrorr(hhX=http://docs.python.org/library/urllib2.html#urllib2.HTTPErrorX-trXexceptions.EnvironmentErrorr(hhXJhttp://docs.python.org/library/exceptions.html#exceptions.EnvironmentErrorX-trXexceptions.MemoryErrorr(hhXEhttp://docs.python.org/library/exceptions.html#exceptions.MemoryErrorX-trXexceptions.Warningr(hhXAhttp://docs.python.org/library/exceptions.html#exceptions.WarningX-trXexceptions.AssertionErrorr(hhXHhttp://docs.python.org/library/exceptions.html#exceptions.AssertionErrorX-trX%ConfigParser.InterpolationSyntaxErrorr(hhXVhttp://docs.python.org/library/configparser.html#ConfigParser.InterpolationSyntaxErrorX-trXtarfile.CompressionErrorr(hhXDhttp://docs.python.org/library/tarfile.html#tarfile.CompressionErrorX-trXparser.ParserErrorr(hhX=http://docs.python.org/library/parser.html#parser.ParserErrorX-trX struct.errorr(hhX7http://docs.python.org/library/struct.html#struct.errorX-trXtabnanny.NannyNagr(hhX>http://docs.python.org/library/tabnanny.html#tabnanny.NannyNagX-trX xml.dom.NoModificationAllowedErrr(hhXLhttp://docs.python.org/library/xml.dom.html#xml.dom.NoModificationAllowedErrX-trXbinascii.Errorr(hhX;http://docs.python.org/library/binascii.html#binascii.ErrorX-trXexceptions.GeneratorExitr(hhXGhttp://docs.python.org/library/exceptions.html#exceptions.GeneratorExitX-trXexceptions.ReferenceErrorr(hhXHhttp://docs.python.org/library/exceptions.html#exceptions.ReferenceErrorX-trXxml.dom.NamespaceErrr(hhX@http://docs.python.org/library/xml.dom.html#xml.dom.NamespaceErrX-trXftplib.error_replyr(hhX=http://docs.python.org/library/ftplib.html#ftplib.error_replyX-trXhttplib.UnimplementedFileModer(hhXIhttp://docs.python.org/library/httplib.html#httplib.UnimplementedFileModeX-trXos.errorr(hhX/http://docs.python.org/library/os.html#os.errorX-trXio.UnsupportedOperationr(hhX>http://docs.python.org/library/io.html#io.UnsupportedOperationX-trXCookie.CookieErrorr(hhX=http://docs.python.org/library/cookie.html#Cookie.CookieErrorX-trX imageop.errorr(hhX9http://docs.python.org/library/imageop.html#imageop.errorX-trX csv.Errorr(hhX1http://docs.python.org/library/csv.html#csv.ErrorX-trXcookielib.LoadErrorr(hhXAhttp://docs.python.org/library/cookielib.html#cookielib.LoadErrorX-trX exceptions.UnicodeTranslateErrorr(hhXOhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeTranslateErrorX-trXxml.dom.NotSupportedErrr(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.NotSupportedErrX-trX jpeg.errorr(hhX3http://docs.python.org/library/jpeg.html#jpeg.errorX-trXxml.dom.NoDataAllowedErrr(hhXDhttp://docs.python.org/library/xml.dom.html#xml.dom.NoDataAllowedErrX-trXexceptions.UnboundLocalErrorr(hhXKhttp://docs.python.org/library/exceptions.html#exceptions.UnboundLocalErrorX-trX$exceptions.PendingDeprecationWarningr(hhXShttp://docs.python.org/library/exceptions.html#exceptions.PendingDeprecationWarningX-trX gdbm.errorr(hhX3http://docs.python.org/library/gdbm.html#gdbm.errorX-trXio.BlockingIOErrorr(hhX9http://docs.python.org/library/io.html#io.BlockingIOErrorX-trXxml.dom.DOMExceptionr(hhX@http://docs.python.org/library/xml.dom.html#xml.dom.DOMExceptionX-trXxml.dom.HierarchyRequestErrr(hhXGhttp://docs.python.org/library/xml.dom.html#xml.dom.HierarchyRequestErrX-trX xdrlib.Errorr(hhX7http://docs.python.org/library/xdrlib.html#xdrlib.ErrorX-trXexceptions.OverflowErrorr(hhXGhttp://docs.python.org/library/exceptions.html#exceptions.OverflowErrorX-trXnntplib.NNTPErrorr(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTPErrorX-trXexceptions.UnicodeWarningr(hhXHhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeWarningX-trXtest.test_support.TestFailedr(hhXEhttp://docs.python.org/library/test.html#test.test_support.TestFailedX-trX,ConfigParser.InterpolationMissingOptionErrorr(hhX]http://docs.python.org/library/configparser.html#ConfigParser.InterpolationMissingOptionErrorX-trXzipfile.LargeZipFiler(hhX@http://docs.python.org/library/zipfile.html#zipfile.LargeZipFileX-trXexceptions.StopIterationr(hhXGhttp://docs.python.org/library/exceptions.html#exceptions.StopIterationX-trXsignal.ItimerErrorr(hhX=http://docs.python.org/library/signal.html#signal.ItimerErrorX-trX"ConfigParser.DuplicateSectionErrorr(hhXShttp://docs.python.org/library/configparser.html#ConfigParser.DuplicateSectionErrorX-trXbinascii.Incompleter(hhX@http://docs.python.org/library/binascii.html#binascii.IncompleteX-trXexceptions.DeprecationWarningr(hhXLhttp://docs.python.org/library/exceptions.html#exceptions.DeprecationWarningX-trX anydbm.errorr(hhX7http://docs.python.org/library/anydbm.html#anydbm.errorX-trX.multiprocessing.connection.AuthenticationErrorr(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.connection.AuthenticationErrorX-trXurllib2.URLErrorr(hhX<http://docs.python.org/library/urllib2.html#urllib2.URLErrorX-trXzipfile.BadZipfiler(hhX>http://docs.python.org/library/zipfile.html#zipfile.BadZipfileX-trXftplib.error_protor(hhX=http://docs.python.org/library/ftplib.html#ftplib.error_protoX-trXsmtplib.SMTPDataErrorr(hhXAhttp://docs.python.org/library/smtplib.html#smtplib.SMTPDataErrorX-trXConfigParser.Errorr(hhXChttp://docs.python.org/library/configparser.html#ConfigParser.ErrorX-trXConfigParser.NoOptionErrorr(hhXKhttp://docs.python.org/library/configparser.html#ConfigParser.NoOptionErrorX-trX%email.errors.MultipartConversionErrorr(hhXVhttp://docs.python.org/library/email.errors.html#email.errors.MultipartConversionErrorX-trXhttplib.HTTPExceptionr(hhXAhttp://docs.python.org/library/httplib.html#httplib.HTTPExceptionX-trXxml.dom.InvalidCharacterErrr(hhXGhttp://docs.python.org/library/xml.dom.html#xml.dom.InvalidCharacterErrX-trXxml.sax.SAXParseExceptionr(hhXEhttp://docs.python.org/library/xml.sax.html#xml.sax.SAXParseExceptionX-trXexceptions.ZeroDivisionErrorr(hhXKhttp://docs.python.org/library/exceptions.html#exceptions.ZeroDivisionErrorX-trXsunaudiodev.errorr(hhX>http://docs.python.org/library/sunaudio.html#sunaudiodev.errorX-trXhttplib.UnknownProtocolr(hhXChttp://docs.python.org/library/httplib.html#httplib.UnknownProtocolX-trXweakref.ReferenceErrorr(hhXBhttp://docs.python.org/library/weakref.html#weakref.ReferenceErrorX-tr X copy.errorr (hhX3http://docs.python.org/library/copy.html#copy.errorX-tr Xemail.errors.BoundaryErrorr (hhXKhttp://docs.python.org/library/email.errors.html#email.errors.BoundaryErrorX-tr Xexceptions.SystemExitr (hhXDhttp://docs.python.org/library/exceptions.html#exceptions.SystemExitX-tr Xxml.dom.InuseAttributeErrr (hhXEhttp://docs.python.org/library/xml.dom.html#xml.dom.InuseAttributeErrX-tr X test.test_support.ResourceDeniedr (hhXIhttp://docs.python.org/library/test.html#test.test_support.ResourceDeniedX-tr Xmultiprocessing.BufferTooShortr (hhXRhttp://docs.python.org/library/multiprocessing.html#multiprocessing.BufferTooShortX-tr Xemail.errors.MessageErrorr (hhXJhttp://docs.python.org/library/email.errors.html#email.errors.MessageErrorX-tr Xftplib.error_tempr (hhX<http://docs.python.org/library/ftplib.html#ftplib.error_tempX-tr Xhttplib.UnknownTransferEncodingr (hhXKhttp://docs.python.org/library/httplib.html#httplib.UnknownTransferEncodingX-tr Xexceptions.RuntimeWarningr (hhXHhttp://docs.python.org/library/exceptions.html#exceptions.RuntimeWarningX-tr X dumbdbm.errorr (hhX9http://docs.python.org/library/dumbdbm.html#dumbdbm.errorX-tr Xexceptions.KeyErrorr (hhXBhttp://docs.python.org/library/exceptions.html#exceptions.KeyErrorX-tr Xzipimport.ZipImportErrorr (hhXFhttp://docs.python.org/library/zipimport.html#zipimport.ZipImportErrorX-tr Xwebbrowser.Errorr (hhX?http://docs.python.org/library/webbrowser.html#webbrowser.ErrorX-tr Xurllib.ContentTooShortErrorr (hhXFhttp://docs.python.org/library/urllib.html#urllib.ContentTooShortErrorX-tr Ximaplib.IMAP4.readonlyr (hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.readonlyX-tr X MacOS.Errorr! (hhX5http://docs.python.org/library/macos.html#MacOS.ErrorX-tr" Xxml.dom.InvalidAccessErrr# (hhXDhttp://docs.python.org/library/xml.dom.html#xml.dom.InvalidAccessErrX-tr$ X binhex.Errorr% (hhX7http://docs.python.org/library/binhex.html#binhex.ErrorX-tr& X mailbox.Errorr' (hhX9http://docs.python.org/library/mailbox.html#mailbox.ErrorX-tr( Xxml.dom.NotFoundErrr) (hhX?http://docs.python.org/library/xml.dom.html#xml.dom.NotFoundErrX-tr* X getopt.errorr+ (hhX7http://docs.python.org/library/getopt.html#getopt.errorX-tr, Xmailbox.NotEmptyErrorr- (hhXAhttp://docs.python.org/library/mailbox.html#mailbox.NotEmptyErrorX-tr. Xxml.dom.IndexSizeErrr/ (hhX@http://docs.python.org/library/xml.dom.html#xml.dom.IndexSizeErrX-tr0 Xpoplib.error_protor1 (hhX=http://docs.python.org/library/poplib.html#poplib.error_protoX-tr2 Xhttplib.BadStatusLiner3 (hhXAhttp://docs.python.org/library/httplib.html#httplib.BadStatusLineX-tr4 Xic.errorr5 (hhX/http://docs.python.org/library/ic.html#ic.errorX-tr6 Xexceptions.FutureWarningr7 (hhXGhttp://docs.python.org/library/exceptions.html#exceptions.FutureWarningX-tr8 X audioop.errorr9 (hhX9http://docs.python.org/library/audioop.html#audioop.errorX-tr: Xexceptions.IndentationErrorr; (hhXJhttp://docs.python.org/library/exceptions.html#exceptions.IndentationErrorX-tr< Xexceptions.NotImplementedErrorr= (hhXMhttp://docs.python.org/library/exceptions.html#exceptions.NotImplementedErrorX-tr> X Queue.Fullr? (hhX4http://docs.python.org/library/queue.html#Queue.FullX-tr@ Xxml.dom.DomstringSizeErrrA (hhXDhttp://docs.python.org/library/xml.dom.html#xml.dom.DomstringSizeErrX-trB Xexceptions.IndexErrorrC (hhXDhttp://docs.python.org/library/exceptions.html#exceptions.IndexErrorX-trD Xexceptions.UnicodeErrorrE (hhXFhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeErrorX-trF Xnntplib.NNTPProtocolErrorrG (hhXEhttp://docs.python.org/library/nntplib.html#nntplib.NNTPProtocolErrorX-trH Xexceptions.FloatingPointErrorrI (hhXLhttp://docs.python.org/library/exceptions.html#exceptions.FloatingPointErrorX-trJ X select.errorrK (hhX7http://docs.python.org/library/select.html#select.errorX-trL Xexceptions.LookupErrorrM (hhXEhttp://docs.python.org/library/exceptions.html#exceptions.LookupErrorX-trN Xexceptions.SyntaxWarningrO (hhXGhttp://docs.python.org/library/exceptions.html#exceptions.SyntaxWarningX-trP Xnntplib.NNTPReplyErrorrQ (hhXBhttp://docs.python.org/library/nntplib.html#nntplib.NNTPReplyErrorX-trR Xsmtplib.SMTPResponseExceptionrS (hhXIhttp://docs.python.org/library/smtplib.html#smtplib.SMTPResponseExceptionX-trT Xpy_compile.PyCompileErrorrU (hhXHhttp://docs.python.org/library/py_compile.html#py_compile.PyCompileErrorX-trV X&ConfigParser.MissingSectionHeaderErrorrW (hhXWhttp://docs.python.org/library/configparser.html#ConfigParser.MissingSectionHeaderErrorX-trX Xmailbox.NoSuchMailboxErrorrY (hhXFhttp://docs.python.org/library/mailbox.html#mailbox.NoSuchMailboxErrorX-trZ X xml.sax.SAXNotSupportedExceptionr[ (hhXLhttp://docs.python.org/library/xml.sax.html#xml.sax.SAXNotSupportedExceptionX-tr\ Xsubprocess.CalledProcessErrorr] (hhXLhttp://docs.python.org/library/subprocess.html#subprocess.CalledProcessErrorX-tr^ Xdoctest.DocTestFailurer_ (hhXBhttp://docs.python.org/library/doctest.html#doctest.DocTestFailureX-tr` Xossaudiodev.OSSAudioErrorra (hhXIhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.OSSAudioErrorX-trb Xexceptions.OSErrorrc (hhXAhttp://docs.python.org/library/exceptions.html#exceptions.OSErrorX-trd X socket.herrorre (hhX8http://docs.python.org/library/socket.html#socket.herrorX-trf Xhtmllib.HTMLParseErrorrg (hhXBhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParseErrorX-trh Xexceptions.IOErrorri (hhXAhttp://docs.python.org/library/exceptions.html#exceptions.IOErrorX-trj Xsmtplib.SMTPConnectErrorrk (hhXDhttp://docs.python.org/library/smtplib.html#smtplib.SMTPConnectErrorX-trl XConfigParser.InterpolationErrorrm (hhXPhttp://docs.python.org/library/configparser.html#ConfigParser.InterpolationErrorX-trn Ximaplib.IMAP4.errorro (hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.errorX-trp X bdb.BdbQuitrq (hhX3http://docs.python.org/library/bdb.html#bdb.BdbQuitX-trr Xnntplib.NNTPPermanentErrorrs (hhXFhttp://docs.python.org/library/nntplib.html#nntplib.NNTPPermanentErrorX-trt Ximaplib.IMAP4.abortru (hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.abortX-trv Xunittest.SkipTestrw (hhX>http://docs.python.org/library/unittest.html#unittest.SkipTestX-trx Xsmtplib.SMTPRecipientsRefusedry (hhXIhttp://docs.python.org/library/smtplib.html#smtplib.SMTPRecipientsRefusedX-trz Xfpformat.NotANumberr{ (hhX@http://docs.python.org/library/fpformat.html#fpformat.NotANumberX-tr| Xxdrlib.ConversionErrorr} (hhXAhttp://docs.python.org/library/xdrlib.html#xdrlib.ConversionErrorX-tr~ Xexceptions.AttributeErrorr (hhXHhttp://docs.python.org/library/exceptions.html#exceptions.AttributeErrorX-tr X thread.errorr (hhX7http://docs.python.org/library/thread.html#thread.errorX-tr Xexceptions.SystemErrorr (hhXEhttp://docs.python.org/library/exceptions.html#exceptions.SystemErrorX-tr Xexceptions.BufferErrorr (hhXEhttp://docs.python.org/library/exceptions.html#exceptions.BufferErrorX-tr Xdoctest.UnexpectedExceptionr (hhXGhttp://docs.python.org/library/doctest.html#doctest.UnexpectedExceptionX-tr Xpickle.UnpicklingErrorr (hhXAhttp://docs.python.org/library/pickle.html#pickle.UnpicklingErrorX-tr X imgfile.errorr (hhX9http://docs.python.org/library/imgfile.html#imgfile.errorX-tr X nis.errorr (hhX1http://docs.python.org/library/nis.html#nis.errorX-tr Xtarfile.ExtractErrorr (hhX@http://docs.python.org/library/tarfile.html#tarfile.ExtractErrorX-tr Xexceptions.NameErrorr (hhXChttp://docs.python.org/library/exceptions.html#exceptions.NameErrorX-tr Xsmtplib.SMTPHeloErrorr (hhXAhttp://docs.python.org/library/smtplib.html#smtplib.SMTPHeloErrorX-tr Xexceptions.Exceptionr (hhXChttp://docs.python.org/library/exceptions.html#exceptions.ExceptionX-tr Xdl.errorr (hhX/http://docs.python.org/library/dl.html#dl.errorX-tr Xexceptions.VMSErrorr (hhXBhttp://docs.python.org/library/exceptions.html#exceptions.VMSErrorX-tr Xgetopt.GetoptErrorr (hhX=http://docs.python.org/library/getopt.html#getopt.GetoptErrorX-tr Xnntplib.NNTPTemporaryErrorr (hhXFhttp://docs.python.org/library/nntplib.html#nntplib.NNTPTemporaryErrorX-tr Xre.errorr (hhX/http://docs.python.org/library/re.html#re.errorX-tr Xxml.dom.WrongDocumentErrr (hhXDhttp://docs.python.org/library/xml.dom.html#xml.dom.WrongDocumentErrX-tr X wave.Errorr (hhX3http://docs.python.org/library/wave.html#wave.ErrorX-tr Xpickle.PicklingErrorr (hhX?http://docs.python.org/library/pickle.html#pickle.PicklingErrorX-tr Xhttplib.NotConnectedr (hhX@http://docs.python.org/library/httplib.html#httplib.NotConnectedX-tr Xxml.dom.InvalidModificationErrr (hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.InvalidModificationErrX-tr Xhttplib.CannotSendRequestr (hhXEhttp://docs.python.org/library/httplib.html#httplib.CannotSendRequestX-tr Xftplib.error_permr (hhX<http://docs.python.org/library/ftplib.html#ftplib.error_permX-tr X zlib.errorr (hhX3http://docs.python.org/library/zlib.html#zlib.errorX-tr Xresource.errorr (hhX;http://docs.python.org/library/resource.html#resource.errorX-tr X socket.errorr (hhX7http://docs.python.org/library/socket.html#socket.errorX-tr Xexceptions.StandardErrorr (hhXGhttp://docs.python.org/library/exceptions.html#exceptions.StandardErrorX-tr Xexceptions.ImportWarningr (hhXGhttp://docs.python.org/library/exceptions.html#exceptions.ImportWarningX-tr Xhttplib.IncompleteReadr (hhXBhttp://docs.python.org/library/httplib.html#httplib.IncompleteReadX-tr Xnntplib.NNTPDataErrorr (hhXAhttp://docs.python.org/library/nntplib.html#nntplib.NNTPDataErrorX-tr Xsmtplib.SMTPAuthenticationErrorr (hhXKhttp://docs.python.org/library/smtplib.html#smtplib.SMTPAuthenticationErrorX-tr Xexceptions.UnicodeDecodeErrorr (hhXLhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeDecodeErrorX-tr Xexceptions.EOFErrorr (hhXBhttp://docs.python.org/library/exceptions.html#exceptions.EOFErrorX-tr Xsocket.gaierrorr (hhX:http://docs.python.org/library/socket.html#socket.gaierrorX-tr XHTMLParser.HTMLParseErrorr (hhXHhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParseErrorX-tr X shutil.Errorr (hhX7http://docs.python.org/library/shutil.html#shutil.ErrorX-tr Xexceptions.SyntaxErrorr (hhXEhttp://docs.python.org/library/exceptions.html#exceptions.SyntaxErrorX-tr Xsmtplib.SMTPExceptionr (hhXAhttp://docs.python.org/library/smtplib.html#smtplib.SMTPExceptionX-tr Xexceptions.BaseExceptionr (hhXGhttp://docs.python.org/library/exceptions.html#exceptions.BaseExceptionX-tr Xtarfile.TarErrorr (hhX<http://docs.python.org/library/tarfile.html#tarfile.TarErrorX-tr Xsmtplib.SMTPServerDisconnectedr (hhXJhttp://docs.python.org/library/smtplib.html#smtplib.SMTPServerDisconnectedX-tr Xgetpass.GetPassWarningr (hhXBhttp://docs.python.org/library/getpass.html#getpass.GetPassWarningX-tr Xxml.parsers.expat.errorr (hhXChttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.errorX-tr Xfpectl.FloatingPointErrorr (hhXDhttp://docs.python.org/library/fpectl.html#fpectl.FloatingPointErrorX-tr Xxml.parsers.expat.ExpatErrorr (hhXHhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.ExpatErrorX-tr Xemail.errors.MessageParseErrorr (hhXOhttp://docs.python.org/library/email.errors.html#email.errors.MessageParseErrorX-tr X!xml.sax.SAXNotRecognizedExceptionr (hhXMhttp://docs.python.org/library/xml.sax.html#xml.sax.SAXNotRecognizedExceptionX-tr Xexceptions.RuntimeErrorr (hhXFhttp://docs.python.org/library/exceptions.html#exceptions.RuntimeErrorX-tr XautoGIL.AutoGILErrorr (hhX@http://docs.python.org/library/autogil.html#autoGIL.AutoGILErrorX-tr Xctypes.ArgumentErrorr (hhX?http://docs.python.org/library/ctypes.html#ctypes.ArgumentErrorX-tr uXc:macror }r (X PyObject_HEADr (hhX:http://docs.python.org/c-api/structures.html#PyObject_HEADX-tr XPyVarObject_HEAD_INITr (hhXBhttp://docs.python.org/c-api/structures.html#PyVarObject_HEAD_INITX-tr XPy_BLOCK_THREADSr (hhX7http://docs.python.org/c-api/init.html#Py_BLOCK_THREADSX-tr XPyObject_VAR_HEADr (hhX>http://docs.python.org/c-api/structures.html#PyObject_VAR_HEADX-tr XPy_RETURN_FALSEr (hhX6http://docs.python.org/c-api/bool.html#Py_RETURN_FALSEX-tr XPy_END_ALLOW_THREADSr (hhX;http://docs.python.org/c-api/init.html#Py_END_ALLOW_THREADSX-tr XPy_UNBLOCK_THREADSr (hhX9http://docs.python.org/c-api/init.html#Py_UNBLOCK_THREADSX-tr XPy_BEGIN_ALLOW_THREADSr (hhX=http://docs.python.org/c-api/init.html#Py_BEGIN_ALLOW_THREADSX-tr XPy_RETURN_TRUEr (hhX5http://docs.python.org/c-api/bool.html#Py_RETURN_TRUEX-tr XPyObject_HEAD_INITr (hhX?http://docs.python.org/c-api/structures.html#PyObject_HEAD_INITX-tr XPy_RETURN_NONEr (hhX5http://docs.python.org/c-api/none.html#Py_RETURN_NONEX-tr uX py:functionr }r (X bytearrayr (hhX7http://docs.python.org/library/functions.html#bytearrayX-tr!Xallr!(hhX1http://docs.python.org/library/functions.html#allX-tr!X operator.subr!(hhX9http://docs.python.org/library/operator.html#operator.subX-tr!Xssl.get_server_certificater!(hhXBhttp://docs.python.org/library/ssl.html#ssl.get_server_certificateX-tr!X fl.unqdevicer!(hhX3http://docs.python.org/library/fl.html#fl.unqdeviceX-tr!Xitertools.izip_longestr !(hhXDhttp://docs.python.org/library/itertools.html#itertools.izip_longestX-tr !Xic.settypecreatorr !(hhX8http://docs.python.org/library/ic.html#ic.settypecreatorX-tr !Xwhichdb.whichdbr !(hhX;http://docs.python.org/library/whichdb.html#whichdb.whichdbX-tr!Xsite.getusersitepackagesr!(hhXAhttp://docs.python.org/library/site.html#site.getusersitepackagesX-tr!X os.openptyr!(hhX1http://docs.python.org/library/os.html#os.openptyX-tr!Xwarnings.warnpy3kr!(hhX>http://docs.python.org/library/warnings.html#warnings.warnpy3kX-tr!Xcodecs.iterencoder!(hhX<http://docs.python.org/library/codecs.html#codecs.iterencodeX-tr!Xctypes.pointerr!(hhX9http://docs.python.org/library/ctypes.html#ctypes.pointerX-tr!Xplatform.platformr!(hhX>http://docs.python.org/library/platform.html#platform.platformX-tr!Xresource.getpagesizer!(hhXAhttp://docs.python.org/library/resource.html#resource.getpagesizeX-tr!Xcurses.reset_prog_moder!(hhXAhttp://docs.python.org/library/curses.html#curses.reset_prog_modeX-tr!Xunicodedata.digitr!(hhXAhttp://docs.python.org/library/unicodedata.html#unicodedata.digitX-tr !Xfilecmp.cmpfilesr!!(hhX<http://docs.python.org/library/filecmp.html#filecmp.cmpfilesX-tr"!Xoperator.__and__r#!(hhX=http://docs.python.org/library/operator.html#operator.__and__X-tr$!X os.chflagsr%!(hhX1http://docs.python.org/library/os.html#os.chflagsX-tr&!X imgfile.readr'!(hhX8http://docs.python.org/library/imgfile.html#imgfile.readX-tr(!X"multiprocessing.sharedctypes.Arrayr)!(hhXVhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.ArrayX-tr*!Xinspect.getclasstreer+!(hhX@http://docs.python.org/library/inspect.html#inspect.getclasstreeX-tr,!Xshutil.make_archiver-!(hhX>http://docs.python.org/library/shutil.html#shutil.make_archiveX-tr.!Xpdb.runr/!(hhX/http://docs.python.org/library/pdb.html#pdb.runX-tr0!Xquopri.encodestringr1!(hhX>http://docs.python.org/library/quopri.html#quopri.encodestringX-tr2!X time.sleepr3!(hhX3http://docs.python.org/library/time.html#time.sleepX-tr4!Xzipfile.is_zipfiler5!(hhX>http://docs.python.org/library/zipfile.html#zipfile.is_zipfileX-tr6!Xdircache.annotater7!(hhX>http://docs.python.org/library/dircache.html#dircache.annotateX-tr8!Ximgfile.getsizesr9!(hhX<http://docs.python.org/library/imgfile.html#imgfile.getsizesX-tr:!X quopri.encoder;!(hhX8http://docs.python.org/library/quopri.html#quopri.encodeX-tr!Xcurses.getmouser?!(hhX:http://docs.python.org/library/curses.html#curses.getmouseX-tr@!X imp.get_magicrA!(hhX5http://docs.python.org/library/imp.html#imp.get_magicX-trB!Xbase64.b64encoderC!(hhX;http://docs.python.org/library/base64.html#base64.b64encodeX-trD!X pdb.runevalrE!(hhX3http://docs.python.org/library/pdb.html#pdb.runevalX-trF!Xturtle.undobufferentriesrG!(hhXChttp://docs.python.org/library/turtle.html#turtle.undobufferentriesX-trH!Xoperator.__rshift__rI!(hhX@http://docs.python.org/library/operator.html#operator.__rshift__X-trJ!Xfl.get_directoryrK!(hhX7http://docs.python.org/library/fl.html#fl.get_directoryX-trL!X turtle.byerM!(hhX5http://docs.python.org/library/turtle.html#turtle.byeX-trN!X stat.S_ISCHRrO!(hhX5http://docs.python.org/library/stat.html#stat.S_ISCHRX-trP!Xemail.encoders.encode_nooprQ!(hhXMhttp://docs.python.org/library/email.encoders.html#email.encoders.encode_noopX-trR!X heapq.mergerS!(hhX5http://docs.python.org/library/heapq.html#heapq.mergeX-trT!X aepack.unpackrU!(hhX8http://docs.python.org/library/aepack.html#aepack.unpackX-trV!Xxml.dom.pulldom.parseStringrW!(hhXOhttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.parseStringX-trX!Xoperator.setitemrY!(hhX=http://docs.python.org/library/operator.html#operator.setitemX-trZ!Xlistr[!(hhX2http://docs.python.org/library/functions.html#listX-tr\!Xturtle.onreleaser]!(hhX;http://docs.python.org/library/turtle.html#turtle.onreleaseX-tr^!X al.setparamsr_!(hhX3http://docs.python.org/library/al.html#al.setparamsX-tr`!X sunau.openfpra!(hhX6http://docs.python.org/library/sunau.html#sunau.openfpX-trb!X operator.and_rc!(hhX:http://docs.python.org/library/operator.html#operator.and_X-trd!X string.rsplitre!(hhX8http://docs.python.org/library/string.html#string.rsplitX-trf!Xcmprg!(hhX1http://docs.python.org/library/functions.html#cmpX-trh!Xtempfile.mkdtempri!(hhX=http://docs.python.org/library/tempfile.html#tempfile.mkdtempX-trj!Xfl.qreadrk!(hhX/http://docs.python.org/library/fl.html#fl.qreadX-trl!Xstringprep.in_table_c11_c12rm!(hhXJhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c11_c12X-trn!X turtle.rightro!(hhX7http://docs.python.org/library/turtle.html#turtle.rightX-trp!Xabc.abstractpropertyrq!(hhX<http://docs.python.org/library/abc.html#abc.abstractpropertyX-trr!Xoperator.__ne__rs!(hhX<http://docs.python.org/library/operator.html#operator.__ne__X-trt!Xzlib.compressobjru!(hhX9http://docs.python.org/library/zlib.html#zlib.compressobjX-trv!X(distutils.ccompiler.get_default_compilerrw!(hhXUhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.get_default_compilerX-trx!Xsys.setcheckintervalry!(hhX<http://docs.python.org/library/sys.html#sys.setcheckintervalX-trz!Xcodecs.registerr{!(hhX:http://docs.python.org/library/codecs.html#codecs.registerX-tr|!Xturtle.begin_polyr}!(hhX<http://docs.python.org/library/turtle.html#turtle.begin_polyX-tr~!X issubclassr!(hhX8http://docs.python.org/library/functions.html#issubclassX-tr!X fl.qenterr!(hhX0http://docs.python.org/library/fl.html#fl.qenterX-tr!X ast.parser!(hhX1http://docs.python.org/library/ast.html#ast.parseX-tr!Xheapq.nlargestr!(hhX8http://docs.python.org/library/heapq.html#heapq.nlargestX-tr!X operator.imulr!(hhX:http://docs.python.org/library/operator.html#operator.imulX-tr!X math.ldexpr!(hhX3http://docs.python.org/library/math.html#math.ldexpX-tr!X cmath.tanhr!(hhX4http://docs.python.org/library/cmath.html#cmath.tanhX-tr!Xcompiler!(hhX5http://docs.python.org/library/functions.html#compileX-tr!Xmsilib.add_tablesr!(hhX<http://docs.python.org/library/msilib.html#msilib.add_tablesX-tr!X os.getsidr!(hhX0http://docs.python.org/library/os.html#os.getsidX-tr!Xsumr!(hhX1http://docs.python.org/library/functions.html#sumX-tr!Xxml.parsers.expat.ErrorStringr!(hhXIhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.ErrorStringX-tr!Xbase64.standard_b64decoder!(hhXDhttp://docs.python.org/library/base64.html#base64.standard_b64decodeX-tr!Xmath.logr!(hhX1http://docs.python.org/library/math.html#math.logX-tr!Xabsr!(hhX1http://docs.python.org/library/functions.html#absX-tr!X os.path.joinr!(hhX8http://docs.python.org/library/os.path.html#os.path.joinX-tr!Xheapq.heappushpopr!(hhX;http://docs.python.org/library/heapq.html#heapq.heappushpopX-tr!Xinspect.getsourcer!(hhX=http://docs.python.org/library/inspect.html#inspect.getsourceX-tr!Xthreading.active_countr!(hhXDhttp://docs.python.org/library/threading.html#threading.active_countX-tr!Xos.path.sameopenfiler!(hhX@http://docs.python.org/library/os.path.html#os.path.sameopenfileX-tr!Xmsvcrt.getwcher!(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.getwcheX-tr!Xsys._clear_type_cacher!(hhX=http://docs.python.org/library/sys.html#sys._clear_type_cacheX-tr!Xstringprep.in_table_c3r!(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c3X-tr!Xstringprep.in_table_c4r!(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c4X-tr!Xstringprep.in_table_c5r!(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c5X-tr!Xstringprep.in_table_c6r!(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c6X-tr!Xturtle.setpositionr!(hhX=http://docs.python.org/library/turtle.html#turtle.setpositionX-tr!Xstringprep.in_table_c8r!(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c8X-tr!Xstringprep.in_table_c9r!(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c9X-tr!Xtraceback.print_tbr!(hhX@http://docs.python.org/library/traceback.html#traceback.print_tbX-tr!X signal.alarmr!(hhX7http://docs.python.org/library/signal.html#signal.alarmX-tr!Xdifflib.context_diffr!(hhX@http://docs.python.org/library/difflib.html#difflib.context_diffX-tr!X turtle.xcorr!(hhX6http://docs.python.org/library/turtle.html#turtle.xcorX-tr!Xos.nicer!(hhX.http://docs.python.org/library/os.html#os.niceX-tr!Xmimetools.copybinaryr!(hhXBhttp://docs.python.org/library/mimetools.html#mimetools.copybinaryX-tr!Xaudioop.getsampler!(hhX=http://docs.python.org/library/audioop.html#audioop.getsampleX-tr!X uu.decoder!(hhX0http://docs.python.org/library/uu.html#uu.decodeX-tr!Xitertools.cycler!(hhX=http://docs.python.org/library/itertools.html#itertools.cycleX-tr!X ctypes.resizer!(hhX8http://docs.python.org/library/ctypes.html#ctypes.resizeX-tr!Xtempfile.SpooledTemporaryFiler!(hhXJhttp://docs.python.org/library/tempfile.html#tempfile.SpooledTemporaryFileX-tr!Xdoctest.register_optionflagr!(hhXGhttp://docs.python.org/library/doctest.html#doctest.register_optionflagX-tr!Xcontextlib.contextmanagerr!(hhXHhttp://docs.python.org/library/contextlib.html#contextlib.contextmanagerX-tr!Xthreading.Lockr!(hhX<http://docs.python.org/library/threading.html#threading.LockX-tr!X spwd.getspnamr!(hhX6http://docs.python.org/library/spwd.html#spwd.getspnamX-tr!Xplatform.architecturer!(hhXBhttp://docs.python.org/library/platform.html#platform.architectureX-tr!Xos.path.getatimer!(hhX<http://docs.python.org/library/os.path.html#os.path.getatimeX-tr!XColorPicker.GetColorr!(hhXDhttp://docs.python.org/library/colorpicker.html#ColorPicker.GetColorX-tr!Ximputil.py_suffix_importerr!(hhXFhttp://docs.python.org/library/imputil.html#imputil.py_suffix_importerX-tr!X distutils.fancy_getopt.wrap_textr!(hhXMhttp://docs.python.org/distutils/apiref.html#distutils.fancy_getopt.wrap_textX-tr!X os.setpgidr!(hhX1http://docs.python.org/library/os.html#os.setpgidX-tr!X(xml.etree.ElementTree.register_namespacer!(hhXbhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.register_namespaceX-tr!Xparser.st2listr!(hhX9http://docs.python.org/library/parser.html#parser.st2listX-tr!X msvcrt.putwchr!(hhX8http://docs.python.org/library/msvcrt.html#msvcrt.putwchX-tr!Xplatform.python_implementationr!(hhXKhttp://docs.python.org/library/platform.html#platform.python_implementationX-tr!Xfileinput.filelinenor!(hhXBhttp://docs.python.org/library/fileinput.html#fileinput.filelinenoX-tr!Xsymtable.symtabler!(hhX>http://docs.python.org/library/symtable.html#symtable.symtableX-tr!Xsysconfig.get_path_namesr!(hhXFhttp://docs.python.org/library/sysconfig.html#sysconfig.get_path_namesX-tr!Xwsgiref.util.guess_schemer!(hhXEhttp://docs.python.org/library/wsgiref.html#wsgiref.util.guess_schemeX-tr!X msvcrt.getcher!(hhX8http://docs.python.org/library/msvcrt.html#msvcrt.getcheX-tr!X"distutils.sysconfig.get_config_varr!(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.get_config_varX-tr!Xmsilib.add_datar!(hhX:http://docs.python.org/library/msilib.html#msilib.add_dataX-tr!X locale.atoir!(hhX6http://docs.python.org/library/locale.html#locale.atoiX-tr!Xoperator.isCallabler!(hhX@http://docs.python.org/library/operator.html#operator.isCallableX-tr!Xsubprocess.check_callr!(hhXDhttp://docs.python.org/library/subprocess.html#subprocess.check_callX-tr!Xaudioop.reverser!(hhX;http://docs.python.org/library/audioop.html#audioop.reverseX-tr"Xcurses.reset_shell_moder"(hhXBhttp://docs.python.org/library/curses.html#curses.reset_shell_modeX-tr"Xfl.check_formsr"(hhX5http://docs.python.org/library/fl.html#fl.check_formsX-tr"Xos.chmodr"(hhX/http://docs.python.org/library/os.html#os.chmodX-tr"Xlogging.criticalr"(hhX<http://docs.python.org/library/logging.html#logging.criticalX-tr"XEasyDialogs.AskStringr "(hhXEhttp://docs.python.org/library/easydialogs.html#EasyDialogs.AskStringX-tr "X cgi.parse_qsr "(hhX4http://docs.python.org/library/cgi.html#cgi.parse_qsX-tr "Xcurses.textpad.rectangler "(hhXChttp://docs.python.org/library/curses.html#curses.textpad.rectangleX-tr"X locale.atofr"(hhX6http://docs.python.org/library/locale.html#locale.atofX-tr"Xplatform.mac_verr"(hhX=http://docs.python.org/library/platform.html#platform.mac_verX-tr"X os.getpgidr"(hhX1http://docs.python.org/library/os.html#os.getpgidX-tr"X cmath.expr"(hhX3http://docs.python.org/library/cmath.html#cmath.expX-tr"X ic.mapfiler"(hhX1http://docs.python.org/library/ic.html#ic.mapfileX-tr"Xpkgutil.get_loaderr"(hhX>http://docs.python.org/library/pkgutil.html#pkgutil.get_loaderX-tr"Xinspect.isgetsetdescriptorr"(hhXFhttp://docs.python.org/library/inspect.html#inspect.isgetsetdescriptorX-tr"Xthreading.BoundedSemaphorer"(hhXHhttp://docs.python.org/library/threading.html#threading.BoundedSemaphoreX-tr"X#distutils.fancy_getopt.fancy_getoptr"(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.fancy_getopt.fancy_getoptX-tr "Xbinascii.a2b_qpr!"(hhX<http://docs.python.org/library/binascii.html#binascii.a2b_qpX-tr""Xoperator.is_notr#"(hhX<http://docs.python.org/library/operator.html#operator.is_notX-tr$"Xtime.localtimer%"(hhX7http://docs.python.org/library/time.html#time.localtimeX-tr&"X os.fpathconfr'"(hhX3http://docs.python.org/library/os.html#os.fpathconfX-tr("X cgitb.handlerr)"(hhX7http://docs.python.org/library/cgitb.html#cgitb.handlerX-tr*"Xdistutils.util.rfc822_escaper+"(hhXIhttp://docs.python.org/distutils/apiref.html#distutils.util.rfc822_escapeX-tr,"Xoperator.__ge__r-"(hhX<http://docs.python.org/library/operator.html#operator.__ge__X-tr."Xossaudiodev.openmixerr/"(hhXEhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.openmixerX-tr0"Xaudioop.minmaxr1"(hhX:http://docs.python.org/library/audioop.html#audioop.minmaxX-tr2"X pickle.loadsr3"(hhX7http://docs.python.org/library/pickle.html#pickle.loadsX-tr4"Xturtle.tiltangler5"(hhX;http://docs.python.org/library/turtle.html#turtle.tiltangleX-tr6"Xsocket.inet_ptonr7"(hhX;http://docs.python.org/library/socket.html#socket.inet_ptonX-tr8"Xtyper9"(hhX2http://docs.python.org/library/functions.html#typeX-tr:"Xoperator.__not__r;"(hhX=http://docs.python.org/library/operator.html#operator.__not__X-tr<"Xctypes.WinErrorr="(hhX:http://docs.python.org/library/ctypes.html#ctypes.WinErrorX-tr>"Xsocket.inet_atonr?"(hhX;http://docs.python.org/library/socket.html#socket.inet_atonX-tr@"Xreadline.get_history_itemrA"(hhXFhttp://docs.python.org/library/readline.html#readline.get_history_itemX-trB"X turtle.gotorC"(hhX6http://docs.python.org/library/turtle.html#turtle.gotoX-trD"X msvcrt.putchrE"(hhX7http://docs.python.org/library/msvcrt.html#msvcrt.putchX-trF"Xnew.instancemethodrG"(hhX:http://docs.python.org/library/new.html#new.instancemethodX-trH"X turtle.undorI"(hhX6http://docs.python.org/library/turtle.html#turtle.undoX-trJ"X turtle.ycorrK"(hhX6http://docs.python.org/library/turtle.html#turtle.ycorX-trL"Xgl.pickrM"(hhX.http://docs.python.org/library/gl.html#gl.pickX-trN"Xsha.newrO"(hhX/http://docs.python.org/library/sha.html#sha.newX-trP"Xxml.dom.minidom.parseStringrQ"(hhXOhttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.parseStringX-trR"Xaudioop.lin2linrS"(hhX;http://docs.python.org/library/audioop.html#audioop.lin2linX-trT"X%multiprocessing.sharedctypes.RawArrayrU"(hhXYhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.RawArrayX-trV"Xinspect.isroutinerW"(hhX=http://docs.python.org/library/inspect.html#inspect.isroutineX-trX"Xfm.prstrrY"(hhX/http://docs.python.org/library/fm.html#fm.prstrX-trZ"Xdelattrr["(hhX5http://docs.python.org/library/functions.html#delattrX-tr\"Xmodulefinder.AddPackagePathr]"(hhXLhttp://docs.python.org/library/modulefinder.html#modulefinder.AddPackagePathX-tr^"Xparser.compilestr_"(hhX;http://docs.python.org/library/parser.html#parser.compilestX-tr`"X cmath.acoshra"(hhX5http://docs.python.org/library/cmath.html#cmath.acoshX-trb"Xplatform.python_version_tuplerc"(hhXJhttp://docs.python.org/library/platform.html#platform.python_version_tupleX-trd"X zlib.crc32re"(hhX3http://docs.python.org/library/zlib.html#zlib.crc32X-trf"Xsocket.gethostnamerg"(hhX=http://docs.python.org/library/socket.html#socket.gethostnameX-trh"XEasyDialogs.AskPasswordri"(hhXGhttp://docs.python.org/library/easydialogs.html#EasyDialogs.AskPasswordX-trj"Xsysconfig.get_config_varrk"(hhXFhttp://docs.python.org/library/sysconfig.html#sysconfig.get_config_varX-trl"Xfileinput.isfirstlinerm"(hhXChttp://docs.python.org/library/fileinput.html#fileinput.isfirstlineX-trn"X fl.do_formsro"(hhX2http://docs.python.org/library/fl.html#fl.do_formsX-trp"X select.kqueuerq"(hhX8http://docs.python.org/library/select.html#select.kqueueX-trr"X mimify.mimifyrs"(hhX8http://docs.python.org/library/mimify.html#mimify.mimifyX-trt"Xurllib2.install_openerru"(hhXBhttp://docs.python.org/library/urllib2.html#urllib2.install_openerX-trv"Xmath.erfrw"(hhX1http://docs.python.org/library/math.html#math.erfX-trx"Xrfc822.parsedatery"(hhX;http://docs.python.org/library/rfc822.html#rfc822.parsedateX-trz"Xcurses.ascii.iscntrlr{"(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.iscntrlX-tr|"XFrameWork.DialogWindowr}"(hhXDhttp://docs.python.org/library/framework.html#FrameWork.DialogWindowX-tr~"Xaudioop.findfitr"(hhX;http://docs.python.org/library/audioop.html#audioop.findfitX-tr"Xinspect.getmoduler"(hhX=http://docs.python.org/library/inspect.html#inspect.getmoduleX-tr"X operator.eqr"(hhX8http://docs.python.org/library/operator.html#operator.eqX-tr"Xstring.capitalizer"(hhX<http://docs.python.org/library/string.html#string.capitalizeX-tr"Xoperator.__repeat__r"(hhX@http://docs.python.org/library/operator.html#operator.__repeat__X-tr"X operator.iaddr"(hhX:http://docs.python.org/library/operator.html#operator.iaddX-tr"X os.lchownr"(hhX0http://docs.python.org/library/os.html#os.lchownX-tr"Xoperator.truthr"(hhX;http://docs.python.org/library/operator.html#operator.truthX-tr"Xdoctest.testsourcer"(hhX>http://docs.python.org/library/doctest.html#doctest.testsourceX-tr"Xcurses.initscrr"(hhX9http://docs.python.org/library/curses.html#curses.initscrX-tr"Xwebbrowser.getr"(hhX=http://docs.python.org/library/webbrowser.html#webbrowser.getX-tr"X gc.enabler"(hhX0http://docs.python.org/library/gc.html#gc.enableX-tr"Xunichrr"(hhX4http://docs.python.org/library/functions.html#unichrX-tr"Xxml.sax.saxutils.quoteattrr"(hhXLhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.quoteattrX-tr"Xreadline.set_startup_hookr"(hhXFhttp://docs.python.org/library/readline.html#readline.set_startup_hookX-tr"X os.path.walkr"(hhX8http://docs.python.org/library/os.path.html#os.path.walkX-tr"X dumbdbm.openr"(hhX8http://docs.python.org/library/dumbdbm.html#dumbdbm.openX-tr"X operator.ipowr"(hhX:http://docs.python.org/library/operator.html#operator.ipowX-tr"Xcurses.ascii.isgraphr"(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isgraphX-tr"X"email.utils.collapse_rfc2231_valuer"(hhXQhttp://docs.python.org/library/email.util.html#email.utils.collapse_rfc2231_valueX-tr"X os.getuidr"(hhX0http://docs.python.org/library/os.html#os.getuidX-tr"Xtarfile.is_tarfiler"(hhX>http://docs.python.org/library/tarfile.html#tarfile.is_tarfileX-tr"Xplistlib.writePlistr"(hhX@http://docs.python.org/library/plistlib.html#plistlib.writePlistX-tr"Xcurses.termattrsr"(hhX;http://docs.python.org/library/curses.html#curses.termattrsX-tr"X curses.napmsr"(hhX7http://docs.python.org/library/curses.html#curses.napmsX-tr"Xxmlrpclib.booleanr"(hhX?http://docs.python.org/library/xmlrpclib.html#xmlrpclib.booleanX-tr"Ximportlib.import_moduler"(hhXEhttp://docs.python.org/library/importlib.html#importlib.import_moduleX-tr"Xfpectl.turnon_sigfper"(hhX?http://docs.python.org/library/fpectl.html#fpectl.turnon_sigfpeX-tr"Xos.path.realpathr"(hhX<http://docs.python.org/library/os.path.html#os.path.realpathX-tr"Xcurses.def_prog_moder"(hhX?http://docs.python.org/library/curses.html#curses.def_prog_modeX-tr"X math.copysignr"(hhX6http://docs.python.org/library/math.html#math.copysignX-tr"X curses.noechor"(hhX8http://docs.python.org/library/curses.html#curses.noechoX-tr"X_winreg.DisableReflectionKeyr"(hhXHhttp://docs.python.org/library/_winreg.html#_winreg.DisableReflectionKeyX-tr"Xparser.issuiter"(hhX9http://docs.python.org/library/parser.html#parser.issuiteX-tr"X math.erfcr"(hhX2http://docs.python.org/library/math.html#math.erfcX-tr"X turtle.speedr"(hhX7http://docs.python.org/library/turtle.html#turtle.speedX-tr"Xplatform.win32_verr"(hhX?http://docs.python.org/library/platform.html#platform.win32_verX-tr"X math.sinhr"(hhX2http://docs.python.org/library/math.html#math.sinhX-tr"Xcopy_reg.constructorr"(hhXAhttp://docs.python.org/library/copy_reg.html#copy_reg.constructorX-tr"X turtle.cloner"(hhX7http://docs.python.org/library/turtle.html#turtle.cloneX-tr"Xbsddb.hashopenr"(hhX8http://docs.python.org/library/bsddb.html#bsddb.hashopenX-tr"Xinspect.getsourcefiler"(hhXAhttp://docs.python.org/library/inspect.html#inspect.getsourcefileX-tr"Xbinascii.crc32r"(hhX;http://docs.python.org/library/binascii.html#binascii.crc32X-tr"X classmethodr"(hhX9http://docs.python.org/library/functions.html#classmethodX-tr"Xmimify.unmimifyr"(hhX:http://docs.python.org/library/mimify.html#mimify.unmimifyX-tr"Xfileinput.inputr"(hhX=http://docs.python.org/library/fileinput.html#fileinput.inputX-tr"X os.tcsetpgrpr"(hhX3http://docs.python.org/library/os.html#os.tcsetpgrpX-tr"Xshutil.copyfiler"(hhX:http://docs.python.org/library/shutil.html#shutil.copyfileX-tr"Xoperator.__gt__r"(hhX<http://docs.python.org/library/operator.html#operator.__gt__X-tr"Xunittest.removeResultr"(hhXBhttp://docs.python.org/library/unittest.html#unittest.removeResultX-tr"Xwebbrowser.open_newr"(hhXBhttp://docs.python.org/library/webbrowser.html#webbrowser.open_newX-tr"Xfindertools.launchr"(hhXAhttp://docs.python.org/library/macostools.html#findertools.launchX-tr"Xunicodedata.decompositionr"(hhXIhttp://docs.python.org/library/unicodedata.html#unicodedata.decompositionX-tr"Xoperator.__neg__r"(hhX=http://docs.python.org/library/operator.html#operator.__neg__X-tr"Xshutil.get_archive_formatsr"(hhXEhttp://docs.python.org/library/shutil.html#shutil.get_archive_formatsX-tr"Xwarnings.showwarningr"(hhXAhttp://docs.python.org/library/warnings.html#warnings.showwarningX-tr"Xplatform.python_compilerr"(hhXEhttp://docs.python.org/library/platform.html#platform.python_compilerX-tr"Xoperator.__ixor__r"(hhX>http://docs.python.org/library/operator.html#operator.__ixor__X-tr"Xhelpr"(hhX2http://docs.python.org/library/functions.html#helpX-tr"Xvarsr"(hhX2http://docs.python.org/library/functions.html#varsX-tr"Xgetopt.gnu_getoptr"(hhX<http://docs.python.org/library/getopt.html#getopt.gnu_getoptX-tr"Xoperator.__sub__r"(hhX=http://docs.python.org/library/operator.html#operator.__sub__X-tr"Xfindertools.copyr"(hhX?http://docs.python.org/library/macostools.html#findertools.copyX-tr"X"email.iterators.body_line_iteratorr"(hhXVhttp://docs.python.org/library/email.iterators.html#email.iterators.body_line_iteratorX-tr"Xcurses.tigetstrr"(hhX:http://docs.python.org/library/curses.html#curses.tigetstrX-tr#Xmimetools.encoder#(hhX>http://docs.python.org/library/mimetools.html#mimetools.encodeX-tr#X turtle.tracerr#(hhX8http://docs.python.org/library/turtle.html#turtle.tracerX-tr#Xcurses.ascii.unctrlr#(hhXDhttp://docs.python.org/library/curses.ascii.html#curses.ascii.unctrlX-tr#X_winreg.SetValueExr#(hhX>http://docs.python.org/library/_winreg.html#_winreg.SetValueExX-tr#Xtraceback.extract_stackr #(hhXEhttp://docs.python.org/library/traceback.html#traceback.extract_stackX-tr #Xlinecache.clearcacher #(hhXBhttp://docs.python.org/library/linecache.html#linecache.clearcacheX-tr #X os.listdirr #(hhX1http://docs.python.org/library/os.html#os.listdirX-tr#XEasyDialogs.GetArgvr#(hhXChttp://docs.python.org/library/easydialogs.html#EasyDialogs.GetArgvX-tr#X pdb.set_tracer#(hhX5http://docs.python.org/library/pdb.html#pdb.set_traceX-tr#X operator.is_r#(hhX9http://docs.python.org/library/operator.html#operator.is_X-tr#X os.tempnamr#(hhX1http://docs.python.org/library/os.html#os.tempnamX-tr#Xturtle.degreesr#(hhX9http://docs.python.org/library/turtle.html#turtle.degreesX-tr#X parser.suiter#(hhX7http://docs.python.org/library/parser.html#parser.suiteX-tr#Xdbm.openr#(hhX0http://docs.python.org/library/dbm.html#dbm.openX-tr#Xfpectl.turnoff_sigfper#(hhX@http://docs.python.org/library/fpectl.html#fpectl.turnoff_sigfpeX-tr#XFrameWork.Windowr#(hhX>http://docs.python.org/library/framework.html#FrameWork.WindowX-tr #X uuid.getnoder!#(hhX5http://docs.python.org/library/uuid.html#uuid.getnodeX-tr"#Xsys.getdlopenflagsr##(hhX:http://docs.python.org/library/sys.html#sys.getdlopenflagsX-tr$#Xinspect.isframer%#(hhX;http://docs.python.org/library/inspect.html#inspect.isframeX-tr&#Xoperator.__truediv__r'#(hhXAhttp://docs.python.org/library/operator.html#operator.__truediv__X-tr(#Xreadline.add_historyr)#(hhXAhttp://docs.python.org/library/readline.html#readline.add_historyX-tr*#Xossaudiodev.openr+#(hhX@http://docs.python.org/library/ossaudiodev.html#ossaudiodev.openX-tr,#Xos.path.islinkr-#(hhX:http://docs.python.org/library/os.path.html#os.path.islinkX-tr.#Xsocket.getservbynamer/#(hhX?http://docs.python.org/library/socket.html#socket.getservbynameX-tr0#Xturtle.shapesizer1#(hhX;http://docs.python.org/library/turtle.html#turtle.shapesizeX-tr2#Xdoctest.script_from_examplesr3#(hhXHhttp://docs.python.org/library/doctest.html#doctest.script_from_examplesX-tr4#Xfindertools.shutdownr5#(hhXChttp://docs.python.org/library/macostools.html#findertools.shutdownX-tr6#Xinspect.getouterframesr7#(hhXBhttp://docs.python.org/library/inspect.html#inspect.getouterframesX-tr8#X math.truncr9#(hhX3http://docs.python.org/library/math.html#math.truncX-tr:#X marshal.dumpsr;#(hhX9http://docs.python.org/library/marshal.html#marshal.dumpsX-tr<#Ximp.release_lockr=#(hhX8http://docs.python.org/library/imp.html#imp.release_lockX-tr>#Xcurses.doupdater?#(hhX:http://docs.python.org/library/curses.html#curses.doupdateX-tr@#Xaudioop.ulaw2linrA#(hhX<http://docs.python.org/library/audioop.html#audioop.ulaw2linX-trB#Xinspect.getmoduleinforC#(hhXAhttp://docs.python.org/library/inspect.html#inspect.getmoduleinfoX-trD#Xaudioop.lin2alawrE#(hhX<http://docs.python.org/library/audioop.html#audioop.lin2alawX-trF#X locale.strrG#(hhX5http://docs.python.org/library/locale.html#locale.strX-trH#Xlogging.getLoggerClassrI#(hhXBhttp://docs.python.org/library/logging.html#logging.getLoggerClassX-trJ#X cgi.escaperK#(hhX2http://docs.python.org/library/cgi.html#cgi.escapeX-trL#Xcalendar.weekdayrM#(hhX=http://docs.python.org/library/calendar.html#calendar.weekdayX-trN#Xwarnings.filterwarningsrO#(hhXDhttp://docs.python.org/library/warnings.html#warnings.filterwarningsX-trP#Xrandom.getstaterQ#(hhX:http://docs.python.org/library/random.html#random.getstateX-trR#Xreadline.replace_history_itemrS#(hhXJhttp://docs.python.org/library/readline.html#readline.replace_history_itemX-trT#Xctypes.CFUNCTYPErU#(hhX;http://docs.python.org/library/ctypes.html#ctypes.CFUNCTYPEX-trV#Xdecimal.setcontextrW#(hhX>http://docs.python.org/library/decimal.html#decimal.setcontextX-trX#Xdecimal.localcontextrY#(hhX@http://docs.python.org/library/decimal.html#decimal.localcontextX-trZ#Xos.path.lexistsr[#(hhX;http://docs.python.org/library/os.path.html#os.path.lexistsX-tr\#Xxml.etree.ElementTree.parser]#(hhXUhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.parseX-tr^#Xinspect.isclassr_#(hhX;http://docs.python.org/library/inspect.html#inspect.isclassX-tr`#Xitertools.combinationsra#(hhXDhttp://docs.python.org/library/itertools.html#itertools.combinationsX-trb#X binhex.hexbinrc#(hhX8http://docs.python.org/library/binhex.html#binhex.hexbinX-trd#X weakref.proxyre#(hhX9http://docs.python.org/library/weakref.html#weakref.proxyX-trf#Xcodecs.lookup_errorrg#(hhX>http://docs.python.org/library/codecs.html#codecs.lookup_errorX-trh#Xitertools.isliceri#(hhX>http://docs.python.org/library/itertools.html#itertools.isliceX-trj#Xemail.utils.make_msgidrk#(hhXEhttp://docs.python.org/library/email.util.html#email.utils.make_msgidX-trl#Xxml.etree.ElementTree.XMLIDrm#(hhXUhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.XMLIDX-trn#X curses.getsyxro#(hhX8http://docs.python.org/library/curses.html#curses.getsyxX-trp#Xlogging.config.listenrq#(hhXHhttp://docs.python.org/library/logging.config.html#logging.config.listenX-trr#Xdoctest.DocTestSuiters#(hhX@http://docs.python.org/library/doctest.html#doctest.DocTestSuiteX-trt#Xreduceru#(hhX4http://docs.python.org/library/functions.html#reduceX-trv#Xbase64.b16decoderw#(hhX;http://docs.python.org/library/base64.html#base64.b16decodeX-trx#Xfileinput.linenory#(hhX>http://docs.python.org/library/fileinput.html#fileinput.linenoX-trz#Xcurses.color_contentr{#(hhX?http://docs.python.org/library/curses.html#curses.color_contentX-tr|#X_winreg.EnableReflectionKeyr}#(hhXGhttp://docs.python.org/library/_winreg.html#_winreg.EnableReflectionKeyX-tr~#Ximaplib.Int2APr#(hhX:http://docs.python.org/library/imaplib.html#imaplib.Int2APX-tr#Xturtle.getcanvasr#(hhX;http://docs.python.org/library/turtle.html#turtle.getcanvasX-tr#X turtle.isdownr#(hhX8http://docs.python.org/library/turtle.html#turtle.isdownX-tr#Xinspect.isgeneratorr#(hhX?http://docs.python.org/library/inspect.html#inspect.isgeneratorX-tr#XMacOS.DebugStrr#(hhX8http://docs.python.org/library/macos.html#MacOS.DebugStrX-tr#Xoperator.isSequenceTyper#(hhXDhttp://docs.python.org/library/operator.html#operator.isSequenceTypeX-tr#Xmacostools.mkaliasr#(hhXAhttp://docs.python.org/library/macostools.html#macostools.mkaliasX-tr#Xsys.displayhookr#(hhX7http://docs.python.org/library/sys.html#sys.displayhookX-tr#X os.makedevr#(hhX1http://docs.python.org/library/os.html#os.makedevX-tr#X math.asinr#(hhX2http://docs.python.org/library/math.html#math.asinX-tr#X imageop.cropr#(hhX8http://docs.python.org/library/imageop.html#imageop.cropX-tr#Xheapq.heapreplacer#(hhX;http://docs.python.org/library/heapq.html#heapq.heapreplaceX-tr#Xxml.sax.make_parserr#(hhX?http://docs.python.org/library/xml.sax.html#xml.sax.make_parserX-tr#X marshal.loadsr#(hhX9http://docs.python.org/library/marshal.html#marshal.loadsX-tr#X!multiprocessing.sharedctypes.copyr#(hhXUhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.copyX-tr#Xpprint.isreadabler#(hhX<http://docs.python.org/library/pprint.html#pprint.isreadableX-tr#Xmd5.md5r#(hhX/http://docs.python.org/library/md5.html#md5.md5X-tr#Xinspect.currentframer#(hhX@http://docs.python.org/library/inspect.html#inspect.currentframeX-tr#Xos.closer#(hhX/http://docs.python.org/library/os.html#os.closeX-tr#X fm.fontpathr#(hhX2http://docs.python.org/library/fm.html#fm.fontpathX-tr#Xwebbrowser.openr#(hhX>http://docs.python.org/library/webbrowser.html#webbrowser.openX-tr#X cgi.parser#(hhX1http://docs.python.org/library/cgi.html#cgi.parseX-tr#X math.frexpr#(hhX3http://docs.python.org/library/math.html#math.frexpX-tr#Xsndhdr.whathdrr#(hhX9http://docs.python.org/library/sndhdr.html#sndhdr.whathdrX-tr#Xgettext.gettextr#(hhX;http://docs.python.org/library/gettext.html#gettext.gettextX-tr#X cmath.asinr#(hhX4http://docs.python.org/library/cmath.html#cmath.asinX-tr#X pty.spawnr#(hhX1http://docs.python.org/library/pty.html#pty.spawnX-tr#X pickle.loadr#(hhX6http://docs.python.org/library/pickle.html#pickle.loadX-tr#X operator.mulr#(hhX9http://docs.python.org/library/operator.html#operator.mulX-tr#Xcodecs.getencoderr#(hhX<http://docs.python.org/library/codecs.html#codecs.getencoderX-tr#Xxml.dom.getDOMImplementationr#(hhXHhttp://docs.python.org/library/xml.dom.html#xml.dom.getDOMImplementationX-tr#X code.interactr#(hhX6http://docs.python.org/library/code.html#code.interactX-tr#X syslog.syslogr#(hhX8http://docs.python.org/library/syslog.html#syslog.syslogX-tr#Xdifflib.IS_CHARACTER_JUNKr#(hhXEhttp://docs.python.org/library/difflib.html#difflib.IS_CHARACTER_JUNKX-tr#Xurllib.urlretriever#(hhX=http://docs.python.org/library/urllib.html#urllib.urlretrieveX-tr#X_winreg.FlushKeyr#(hhX<http://docs.python.org/library/_winreg.html#_winreg.FlushKeyX-tr#Xrfc822.mktime_tzr#(hhX;http://docs.python.org/library/rfc822.html#rfc822.mktime_tzX-tr#Xcodecs.register_errorr#(hhX@http://docs.python.org/library/codecs.html#codecs.register_errorX-tr#Xinspect.getframeinfor#(hhX@http://docs.python.org/library/inspect.html#inspect.getframeinfoX-tr#Xdirectory_createdr#(hhXAhttp://docs.python.org/distutils/builtdist.html#directory_createdX-tr#X math.radiansr#(hhX5http://docs.python.org/library/math.html#math.radiansX-tr#Xoperator.__iand__r#(hhX>http://docs.python.org/library/operator.html#operator.__iand__X-tr#Xbinascii.a2b_base64r#(hhX@http://docs.python.org/library/binascii.html#binascii.a2b_base64X-tr#Xinspect.getinnerframesr#(hhXBhttp://docs.python.org/library/inspect.html#inspect.getinnerframesX-tr#Xfilterr#(hhX4http://docs.python.org/library/functions.html#filterX-tr#X glob.iglobr#(hhX3http://docs.python.org/library/glob.html#glob.iglobX-tr#X turtle.ltr#(hhX4http://docs.python.org/library/turtle.html#turtle.ltX-tr#X%distutils.util.grok_environment_errorr#(hhXRhttp://docs.python.org/distutils/apiref.html#distutils.util.grok_environment_errorX-tr#X parser.isexprr#(hhX8http://docs.python.org/library/parser.html#parser.isexprX-tr#Xdistutils.dir_util.copy_treer#(hhXIhttp://docs.python.org/distutils/apiref.html#distutils.dir_util.copy_treeX-tr#X gdbm.openr#(hhX2http://docs.python.org/library/gdbm.html#gdbm.openX-tr#X os.fchmodr#(hhX0http://docs.python.org/library/os.html#os.fchmodX-tr#Xmimify.mime_decode_headerr#(hhXDhttp://docs.python.org/library/mimify.html#mimify.mime_decode_headerX-tr#Xos.readr#(hhX.http://docs.python.org/library/os.html#os.readX-tr#X turtle.updater#(hhX8http://docs.python.org/library/turtle.html#turtle.updateX-tr#Xplatform.releaser#(hhX=http://docs.python.org/library/platform.html#platform.releaseX-tr#XEasyDialogs.AskFileForOpenr#(hhXJhttp://docs.python.org/library/easydialogs.html#EasyDialogs.AskFileForOpenX-tr#Xstringprep.in_table_b1r#(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_b1X-tr#X sys.gettracer#(hhX4http://docs.python.org/library/sys.html#sys.gettraceX-tr#Xtraceback.extract_tbr#(hhXBhttp://docs.python.org/library/traceback.html#traceback.extract_tbX-tr#X enumerater#(hhX7http://docs.python.org/library/functions.html#enumerateX-tr#Xshutil.copymoder#(hhX:http://docs.python.org/library/shutil.html#shutil.copymodeX-tr#X basestringr#(hhX8http://docs.python.org/library/functions.html#basestringX-tr#Xturtle.onclickr#(hhX9http://docs.python.org/library/turtle.html#turtle.onclickX-tr#Xinspect.getmror#(hhX:http://docs.python.org/library/inspect.html#inspect.getmroX-tr$Xsocket.socketpairr$(hhX<http://docs.python.org/library/socket.html#socket.socketpairX-tr$Xplistlib.readPlistFromStringr$(hhXIhttp://docs.python.org/library/plistlib.html#plistlib.readPlistFromStringX-tr$Xgettext.installr$(hhX;http://docs.python.org/library/gettext.html#gettext.installX-tr$X fl.qresetr$(hhX0http://docs.python.org/library/fl.html#fl.qresetX-tr$X struct.unpackr $(hhX8http://docs.python.org/library/struct.html#struct.unpackX-tr $X_winreg.QueryInfoKeyr $(hhX@http://docs.python.org/library/_winreg.html#_winreg.QueryInfoKeyX-tr $X,multiprocessing.connection.deliver_challenger $(hhX`http://docs.python.org/library/multiprocessing.html#multiprocessing.connection.deliver_challengeX-tr$Xos.path.isfiler$(hhX:http://docs.python.org/library/os.path.html#os.path.isfileX-tr$X cmath.cosr$(hhX3http://docs.python.org/library/cmath.html#cmath.cosX-tr$Xturtle.addshaper$(hhX:http://docs.python.org/library/turtle.html#turtle.addshapeX-tr$Xcompiler.parseFiler$(hhX?http://docs.python.org/library/compiler.html#compiler.parseFileX-tr$Xtabnanny.checkr$(hhX;http://docs.python.org/library/tabnanny.html#tabnanny.checkX-tr$X_winreg.EnumKeyr$(hhX;http://docs.python.org/library/_winreg.html#_winreg.EnumKeyX-tr$Ximp.load_sourcer$(hhX7http://docs.python.org/library/imp.html#imp.load_sourceX-tr$Xrandom.getrandbitsr$(hhX=http://docs.python.org/library/random.html#random.getrandbitsX-tr$X shutil.unregister_archive_formatr$(hhXKhttp://docs.python.org/library/shutil.html#shutil.unregister_archive_formatX-tr $Xos._exitr!$(hhX/http://docs.python.org/library/os.html#os._exitX-tr"$X token.ISEOFr#$(hhX5http://docs.python.org/library/token.html#token.ISEOFX-tr$$X marshal.loadr%$(hhX8http://docs.python.org/library/marshal.html#marshal.loadX-tr&$Xmodulefinder.ReplacePackager'$(hhXLhttp://docs.python.org/library/modulefinder.html#modulefinder.ReplacePackageX-tr($Xos.path.existsr)$(hhX:http://docs.python.org/library/os.path.html#os.path.existsX-tr*$Xcurses.ungetmouser+$(hhX<http://docs.python.org/library/curses.html#curses.ungetmouseX-tr,$XEasyDialogs.Messager-$(hhXChttp://docs.python.org/library/easydialogs.html#EasyDialogs.MessageX-tr.$Xsocket.inet_ntoar/$(hhX;http://docs.python.org/library/socket.html#socket.inet_ntoaX-tr0$X string.rfindr1$(hhX7http://docs.python.org/library/string.html#string.rfindX-tr2$Xwsgiref.simple_server.demo_appr3$(hhXJhttp://docs.python.org/library/wsgiref.html#wsgiref.simple_server.demo_appX-tr4$Xemail.utils.decode_paramsr5$(hhXHhttp://docs.python.org/library/email.util.html#email.utils.decode_paramsX-tr6$Xwsgiref.validate.validatorr7$(hhXFhttp://docs.python.org/library/wsgiref.html#wsgiref.validate.validatorX-tr8$X base64.encoder9$(hhX8http://docs.python.org/library/base64.html#base64.encodeX-tr:$Xsocket.inet_ntopr;$(hhX;http://docs.python.org/library/socket.html#socket.inet_ntopX-tr<$Xos.execlr=$(hhX/http://docs.python.org/library/os.html#os.execlX-tr>$Xhotshot.stats.loadr?$(hhX>http://docs.python.org/library/hotshot.html#hotshot.stats.loadX-tr@$X string.rindexrA$(hhX8http://docs.python.org/library/string.html#string.rindexX-trB$Xurllib2.build_openerrC$(hhX@http://docs.python.org/library/urllib2.html#urllib2.build_openerX-trD$Xbinascii.b2a_uurE$(hhX<http://docs.python.org/library/binascii.html#binascii.b2a_uuX-trF$Xmimetypes.guess_extensionrG$(hhXGhttp://docs.python.org/library/mimetypes.html#mimetypes.guess_extensionX-trH$X stat.S_ISFIFOrI$(hhX6http://docs.python.org/library/stat.html#stat.S_ISFIFOX-trJ$XstrrK$(hhX1http://docs.python.org/library/functions.html#strX-trL$Xbz2.decompressrM$(hhX6http://docs.python.org/library/bz2.html#bz2.decompressX-trN$Xbase64.b32encoderO$(hhX;http://docs.python.org/library/base64.html#base64.b32encodeX-trP$Xcurses.killcharrQ$(hhX:http://docs.python.org/library/curses.html#curses.killcharX-trR$Xos.execvrS$(hhX/http://docs.python.org/library/os.html#os.execvX-trT$Xgetpass.getpassrU$(hhX;http://docs.python.org/library/getpass.html#getpass.getpassX-trV$X#distutils.archive_util.make_tarballrW$(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.archive_util.make_tarballX-trX$Xitertools.dropwhilerY$(hhXAhttp://docs.python.org/library/itertools.html#itertools.dropwhileX-trZ$X MacOS.openrfr[$(hhX6http://docs.python.org/library/macos.html#MacOS.openrfX-tr\$X ssl.RAND_egdr]$(hhX4http://docs.python.org/library/ssl.html#ssl.RAND_egdX-tr^$Xoperator.invertr_$(hhX<http://docs.python.org/library/operator.html#operator.invertX-tr`$Xpickletools.disra$(hhX?http://docs.python.org/library/pickletools.html#pickletools.disX-trb$X operator.addrc$(hhX9http://docs.python.org/library/operator.html#operator.addX-trd$Xoperator.__delslice__re$(hhXBhttp://docs.python.org/library/operator.html#operator.__delslice__X-trf$X curses.nonlrg$(hhX6http://docs.python.org/library/curses.html#curses.nonlX-trh$Xos.path.expandvarsri$(hhX>http://docs.python.org/library/os.path.html#os.path.expandvarsX-trj$X binhex.binhexrk$(hhX8http://docs.python.org/library/binhex.html#binhex.binhexX-trl$Xlogging.getLevelNamerm$(hhX@http://docs.python.org/library/logging.html#logging.getLevelNameX-trn$Xsys.getrecursionlimitro$(hhX=http://docs.python.org/library/sys.html#sys.getrecursionlimitX-trp$Xdistutils.dep_util.newerrq$(hhXEhttp://docs.python.org/distutils/apiref.html#distutils.dep_util.newerX-trr$Xjpeg.setoptionrs$(hhX7http://docs.python.org/library/jpeg.html#jpeg.setoptionX-trt$Xsysconfig.parse_config_hru$(hhXFhttp://docs.python.org/library/sysconfig.html#sysconfig.parse_config_hX-trv$X time.timerw$(hhX2http://docs.python.org/library/time.html#time.timeX-trx$X fcntl.lockfry$(hhX5http://docs.python.org/library/fcntl.html#fcntl.lockfX-trz$Xmultiprocessing.Arrayr{$(hhXIhttp://docs.python.org/library/multiprocessing.html#multiprocessing.ArrayX-tr|$X cmath.isinfr}$(hhX5http://docs.python.org/library/cmath.html#cmath.isinfX-tr~$Xos.path.getsizer$(hhX;http://docs.python.org/library/os.path.html#os.path.getsizeX-tr$Xfl.qtestr$(hhX/http://docs.python.org/library/fl.html#fl.qtestX-tr$Xtermios.tcsendbreakr$(hhX?http://docs.python.org/library/termios.html#termios.tcsendbreakX-tr$X turtle.doner$(hhX6http://docs.python.org/library/turtle.html#turtle.doneX-tr$Xcurses.erasecharr$(hhX;http://docs.python.org/library/curses.html#curses.erasecharX-tr$X xml.sax.parser$(hhX9http://docs.python.org/library/xml.sax.html#xml.sax.parseX-tr$X urllib.quoter$(hhX7http://docs.python.org/library/urllib.html#urllib.quoteX-tr$X ctypes.sizeofr$(hhX8http://docs.python.org/library/ctypes.html#ctypes.sizeofX-tr$Xpy_compile.compiler$(hhXAhttp://docs.python.org/library/py_compile.html#py_compile.compileX-tr$Xmultiprocessing.get_loggerr$(hhXNhttp://docs.python.org/library/multiprocessing.html#multiprocessing.get_loggerX-tr$Xturtle.end_fillr$(hhX:http://docs.python.org/library/turtle.html#turtle.end_fillX-tr$Xcgi.print_directoryr$(hhX;http://docs.python.org/library/cgi.html#cgi.print_directoryX-tr$Xaudioop.tostereor$(hhX<http://docs.python.org/library/audioop.html#audioop.tostereoX-tr$X string.lowerr$(hhX7http://docs.python.org/library/string.html#string.lowerX-tr$Xos.lseekr$(hhX/http://docs.python.org/library/os.html#os.lseekX-tr$X json.loadsr$(hhX3http://docs.python.org/library/json.html#json.loadsX-tr$Xoperator.__ilshift__r$(hhXAhttp://docs.python.org/library/operator.html#operator.__ilshift__X-tr$Xmailcap.getcapsr$(hhX;http://docs.python.org/library/mailcap.html#mailcap.getcapsX-tr$X os.getloadavgr$(hhX4http://docs.python.org/library/os.html#os.getloadavgX-tr$Xanyr$(hhX1http://docs.python.org/library/functions.html#anyX-tr$Xobjectr$(hhX4http://docs.python.org/library/functions.html#objectX-tr$X math.asinhr$(hhX3http://docs.python.org/library/math.html#math.asinhX-tr$Ximageop.grey2grey2r$(hhX>http://docs.python.org/library/imageop.html#imageop.grey2grey2X-tr$X os.path.isabsr$(hhX9http://docs.python.org/library/os.path.html#os.path.isabsX-tr$Xemail.header.decode_headerr$(hhXKhttp://docs.python.org/library/email.header.html#email.header.decode_headerX-tr$Xwarnings.warn_explicitr$(hhXChttp://docs.python.org/library/warnings.html#warnings.warn_explicitX-tr$X operator.not_r$(hhX:http://docs.python.org/library/operator.html#operator.not_X-tr$Ximageop.grey2grey4r$(hhX>http://docs.python.org/library/imageop.html#imageop.grey2grey4X-tr$Xbinascii.unhexlifyr$(hhX?http://docs.python.org/library/binascii.html#binascii.unhexlifyX-tr$X)multiprocessing.sharedctypes.synchronizedr$(hhX]http://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.synchronizedX-tr$Xurllib.urlopenr$(hhX9http://docs.python.org/library/urllib.html#urllib.urlopenX-tr$Xos.popenr$(hhX/http://docs.python.org/library/os.html#os.popenX-tr$Xdoctest.testfiler$(hhX<http://docs.python.org/library/doctest.html#doctest.testfileX-tr$Xoperator.__or__r$(hhX<http://docs.python.org/library/operator.html#operator.__or__X-tr$X curses.beepr$(hhX6http://docs.python.org/library/curses.html#curses.beepX-tr$X os.getloginr$(hhX2http://docs.python.org/library/os.html#os.getloginX-tr$Xpkgutil.get_datar$(hhX<http://docs.python.org/library/pkgutil.html#pkgutil.get_dataX-tr$X shutil.mover$(hhX6http://docs.python.org/library/shutil.html#shutil.moveX-tr$X os.startfiler$(hhX3http://docs.python.org/library/os.html#os.startfileX-tr$X math.gammar$(hhX3http://docs.python.org/library/math.html#math.gammaX-tr$Xos.chownr$(hhX/http://docs.python.org/library/os.html#os.chownX-tr$Xsignal.siginterruptr$(hhX>http://docs.python.org/library/signal.html#signal.siginterruptX-tr$X os.renamesr$(hhX1http://docs.python.org/library/os.html#os.renamesX-tr$X os.tmpnamr$(hhX0http://docs.python.org/library/os.html#os.tmpnamX-tr$Xmath.expr$(hhX1http://docs.python.org/library/math.html#math.expX-tr$X_winreg.OpenKeyr$(hhX;http://docs.python.org/library/_winreg.html#_winreg.OpenKeyX-tr$Xthread.interrupt_mainr$(hhX@http://docs.python.org/library/thread.html#thread.interrupt_mainX-tr$X operator.absr$(hhX9http://docs.python.org/library/operator.html#operator.absX-tr$X turtle.sethr$(hhX6http://docs.python.org/library/turtle.html#turtle.sethX-tr$X#distutils.ccompiler.gen_lib_optionsr$(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.gen_lib_optionsX-tr$Xrandom.lognormvariater$(hhX@http://docs.python.org/library/random.html#random.lognormvariateX-tr$X select.epollr$(hhX7http://docs.python.org/library/select.html#select.epollX-tr$Xdis.disassembler$(hhX7http://docs.python.org/library/dis.html#dis.disassembleX-tr$X os.unlinkr$(hhX0http://docs.python.org/library/os.html#os.unlinkX-tr$X turtle.writer$(hhX7http://docs.python.org/library/turtle.html#turtle.writeX-tr$X turtle.setyr$(hhX6http://docs.python.org/library/turtle.html#turtle.setyX-tr$X turtle.setxr$(hhX6http://docs.python.org/library/turtle.html#turtle.setxX-tr$Xwinsound.MessageBeepr$(hhXAhttp://docs.python.org/library/winsound.html#winsound.MessageBeepX-tr$Xemail.utils.getaddressesr$(hhXGhttp://docs.python.org/library/email.util.html#email.utils.getaddressesX-tr$Xurlparse.urlparser$(hhX>http://docs.python.org/library/urlparse.html#urlparse.urlparseX-tr$X operator.xorr$(hhX9http://docs.python.org/library/operator.html#operator.xorX-tr$X copy.copyr$(hhX2http://docs.python.org/library/copy.html#copy.copyX-tr$X stat.S_ISDIRr$(hhX5http://docs.python.org/library/stat.html#stat.S_ISDIRX-tr$Xdistutils.dir_util.create_treer$(hhXKhttp://docs.python.org/distutils/apiref.html#distutils.dir_util.create_treeX-tr$Xoperator.__lshift__r$(hhX@http://docs.python.org/library/operator.html#operator.__lshift__X-tr%Xinspect.isabstractr%(hhX>http://docs.python.org/library/inspect.html#inspect.isabstractX-tr%Xoperator.delslicer%(hhX>http://docs.python.org/library/operator.html#operator.delsliceX-tr%Xrandom.randintr%(hhX9http://docs.python.org/library/random.html#random.randintX-tr%X operator.iandr%(hhX:http://docs.python.org/library/operator.html#operator.iandX-tr%Xoctr %(hhX1http://docs.python.org/library/functions.html#octX-tr %Xemail.utils.mktime_tzr %(hhXDhttp://docs.python.org/library/email.util.html#email.utils.mktime_tzX-tr %Ximaplib.Internaldate2tupler %(hhXFhttp://docs.python.org/library/imaplib.html#imaplib.Internaldate2tupleX-tr%X!multiprocessing.connection.Clientr%(hhXUhttp://docs.python.org/library/multiprocessing.html#multiprocessing.connection.ClientX-tr%Xos.path.basenamer%(hhX<http://docs.python.org/library/os.path.html#os.path.basenameX-tr%Xdircache.resetr%(hhX;http://docs.python.org/library/dircache.html#dircache.resetX-tr%X ctypes.castr%(hhX6http://docs.python.org/library/ctypes.html#ctypes.castX-tr%X string.centerr%(hhX8http://docs.python.org/library/string.html#string.centerX-tr%Xrandom.uniformr%(hhX9http://docs.python.org/library/random.html#random.uniformX-tr%Xcurses.keynamer%(hhX9http://docs.python.org/library/curses.html#curses.keynameX-tr%X turtle.clearr%(hhX7http://docs.python.org/library/turtle.html#turtle.clearX-tr%Xwebbrowser.registerr%(hhXBhttp://docs.python.org/library/webbrowser.html#webbrowser.registerX-tr %X pty.openptyr!%(hhX3http://docs.python.org/library/pty.html#pty.openptyX-tr"%Xlocale.format_stringr#%(hhX?http://docs.python.org/library/locale.html#locale.format_stringX-tr$%X pdb.runcallr%%(hhX3http://docs.python.org/library/pdb.html#pdb.runcallX-tr&%Xcalendar.leapdaysr'%(hhX>http://docs.python.org/library/calendar.html#calendar.leapdaysX-tr(%X os.readlinkr)%(hhX2http://docs.python.org/library/os.html#os.readlinkX-tr*%Xdifflib.IS_LINE_JUNKr+%(hhX@http://docs.python.org/library/difflib.html#difflib.IS_LINE_JUNKX-tr,%Xsetattrr-%(hhX5http://docs.python.org/library/functions.html#setattrX-tr.%Xfindertools.mover/%(hhX?http://docs.python.org/library/macostools.html#findertools.moveX-tr0%Xcurses.isendwinr1%(hhX:http://docs.python.org/library/curses.html#curses.isendwinX-tr2%X_winreg.SetValuer3%(hhX<http://docs.python.org/library/_winreg.html#_winreg.SetValueX-tr4%Xreloadr5%(hhX4http://docs.python.org/library/functions.html#reloadX-tr6%X uuid.uuid4r7%(hhX3http://docs.python.org/library/uuid.html#uuid.uuid4X-tr8%X uuid.uuid5r9%(hhX3http://docs.python.org/library/uuid.html#uuid.uuid5X-tr:%X stat.S_ISREGr;%(hhX5http://docs.python.org/library/stat.html#stat.S_ISREGX-tr<%X uuid.uuid3r=%(hhX3http://docs.python.org/library/uuid.html#uuid.uuid3X-tr>%X xml.etree.ElementTree.SubElementr?%(hhXZhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.SubElementX-tr@%X uuid.uuid1rA%(hhX3http://docs.python.org/library/uuid.html#uuid.uuid1X-trB%Xsys.getcheckintervalrC%(hhX<http://docs.python.org/library/sys.html#sys.getcheckintervalX-trD%X os.spawnlrE%(hhX0http://docs.python.org/library/os.html#os.spawnlX-trF%Xcommands.getstatusoutputrG%(hhXEhttp://docs.python.org/library/commands.html#commands.getstatusoutputX-trH%Xcodecs.getreaderrI%(hhX;http://docs.python.org/library/codecs.html#codecs.getreaderX-trJ%Xfindertools.sleeprK%(hhX@http://docs.python.org/library/macostools.html#findertools.sleepX-trL%Xdifflib.HtmlDiff.make_tablerM%(hhXGhttp://docs.python.org/library/difflib.html#difflib.HtmlDiff.make_tableX-trN%Xpyclbr.readmodule_exrO%(hhX?http://docs.python.org/library/pyclbr.html#pyclbr.readmodule_exX-trP%Xcurses.resettyrQ%(hhX9http://docs.python.org/library/curses.html#curses.resettyX-trR%Xstring.expandtabsrS%(hhX<http://docs.python.org/library/string.html#string.expandtabsX-trT%Xfindertools.PrintrU%(hhX@http://docs.python.org/library/macostools.html#findertools.PrintX-trV%Xsignal.set_wakeup_fdrW%(hhX?http://docs.python.org/library/signal.html#signal.set_wakeup_fdX-trX%Xcurses.ascii.ispunctrY%(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.ispunctX-trZ%X curses.echor[%(hhX6http://docs.python.org/library/curses.html#curses.echoX-tr\%X curses.getwinr]%(hhX8http://docs.python.org/library/curses.html#curses.getwinX-tr^%Xfuture_builtins.octr_%(hhXGhttp://docs.python.org/library/future_builtins.html#future_builtins.octX-tr`%X new.functionra%(hhX4http://docs.python.org/library/new.html#new.functionX-trb%X turtle.fdrc%(hhX4http://docs.python.org/library/turtle.html#turtle.fdX-trd%X turtle.getpenre%(hhX8http://docs.python.org/library/turtle.html#turtle.getpenX-trf%Xlocalsrg%(hhX4http://docs.python.org/library/functions.html#localsX-trh%X quopri.decoderi%(hhX8http://docs.python.org/library/quopri.html#quopri.decodeX-trj%X"distutils.sysconfig.get_python_librk%(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.get_python_libX-trl%Xdoctest.debug_srcrm%(hhX=http://docs.python.org/library/doctest.html#doctest.debug_srcX-trn%X cmath.sqrtro%(hhX4http://docs.python.org/library/cmath.html#cmath.sqrtX-trp%Xcalendar.weekheaderrq%(hhX@http://docs.python.org/library/calendar.html#calendar.weekheaderX-trr%Xstringprep.in_table_c7rs%(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c7X-trt%Xoperator.irepeatru%(hhX=http://docs.python.org/library/operator.html#operator.irepeatX-trv%Xunicodedata.east_asian_widthrw%(hhXLhttp://docs.python.org/library/unicodedata.html#unicodedata.east_asian_widthX-trx%Xfunctools.cmp_to_keyry%(hhXBhttp://docs.python.org/library/functools.html#functools.cmp_to_keyX-trz%Xcurses.panel.new_panelr{%(hhXGhttp://docs.python.org/library/curses.panel.html#curses.panel.new_panelX-tr|%X fractions.gcdr}%(hhX;http://docs.python.org/library/fractions.html#fractions.gcdX-tr~%Xgensuitemodule.is_scriptabler%(hhXOhttp://docs.python.org/library/gensuitemodule.html#gensuitemodule.is_scriptableX-tr%X dis.discor%(hhX1http://docs.python.org/library/dis.html#dis.discoX-tr%Xdoctest.run_docstring_examplesr%(hhXJhttp://docs.python.org/library/doctest.html#doctest.run_docstring_examplesX-tr%X)distutils.sysconfig.get_makefile_filenamer%(hhXVhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.get_makefile_filenameX-tr%Xoperator.__add__r%(hhX=http://docs.python.org/library/operator.html#operator.__add__X-tr%Xturtle.clearscreenr%(hhX=http://docs.python.org/library/turtle.html#turtle.clearscreenX-tr%Xdistutils.file_util.copy_filer%(hhXJhttp://docs.python.org/distutils/apiref.html#distutils.file_util.copy_fileX-tr%X sys._getframer%(hhX5http://docs.python.org/library/sys.html#sys._getframeX-tr%X_winreg.QueryReflectionKeyr%(hhXFhttp://docs.python.org/library/_winreg.html#_winreg.QueryReflectionKeyX-tr%X fl.make_formr%(hhX3http://docs.python.org/library/fl.html#fl.make_formX-tr%X_winreg.CreateKeyExr%(hhX?http://docs.python.org/library/_winreg.html#_winreg.CreateKeyExX-tr%X pprint.pprintr%(hhX8http://docs.python.org/library/pprint.html#pprint.pprintX-tr%Xoperator.__mul__r%(hhX=http://docs.python.org/library/operator.html#operator.__mul__X-tr%X shutil.copyr%(hhX6http://docs.python.org/library/shutil.html#shutil.copyX-tr%X stat.S_ISLNKr%(hhX5http://docs.python.org/library/stat.html#stat.S_ISLNKX-tr%X MacOS.splashr%(hhX6http://docs.python.org/library/macos.html#MacOS.splashX-tr%Xlenr%(hhX1http://docs.python.org/library/functions.html#lenX-tr%Xinspect.getargvaluesr%(hhX@http://docs.python.org/library/inspect.html#inspect.getargvaluesX-tr%X time.mktimer%(hhX4http://docs.python.org/library/time.html#time.mktimeX-tr%Xaetools.enumsubstr%(hhX=http://docs.python.org/library/aetools.html#aetools.enumsubstX-tr%Xcurses.pair_numberr%(hhX=http://docs.python.org/library/curses.html#curses.pair_numberX-tr%Xaetools.packeventr%(hhX=http://docs.python.org/library/aetools.html#aetools.packeventX-tr%X cmath.polarr%(hhX5http://docs.python.org/library/cmath.html#cmath.polarX-tr%X os.spawnlper%(hhX2http://docs.python.org/library/os.html#os.spawnlpeX-tr%Xfuture_builtins.mapr%(hhXGhttp://docs.python.org/library/future_builtins.html#future_builtins.mapX-tr%X%test.test_support.import_fresh_moduler%(hhXNhttp://docs.python.org/library/test.html#test.test_support.import_fresh_moduleX-tr%Xurllib.pathname2urlr%(hhX>http://docs.python.org/library/urllib.html#urllib.pathname2urlX-tr%Xoperator.methodcallerr%(hhXBhttp://docs.python.org/library/operator.html#operator.methodcallerX-tr%X turtle.backr%(hhX6http://docs.python.org/library/turtle.html#turtle.backX-tr%Xctypes.create_string_bufferr%(hhXFhttp://docs.python.org/library/ctypes.html#ctypes.create_string_bufferX-tr%X turtle.setupr%(hhX7http://docs.python.org/library/turtle.html#turtle.setupX-tr%Xfl.get_rgbmoder%(hhX5http://docs.python.org/library/fl.html#fl.get_rgbmodeX-tr%X string.zfillr%(hhX7http://docs.python.org/library/string.html#string.zfillX-tr%X gdbm.firstkeyr%(hhX6http://docs.python.org/library/gdbm.html#gdbm.firstkeyX-tr%Xcgi.testr%(hhX0http://docs.python.org/library/cgi.html#cgi.testX-tr%Xurllib.urlencoder%(hhX;http://docs.python.org/library/urllib.html#urllib.urlencodeX-tr%X os.killpgr%(hhX0http://docs.python.org/library/os.html#os.killpgX-tr%Ximp.load_compiledr%(hhX9http://docs.python.org/library/imp.html#imp.load_compiledX-tr%X os.removedirsr%(hhX4http://docs.python.org/library/os.html#os.removedirsX-tr%Xfunctools.update_wrapperr%(hhXFhttp://docs.python.org/library/functools.html#functools.update_wrapperX-tr%X turtle.listenr%(hhX8http://docs.python.org/library/turtle.html#turtle.listenX-tr%X operator.or_r%(hhX9http://docs.python.org/library/operator.html#operator.or_X-tr%Xglobalsr%(hhX5http://docs.python.org/library/functions.html#globalsX-tr%Xreadline.clear_historyr%(hhXChttp://docs.python.org/library/readline.html#readline.clear_historyX-tr%X gc.is_trackedr%(hhX4http://docs.python.org/library/gc.html#gc.is_trackedX-tr%Xfl.colorr%(hhX/http://docs.python.org/library/fl.html#fl.colorX-tr%X turtle.leftr%(hhX6http://docs.python.org/library/turtle.html#turtle.leftX-tr%Xplatform.system_aliasr%(hhXBhttp://docs.python.org/library/platform.html#platform.system_aliasX-tr%Ximgfile.readscaledr%(hhX>http://docs.python.org/library/imgfile.html#imgfile.readscaledX-tr%Xpkgutil.iter_importersr%(hhXBhttp://docs.python.org/library/pkgutil.html#pkgutil.iter_importersX-tr%X turtle.pdr%(hhX4http://docs.python.org/library/turtle.html#turtle.pdX-tr%Xdircache.listdirr%(hhX=http://docs.python.org/library/dircache.html#dircache.listdirX-tr%X bz2.compressr%(hhX4http://docs.python.org/library/bz2.html#bz2.compressX-tr%Xunicodedata.categoryr%(hhXDhttp://docs.python.org/library/unicodedata.html#unicodedata.categoryX-tr%X socket.ntohsr%(hhX7http://docs.python.org/library/socket.html#socket.ntohsX-tr%X os.setgroupsr%(hhX3http://docs.python.org/library/os.html#os.setgroupsX-tr%X stat.S_IMODEr%(hhX5http://docs.python.org/library/stat.html#stat.S_IMODEX-tr%X math.fabsr%(hhX2http://docs.python.org/library/math.html#math.fabsX-tr%X bsddb.rnopenr%(hhX6http://docs.python.org/library/bsddb.html#bsddb.rnopenX-tr%X turtle.pur%(hhX4http://docs.python.org/library/turtle.html#turtle.puX-tr%Xcodecs.backslashreplace_errorsr%(hhXIhttp://docs.python.org/library/codecs.html#codecs.backslashreplace_errorsX-tr%X bisect.insortr%(hhX8http://docs.python.org/library/bisect.html#bisect.insortX-tr%X turtle.colorr%(hhX7http://docs.python.org/library/turtle.html#turtle.colorX-tr%Xposixfile.openr%(hhX<http://docs.python.org/library/posixfile.html#posixfile.openX-tr%X socket.ntohlr%(hhX7http://docs.python.org/library/socket.html#socket.ntohlX-tr&X cmath.coshr&(hhX4http://docs.python.org/library/cmath.html#cmath.coshX-tr&Xre.subr&(hhX-http://docs.python.org/library/re.html#re.subX-tr&Xsysconfig.is_python_buildr&(hhXGhttp://docs.python.org/library/sysconfig.html#sysconfig.is_python_buildX-tr&X os.confstrr&(hhX1http://docs.python.org/library/os.html#os.confstrX-tr&Xmsvcrt.get_osfhandler &(hhX?http://docs.python.org/library/msvcrt.html#msvcrt.get_osfhandleX-tr &Xpy_compile.mainr &(hhX>http://docs.python.org/library/py_compile.html#py_compile.mainX-tr &Xdistutils.core.setupr &(hhXAhttp://docs.python.org/distutils/apiref.html#distutils.core.setupX-tr&X aepack.packr&(hhX6http://docs.python.org/library/aepack.html#aepack.packX-tr&X%xml.sax.saxutils.prepare_input_sourcer&(hhXWhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.prepare_input_sourceX-tr&X turtle.tiltr&(hhX6http://docs.python.org/library/turtle.html#turtle.tiltX-tr&X gl.vnarrayr&(hhX1http://docs.python.org/library/gl.html#gl.vnarrayX-tr&Xplistlib.writePlistToResourcer&(hhXJhttp://docs.python.org/library/plistlib.html#plistlib.writePlistToResourceX-tr&Xbisect.insort_rightr&(hhX>http://docs.python.org/library/bisect.html#bisect.insort_rightX-tr&Xinspect.ismoduler&(hhX<http://docs.python.org/library/inspect.html#inspect.ismoduleX-tr&Xcurses.init_pairr&(hhX;http://docs.python.org/library/curses.html#curses.init_pairX-tr&Xmimetools.choose_boundaryr&(hhXGhttp://docs.python.org/library/mimetools.html#mimetools.choose_boundaryX-tr &Xos.chdirr!&(hhX/http://docs.python.org/library/os.html#os.chdirX-tr"&X msvcrt.getwchr#&(hhX8http://docs.python.org/library/msvcrt.html#msvcrt.getwchX-tr$&X operator.modr%&(hhX9http://docs.python.org/library/operator.html#operator.modX-tr&&Xgettext.bindtextdomainr'&(hhXBhttp://docs.python.org/library/gettext.html#gettext.bindtextdomainX-tr(&Xplatform.python_branchr)&(hhXChttp://docs.python.org/library/platform.html#platform.python_branchX-tr*&Xoperator.indexOfr+&(hhX=http://docs.python.org/library/operator.html#operator.indexOfX-tr,&Xpropertyr-&(hhX6http://docs.python.org/library/functions.html#propertyX-tr.&Xemail.encoders.encode_7or8bitr/&(hhXPhttp://docs.python.org/library/email.encoders.html#email.encoders.encode_7or8bitX-tr0&Xcurses.halfdelayr1&(hhX;http://docs.python.org/library/curses.html#curses.halfdelayX-tr2&Xmultiprocessing.log_to_stderrr3&(hhXQhttp://docs.python.org/library/multiprocessing.html#multiprocessing.log_to_stderrX-tr4&X curses.rawr5&(hhX5http://docs.python.org/library/curses.html#curses.rawX-tr6&Xaudioop.alaw2linr7&(hhX<http://docs.python.org/library/audioop.html#audioop.alaw2linX-tr8&Xfl.show_messager9&(hhX6http://docs.python.org/library/fl.html#fl.show_messageX-tr:&Xbinascii.a2b_hexr;&(hhX=http://docs.python.org/library/binascii.html#binascii.a2b_hexX-tr<&X)distutils.sysconfig.get_config_h_filenamer=&(hhXVhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.get_config_h_filenameX-tr>&X fl.get_mouser?&(hhX3http://docs.python.org/library/fl.html#fl.get_mouseX-tr@&X file_createdrA&(hhX<http://docs.python.org/distutils/builtdist.html#file_createdX-trB&Xoperator.ifloordivrC&(hhX?http://docs.python.org/library/operator.html#operator.ifloordivX-trD&X_winreg.OpenKeyExrE&(hhX=http://docs.python.org/library/_winreg.html#_winreg.OpenKeyExX-trF&Xinspect.getcommentsrG&(hhX?http://docs.python.org/library/inspect.html#inspect.getcommentsX-trH&X imp.lock_heldrI&(hhX5http://docs.python.org/library/imp.html#imp.lock_heldX-trJ&X operator.ixorrK&(hhX:http://docs.python.org/library/operator.html#operator.ixorX-trL&Xcommands.getoutputrM&(hhX?http://docs.python.org/library/commands.html#commands.getoutputX-trN&XidrO&(hhX0http://docs.python.org/library/functions.html#idX-trP&X cmath.sinhrQ&(hhX4http://docs.python.org/library/cmath.html#cmath.sinhX-trR&X _winreg.ExpandEnvironmentStringsrS&(hhXLhttp://docs.python.org/library/_winreg.html#_winreg.ExpandEnvironmentStringsX-trT&Xsysconfig.get_python_versionrU&(hhXJhttp://docs.python.org/library/sysconfig.html#sysconfig.get_python_versionX-trV&X tty.setcbreakrW&(hhX5http://docs.python.org/library/tty.html#tty.setcbreakX-trX&Xos.unamerY&(hhX/http://docs.python.org/library/os.html#os.unameX-trZ&Xemail.charset.add_charsetr[&(hhXKhttp://docs.python.org/library/email.charset.html#email.charset.add_charsetX-tr\&Xcgi.print_environr]&(hhX9http://docs.python.org/library/cgi.html#cgi.print_environX-tr^&X audioop.crossr_&(hhX9http://docs.python.org/library/audioop.html#audioop.crossX-tr`&Xsignal.getitimerra&(hhX;http://docs.python.org/library/signal.html#signal.getitimerX-trb&Xcomplexrc&(hhX5http://docs.python.org/library/functions.html#complexX-trd&XcStringIO.StringIOre&(hhX?http://docs.python.org/library/stringio.html#cStringIO.StringIOX-trf&X uu.encoderg&(hhX0http://docs.python.org/library/uu.html#uu.encodeX-trh&X locale.formatri&(hhX8http://docs.python.org/library/locale.html#locale.formatX-trj&X math.acosrk&(hhX2http://docs.python.org/library/math.html#math.acosX-trl&Xxml.sax.parseStringrm&(hhX?http://docs.python.org/library/xml.sax.html#xml.sax.parseStringX-trn&Xxml.sax.saxutils.escapero&(hhXIhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.escapeX-trp&X msvcrt.getchrq&(hhX7http://docs.python.org/library/msvcrt.html#msvcrt.getchX-trr&Xmsvcrt.heapminrs&(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.heapminX-trt&Xlogging.basicConfigru&(hhX?http://docs.python.org/library/logging.html#logging.basicConfigX-trv&Xoperator.__concat__rw&(hhX@http://docs.python.org/library/operator.html#operator.__concat__X-trx&Xgc.get_thresholdry&(hhX7http://docs.python.org/library/gc.html#gc.get_thresholdX-trz&X"distutils.sysconfig.get_python_incr{&(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.get_python_incX-tr|&Xctypes.string_atr}&(hhX;http://docs.python.org/library/ctypes.html#ctypes.string_atX-tr~&XFrameWork.SubMenur&(hhX?http://docs.python.org/library/framework.html#FrameWork.SubMenuX-tr&X math.tanhr&(hhX2http://docs.python.org/library/math.html#math.tanhX-tr&Xminr&(hhX1http://docs.python.org/library/functions.html#minX-tr&Xsyslog.openlogr&(hhX9http://docs.python.org/library/syslog.html#syslog.openlogX-tr&Xbase64.standard_b64encoder&(hhXDhttp://docs.python.org/library/base64.html#base64.standard_b64encodeX-tr&Xmimetypes.guess_all_extensionsr&(hhXLhttp://docs.python.org/library/mimetypes.html#mimetypes.guess_all_extensionsX-tr&Xplatform.java_verr&(hhX>http://docs.python.org/library/platform.html#platform.java_verX-tr&Xmimetypes.add_typer&(hhX@http://docs.python.org/library/mimetypes.html#mimetypes.add_typeX-tr&Xrandom.randranger&(hhX;http://docs.python.org/library/random.html#random.randrangeX-tr&X math.lgammar&(hhX4http://docs.python.org/library/math.html#math.lgammaX-tr&Xfunctools.reducer&(hhX>http://docs.python.org/library/functools.html#functools.reduceX-tr&Xunittest.skipUnlessr&(hhX@http://docs.python.org/library/unittest.html#unittest.skipUnlessX-tr&X os.execlpr&(hhX0http://docs.python.org/library/os.html#os.execlpX-tr&X heapq.heappopr&(hhX7http://docs.python.org/library/heapq.html#heapq.heappopX-tr&X pwd.getpwallr&(hhX4http://docs.python.org/library/pwd.html#pwd.getpwallX-tr&Xunittest.installHandlerr&(hhXDhttp://docs.python.org/library/unittest.html#unittest.installHandlerX-tr&X spwd.getspallr&(hhX6http://docs.python.org/library/spwd.html#spwd.getspallX-tr&Xcurses.tigetnumr&(hhX:http://docs.python.org/library/curses.html#curses.tigetnumX-tr&Xsysconfig.get_config_h_filenamer&(hhXMhttp://docs.python.org/library/sysconfig.html#sysconfig.get_config_h_filenameX-tr&Xheapq.heappushr&(hhX8http://docs.python.org/library/heapq.html#heapq.heappushX-tr&X turtle.setposr&(hhX8http://docs.python.org/library/turtle.html#turtle.setposX-tr&Xssl.RAND_statusr&(hhX7http://docs.python.org/library/ssl.html#ssl.RAND_statusX-tr&X os.execler&(hhX0http://docs.python.org/library/os.html#os.execleX-tr&X math.acoshr&(hhX3http://docs.python.org/library/math.html#math.acoshX-tr&Xaudioop.lin2ulawr&(hhX<http://docs.python.org/library/audioop.html#audioop.lin2ulawX-tr&Xos.abortr&(hhX/http://docs.python.org/library/os.html#os.abortX-tr&X logging.infor&(hhX8http://docs.python.org/library/logging.html#logging.infoX-tr&Xoperator.containsr&(hhX>http://docs.python.org/library/operator.html#operator.containsX-tr&Xplatform.python_versionr&(hhXDhttp://docs.python.org/library/platform.html#platform.python_versionX-tr&Xemail.message_from_filer&(hhXHhttp://docs.python.org/library/email.parser.html#email.message_from_fileX-tr&Xturtle.screensizer&(hhX<http://docs.python.org/library/turtle.html#turtle.screensizeX-tr&Xast.get_docstringr&(hhX9http://docs.python.org/library/ast.html#ast.get_docstringX-tr&Xturtle.resizemoder&(hhX<http://docs.python.org/library/turtle.html#turtle.resizemodeX-tr&X time.asctimer&(hhX5http://docs.python.org/library/time.html#time.asctimeX-tr&Xctypes.memmover&(hhX9http://docs.python.org/library/ctypes.html#ctypes.memmoveX-tr&Xos.piper&(hhX.http://docs.python.org/library/os.html#os.pipeX-tr&X al.openportr&(hhX2http://docs.python.org/library/al.html#al.openportX-tr&Xcollections.namedtupler&(hhXFhttp://docs.python.org/library/collections.html#collections.namedtupleX-tr&Xtimeit.default_timerr&(hhX?http://docs.python.org/library/timeit.html#timeit.default_timerX-tr&Xgettext.dgettextr&(hhX<http://docs.python.org/library/gettext.html#gettext.dgettextX-tr&Xfunctools.total_orderingr&(hhXFhttp://docs.python.org/library/functools.html#functools.total_orderingX-tr&Xunicodedata.mirroredr&(hhXDhttp://docs.python.org/library/unicodedata.html#unicodedata.mirroredX-tr&Xfileinput.nextfiler&(hhX@http://docs.python.org/library/fileinput.html#fileinput.nextfileX-tr&Xunittest.expectedFailurer&(hhXEhttp://docs.python.org/library/unittest.html#unittest.expectedFailureX-tr&Xinputr&(hhX3http://docs.python.org/library/functions.html#inputX-tr&X unittest.mainr&(hhX:http://docs.python.org/library/unittest.html#unittest.mainX-tr&Xlocale.getdefaultlocaler&(hhXBhttp://docs.python.org/library/locale.html#locale.getdefaultlocaleX-tr&Xurlparse.parse_qsr&(hhX>http://docs.python.org/library/urlparse.html#urlparse.parse_qsX-tr&Xbinr&(hhX1http://docs.python.org/library/functions.html#binX-tr&X re.findallr&(hhX1http://docs.python.org/library/re.html#re.findallX-tr&X curses.metar&(hhX6http://docs.python.org/library/curses.html#curses.metaX-tr&Xformatr&(hhX4http://docs.python.org/library/functions.html#formatX-tr&X os.fstatvfsr&(hhX2http://docs.python.org/library/os.html#os.fstatvfsX-tr&Xsys.setprofiler&(hhX6http://docs.python.org/library/sys.html#sys.setprofileX-tr&X fcntl.ioctlr&(hhX5http://docs.python.org/library/fcntl.html#fcntl.ioctlX-tr&Xmimetools.copyliteralr&(hhXChttp://docs.python.org/library/mimetools.html#mimetools.copyliteralX-tr&Xcalendar.setfirstweekdayr&(hhXEhttp://docs.python.org/library/calendar.html#calendar.setfirstweekdayX-tr&X new.classobjr&(hhX4http://docs.python.org/library/new.html#new.classobjX-tr&Xthreading.currentThreadr&(hhXEhttp://docs.python.org/library/threading.html#threading.currentThreadX-tr&X os.getpgrpr&(hhX1http://docs.python.org/library/os.html#os.getpgrpX-tr&Xstringprep.in_table_c12r&(hhXFhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c12X-tr&X,readline.set_completion_display_matches_hookr&(hhXYhttp://docs.python.org/library/readline.html#readline.set_completion_display_matches_hookX-tr&X turtle.dotr&(hhX5http://docs.python.org/library/turtle.html#turtle.dotX-tr&X Tkinter.Tclr&(hhX7http://docs.python.org/library/tkinter.html#Tkinter.TclX-tr&Xos.path.relpathr&(hhX;http://docs.python.org/library/os.path.html#os.path.relpathX-tr'Xmailcap.findmatchr'(hhX=http://docs.python.org/library/mailcap.html#mailcap.findmatchX-tr'X os.setregidr'(hhX2http://docs.python.org/library/os.html#os.setregidX-tr'XMacOS.GetErrorStringr'(hhX>http://docs.python.org/library/macos.html#MacOS.GetErrorStringX-tr'Xxmlrpclib.loadsr'(hhX=http://docs.python.org/library/xmlrpclib.html#xmlrpclib.loadsX-tr'Xmultiprocessing.Piper '(hhXHhttp://docs.python.org/library/multiprocessing.html#multiprocessing.PipeX-tr 'Xcurses.ascii.ismetar '(hhXDhttp://docs.python.org/library/curses.ascii.html#curses.ascii.ismetaX-tr 'Xsys.getprofiler '(hhX6http://docs.python.org/library/sys.html#sys.getprofileX-tr'Xsite.addsitedirr'(hhX8http://docs.python.org/library/site.html#site.addsitedirX-tr'Xctypes.set_last_errorr'(hhX@http://docs.python.org/library/ctypes.html#ctypes.set_last_errorX-tr'X math.modfr'(hhX2http://docs.python.org/library/math.html#math.modfX-tr'Xresource.getrlimitr'(hhX?http://docs.python.org/library/resource.html#resource.getrlimitX-tr'Xtempfile.mktempr'(hhX<http://docs.python.org/library/tempfile.html#tempfile.mktempX-tr'X!test.test_support.captured_stdoutr'(hhXJhttp://docs.python.org/library/test.html#test.test_support.captured_stdoutX-tr'Xtest.test_support.run_unittestr'(hhXGhttp://docs.python.org/library/test.html#test.test_support.run_unittestX-tr'Xcurses.can_change_colorr'(hhXBhttp://docs.python.org/library/curses.html#curses.can_change_colorX-tr'Xcontextlib.nestedr'(hhX@http://docs.python.org/library/contextlib.html#contextlib.nestedX-tr 'Xfl.set_graphics_moder!'(hhX;http://docs.python.org/library/fl.html#fl.set_graphics_modeX-tr"'X cmath.sinr#'(hhX3http://docs.python.org/library/cmath.html#cmath.sinX-tr$'Xcd.openr%'(hhX.http://docs.python.org/library/cd.html#cd.openX-tr&'XMacOS.SetCreatorAndTyper''(hhXAhttp://docs.python.org/library/macos.html#MacOS.SetCreatorAndTypeX-tr('Xinternr)'(hhX4http://docs.python.org/library/functions.html#internX-tr*'X glob.globr+'(hhX2http://docs.python.org/library/glob.html#glob.globX-tr,'Xos.rmdirr-'(hhX/http://docs.python.org/library/os.html#os.rmdirX-tr.'X json.dumpr/'(hhX2http://docs.python.org/library/json.html#json.dumpX-tr0'Xmsilib.add_streamr1'(hhX<http://docs.python.org/library/msilib.html#msilib.add_streamX-tr2'Xbase64.b16encoder3'(hhX;http://docs.python.org/library/base64.html#base64.b16encodeX-tr4'X math.sqrtr5'(hhX2http://docs.python.org/library/math.html#math.sqrtX-tr6'Xos.fsyncr7'(hhX/http://docs.python.org/library/os.html#os.fsyncX-tr8'Xpprint.isrecursiver9'(hhX=http://docs.python.org/library/pprint.html#pprint.isrecursiveX-tr:'X math.isnanr;'(hhX3http://docs.python.org/library/math.html#math.isnanX-tr<'Xemail.utils.formatdater='(hhXEhttp://docs.python.org/library/email.util.html#email.utils.formatdateX-tr>'X_winreg.LoadKeyr?'(hhX;http://docs.python.org/library/_winreg.html#_winreg.LoadKeyX-tr@'Xinspect.getmodulenamerA'(hhXAhttp://docs.python.org/library/inspect.html#inspect.getmodulenameX-trB'X curses.filterrC'(hhX8http://docs.python.org/library/curses.html#curses.filterX-trD'X re.searchrE'(hhX0http://docs.python.org/library/re.html#re.searchX-trF'Xtermios.tcdrainrG'(hhX;http://docs.python.org/library/termios.html#termios.tcdrainX-trH'Xtraceback.format_exceptionrI'(hhXHhttp://docs.python.org/library/traceback.html#traceback.format_exceptionX-trJ'X gc.set_debugrK'(hhX3http://docs.python.org/library/gc.html#gc.set_debugX-trL'X ic.parseurlrM'(hhX2http://docs.python.org/library/ic.html#ic.parseurlX-trN'Xturtle.forwardrO'(hhX9http://docs.python.org/library/turtle.html#turtle.forwardX-trP'X fl.getmcolorrQ'(hhX3http://docs.python.org/library/fl.html#fl.getmcolorX-trR'X curses.newwinrS'(hhX8http://docs.python.org/library/curses.html#curses.newwinX-trT'Xcolorsys.hls_to_rgbrU'(hhX@http://docs.python.org/library/colorsys.html#colorsys.hls_to_rgbX-trV'Xitertools.ifilterrW'(hhX?http://docs.python.org/library/itertools.html#itertools.ifilterX-trX'Ximp.load_modulerY'(hhX7http://docs.python.org/library/imp.html#imp.load_moduleX-trZ'Xwarnings.resetwarningsr['(hhXChttp://docs.python.org/library/warnings.html#warnings.resetwarningsX-tr\'Xcurses.mousemaskr]'(hhX;http://docs.python.org/library/curses.html#curses.mousemaskX-tr^'Xdis.findlabelsr_'(hhX6http://docs.python.org/library/dis.html#dis.findlabelsX-tr`'Xbdb.checkfuncnamera'(hhX9http://docs.python.org/library/bdb.html#bdb.checkfuncnameX-trb'X audioop.avgpprc'(hhX9http://docs.python.org/library/audioop.html#audioop.avgppX-trd'Xoperator.__imul__re'(hhX>http://docs.python.org/library/operator.html#operator.__imul__X-trf'Xsys.getwindowsversionrg'(hhX=http://docs.python.org/library/sys.html#sys.getwindowsversionX-trh'XFrameWork.setwatchcursorri'(hhXFhttp://docs.python.org/library/framework.html#FrameWork.setwatchcursorX-trj'Xdifflib.unified_diffrk'(hhX@http://docs.python.org/library/difflib.html#difflib.unified_diffX-trl'Xturtle.bgcolorrm'(hhX9http://docs.python.org/library/turtle.html#turtle.bgcolorX-trn'Xsuperro'(hhX3http://docs.python.org/library/functions.html#superX-trp'Xturtle.distancerq'(hhX:http://docs.python.org/library/turtle.html#turtle.distanceX-trr'Xos.dup2rs'(hhX.http://docs.python.org/library/os.html#os.dup2X-trt'Xpkgutil.extend_pathru'(hhX?http://docs.python.org/library/pkgutil.html#pkgutil.extend_pathX-trv'Xcalendar.monthrangerw'(hhX@http://docs.python.org/library/calendar.html#calendar.monthrangeX-trx'Xgdbm.reorganizery'(hhX8http://docs.python.org/library/gdbm.html#gdbm.reorganizeX-trz'Xos.path.expanduserr{'(hhX>http://docs.python.org/library/os.path.html#os.path.expanduserX-tr|'XFrameWork.setarrowcursorr}'(hhXFhttp://docs.python.org/library/framework.html#FrameWork.setarrowcursorX-tr~'Xlogging.setLoggerClassr'(hhXBhttp://docs.python.org/library/logging.html#logging.setLoggerClassX-tr'Xgensuitemodule.processfiler'(hhXMhttp://docs.python.org/library/gensuitemodule.html#gensuitemodule.processfileX-tr'X os.ftruncater'(hhX3http://docs.python.org/library/os.html#os.ftruncateX-tr'Xranger'(hhX3http://docs.python.org/library/functions.html#rangeX-tr'X fcntl.flockr'(hhX5http://docs.python.org/library/fcntl.html#fcntl.flockX-tr'Xreadline.read_history_filer'(hhXGhttp://docs.python.org/library/readline.html#readline.read_history_fileX-tr'Xcurses.panel.update_panelsr'(hhXKhttp://docs.python.org/library/curses.panel.html#curses.panel.update_panelsX-tr'X bsddb.btopenr'(hhX6http://docs.python.org/library/bsddb.html#bsddb.btopenX-tr'Xos.mkdirr'(hhX/http://docs.python.org/library/os.html#os.mkdirX-tr'Xsignal.getsignalr'(hhX;http://docs.python.org/library/signal.html#signal.getsignalX-tr'X curses.tparmr'(hhX7http://docs.python.org/library/curses.html#curses.tparmX-tr'Xturtle.backwardr'(hhX:http://docs.python.org/library/turtle.html#turtle.backwardX-tr'Xoperator.indexr'(hhX;http://docs.python.org/library/operator.html#operator.indexX-tr'Xstruct.unpack_fromr'(hhX=http://docs.python.org/library/struct.html#struct.unpack_fromX-tr'X string.stripr'(hhX7http://docs.python.org/library/string.html#string.stripX-tr'Xreadline.set_completer_delimsr'(hhXJhttp://docs.python.org/library/readline.html#readline.set_completer_delimsX-tr'Xfloatr'(hhX3http://docs.python.org/library/functions.html#floatX-tr'Xtraceback.tb_linenor'(hhXAhttp://docs.python.org/library/traceback.html#traceback.tb_linenoX-tr'Xcurses.curs_setr'(hhX:http://docs.python.org/library/curses.html#curses.curs_setX-tr'Xoperator.__contains__r'(hhXBhttp://docs.python.org/library/operator.html#operator.__contains__X-tr'Xlinecache.checkcacher'(hhXBhttp://docs.python.org/library/linecache.html#linecache.checkcacheX-tr'Xcurses.ascii.ctrlr'(hhXBhttp://docs.python.org/library/curses.ascii.html#curses.ascii.ctrlX-tr'Xnextr'(hhX2http://docs.python.org/library/functions.html#nextX-tr'Xcgi.parse_multipartr'(hhX;http://docs.python.org/library/cgi.html#cgi.parse_multipartX-tr'Xoperator.__pos__r'(hhX=http://docs.python.org/library/operator.html#operator.__pos__X-tr'Xos.stat_float_timesr'(hhX:http://docs.python.org/library/os.html#os.stat_float_timesX-tr'XFrameWork.Menur'(hhX<http://docs.python.org/library/framework.html#FrameWork.MenuX-tr'Xtest.test_support.forgetr'(hhXAhttp://docs.python.org/library/test.html#test.test_support.forgetX-tr'Xpprint.pformatr'(hhX9http://docs.python.org/library/pprint.html#pprint.pformatX-tr'Xdecimal.getcontextr'(hhX>http://docs.python.org/library/decimal.html#decimal.getcontextX-tr'Xcompiler.compiler'(hhX=http://docs.python.org/library/compiler.html#compiler.compileX-tr'Xsqlite3.register_adapterr'(hhXDhttp://docs.python.org/library/sqlite3.html#sqlite3.register_adapterX-tr'X_winreg.EnumValuer'(hhX=http://docs.python.org/library/_winreg.html#_winreg.EnumValueX-tr'Xlongr'(hhX2http://docs.python.org/library/functions.html#longX-tr'Xtraceback.format_exception_onlyr'(hhXMhttp://docs.python.org/library/traceback.html#traceback.format_exception_onlyX-tr'X itertools.teer'(hhX;http://docs.python.org/library/itertools.html#itertools.teeX-tr'Xcopy_reg.pickler'(hhX<http://docs.python.org/library/copy_reg.html#copy_reg.pickleX-tr'X ssl.RAND_addr'(hhX4http://docs.python.org/library/ssl.html#ssl.RAND_addX-tr'X audioop.maxppr'(hhX9http://docs.python.org/library/audioop.html#audioop.maxppX-tr'Xfileinput.hook_encodedr'(hhXDhttp://docs.python.org/library/fileinput.html#fileinput.hook_encodedX-tr'Ximageop.mono2greyr'(hhX=http://docs.python.org/library/imageop.html#imageop.mono2greyX-tr'X os.fchownr'(hhX0http://docs.python.org/library/os.html#os.fchownX-tr'Xctypes.wstring_atr'(hhX<http://docs.python.org/library/ctypes.html#ctypes.wstring_atX-tr'X codecs.encoder'(hhX8http://docs.python.org/library/codecs.html#codecs.encodeX-tr'Xos.linkr'(hhX.http://docs.python.org/library/os.html#os.linkX-tr'X curses.unctrlr'(hhX8http://docs.python.org/library/curses.html#curses.unctrlX-tr'Xshutil.copyfileobjr'(hhX=http://docs.python.org/library/shutil.html#shutil.copyfileobjX-tr'Xunicodedata.decimalr'(hhXChttp://docs.python.org/library/unicodedata.html#unicodedata.decimalX-tr'Xoperator.sequenceIncludesr'(hhXFhttp://docs.python.org/library/operator.html#operator.sequenceIncludesX-tr'Xturtle.colormoder'(hhX;http://docs.python.org/library/turtle.html#turtle.colormodeX-tr'X os.WIFEXITEDr'(hhX3http://docs.python.org/library/os.html#os.WIFEXITEDX-tr'Xcsv.get_dialectr'(hhX7http://docs.python.org/library/csv.html#csv.get_dialectX-tr'X profile.runr'(hhX7http://docs.python.org/library/profile.html#profile.runX-tr'Xcurses.wrapperr'(hhX9http://docs.python.org/library/curses.html#curses.wrapperX-tr'X platform.distr'(hhX:http://docs.python.org/library/platform.html#platform.distX-tr'X%test.test_support.is_resource_enabledr'(hhXNhttp://docs.python.org/library/test.html#test.test_support.is_resource_enabledX-tr'X ctypes.byrefr'(hhX7http://docs.python.org/library/ctypes.html#ctypes.byrefX-tr'Xplatform.python_buildr'(hhXBhttp://docs.python.org/library/platform.html#platform.python_buildX-tr'Xbinascii.crc_hqxr'(hhX=http://docs.python.org/library/binascii.html#binascii.crc_hqxX-tr'Xinspect.getmembersr'(hhX>http://docs.python.org/library/inspect.html#inspect.getmembersX-tr'Xunicodedata.namer'(hhX@http://docs.python.org/library/unicodedata.html#unicodedata.nameX-tr'Xemail.utils.quoter'(hhX@http://docs.python.org/library/email.util.html#email.utils.quoteX-tr'X string.ljustr'(hhX7http://docs.python.org/library/string.html#string.ljustX-tr'Xstring.splitfieldsr'(hhX=http://docs.python.org/library/string.html#string.splitfieldsX-tr'Xturtle.positionr'(hhX:http://docs.python.org/library/turtle.html#turtle.positionX-tr(Xmimetools.decoder((hhX>http://docs.python.org/library/mimetools.html#mimetools.decodeX-tr(Xctypes.util.find_libraryr((hhXChttp://docs.python.org/library/ctypes.html#ctypes.util.find_libraryX-tr(Xbinascii.rledecode_hqxr((hhXChttp://docs.python.org/library/binascii.html#binascii.rledecode_hqxX-tr(X logging.debugr((hhX9http://docs.python.org/library/logging.html#logging.debugX-tr(Xstringprep.map_table_b3r ((hhXFhttp://docs.python.org/library/stringprep.html#stringprep.map_table_b3X-tr (Xsys.settscdumpr ((hhX6http://docs.python.org/library/sys.html#sys.settscdumpX-tr (Xsyslog.closelogr ((hhX:http://docs.python.org/library/syslog.html#syslog.closelogX-tr(Xfunctools.partialr((hhX?http://docs.python.org/library/functools.html#functools.partialX-tr(X getopt.getoptr((hhX8http://docs.python.org/library/getopt.html#getopt.getoptX-tr(X os.getpidr((hhX0http://docs.python.org/library/os.html#os.getpidX-tr(X cmath.isnanr((hhX5http://docs.python.org/library/cmath.html#cmath.isnanX-tr(Xos.path.splituncr((hhX<http://docs.python.org/library/os.path.html#os.path.splituncX-tr(Xhashr((hhX2http://docs.python.org/library/functions.html#hashX-tr(Xstringprep.in_table_d1r((hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_d1X-tr(X_winreg.DeleteKeyr((hhX=http://docs.python.org/library/_winreg.html#_winreg.DeleteKeyX-tr(Xstringprep.in_table_d2r((hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_d2X-tr (X!distutils.dep_util.newer_pairwiser!((hhXNhttp://docs.python.org/distutils/apiref.html#distutils.dep_util.newer_pairwiseX-tr"(Xurllib.getproxiesr#((hhX<http://docs.python.org/library/urllib.html#urllib.getproxiesX-tr$(Xoperator.lshiftr%((hhX<http://docs.python.org/library/operator.html#operator.lshiftX-tr&(Xtokenize.untokenizer'((hhX@http://docs.python.org/library/tokenize.html#tokenize.untokenizeX-tr((Xcurses.ungetchr)((hhX9http://docs.python.org/library/curses.html#curses.ungetchX-tr*(X pwd.getpwnamr+((hhX4http://docs.python.org/library/pwd.html#pwd.getpwnamX-tr,(Xtraceback.print_excr-((hhXAhttp://docs.python.org/library/traceback.html#traceback.print_excX-tr.(X os.pathconfr/((hhX2http://docs.python.org/library/os.html#os.pathconfX-tr0(X imp.is_frozenr1((hhX5http://docs.python.org/library/imp.html#imp.is_frozenX-tr2(Xturtle.showturtler3((hhX<http://docs.python.org/library/turtle.html#turtle.showturtleX-tr4(Xlocale.strxfrmr5((hhX9http://docs.python.org/library/locale.html#locale.strxfrmX-tr6(Xzlib.decompressr7((hhX8http://docs.python.org/library/zlib.html#zlib.decompressX-tr8(X curses.flashr9((hhX7http://docs.python.org/library/curses.html#curses.flashX-tr:(X codecs.openr;((hhX6http://docs.python.org/library/codecs.html#codecs.openX-tr<(Xemail.utils.formataddrr=((hhXEhttp://docs.python.org/library/email.util.html#email.utils.formataddrX-tr>(X math.atanhr?((hhX3http://docs.python.org/library/math.html#math.atanhX-tr@(Xitertools.starmaprA((hhX?http://docs.python.org/library/itertools.html#itertools.starmapX-trB(X string.upperrC((hhX7http://docs.python.org/library/string.html#string.upperX-trD(Xbinascii.rlecode_hqxrE((hhXAhttp://docs.python.org/library/binascii.html#binascii.rlecode_hqxX-trF(Xstring.swapcaserG((hhX:http://docs.python.org/library/string.html#string.swapcaseX-trH(Xitertools.groupbyrI((hhX?http://docs.python.org/library/itertools.html#itertools.groupbyX-trJ(Xctypes.set_conversion_moderK((hhXEhttp://docs.python.org/library/ctypes.html#ctypes.set_conversion_modeX-trL(X+multiprocessing.connection.answer_challengerM((hhX_http://docs.python.org/library/multiprocessing.html#multiprocessing.connection.answer_challengeX-trN(X gettext.findrO((hhX8http://docs.python.org/library/gettext.html#gettext.findX-trP(Xsysconfig.get_pathsrQ((hhXAhttp://docs.python.org/library/sysconfig.html#sysconfig.get_pathsX-trR(Xrandom.betavariaterS((hhX=http://docs.python.org/library/random.html#random.betavariateX-trT(Xoperator.isNumberTyperU((hhXBhttp://docs.python.org/library/operator.html#operator.isNumberTypeX-trV(X os.chrootrW((hhX0http://docs.python.org/library/os.html#os.chrootX-trX(Xaudioop.findfactorrY((hhX>http://docs.python.org/library/audioop.html#audioop.findfactorX-trZ(Xos.path.normpathr[((hhX<http://docs.python.org/library/os.path.html#os.path.normpathX-tr\(Xoperator.__setitem__r]((hhXAhttp://docs.python.org/library/operator.html#operator.__setitem__X-tr^(Xthreading.stack_sizer_((hhXBhttp://docs.python.org/library/threading.html#threading.stack_sizeX-tr`(Xmsvcrt.ungetwchra((hhX:http://docs.python.org/library/msvcrt.html#msvcrt.ungetwchX-trb(Xxml.etree.ElementTree.iselementrc((hhXYhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.iselementX-trd(Xos.path.abspathre((hhX;http://docs.python.org/library/os.path.html#os.path.abspathX-trf(X MacOS.SysBeeprg((hhX7http://docs.python.org/library/macos.html#MacOS.SysBeepX-trh(X imghdr.whatri((hhX6http://docs.python.org/library/imghdr.html#imghdr.whatX-trj(X string.indexrk((hhX7http://docs.python.org/library/string.html#string.indexX-trl(Xcodecs.ignore_errorsrm((hhX?http://docs.python.org/library/codecs.html#codecs.ignore_errorsX-trn(Xlogging.config.dictConfigro((hhXLhttp://docs.python.org/library/logging.config.html#logging.config.dictConfigX-trp(Xcodecs.getincrementalencoderrq((hhXGhttp://docs.python.org/library/codecs.html#codecs.getincrementalencoderX-trr(Ximaplib.ParseFlagsrs((hhX>http://docs.python.org/library/imaplib.html#imaplib.ParseFlagsX-trt(X turtle.penupru((hhX7http://docs.python.org/library/turtle.html#turtle.penupX-trv(Xlocale.resetlocalerw((hhX=http://docs.python.org/library/locale.html#locale.resetlocaleX-trx(Xslicery((hhX3http://docs.python.org/library/functions.html#sliceX-trz(X os.getenvr{((hhX0http://docs.python.org/library/os.html#os.getenvX-tr|(Xturtle.onscreenclickr}((hhX?http://docs.python.org/library/turtle.html#turtle.onscreenclickX-tr~(Xevalr((hhX2http://docs.python.org/library/functions.html#evalX-tr(Xoperator.__pow__r((hhX=http://docs.python.org/library/operator.html#operator.__pow__X-tr(Xoperator.__irepeat__r((hhXAhttp://docs.python.org/library/operator.html#operator.__irepeat__X-tr(Xcurses.has_colorsr((hhX<http://docs.python.org/library/curses.html#curses.has_colorsX-tr(Xcsv.list_dialectsr((hhX9http://docs.python.org/library/csv.html#csv.list_dialectsX-tr(Xturtle.pensizer((hhX9http://docs.python.org/library/turtle.html#turtle.pensizeX-tr(Xcurses.ascii.isxdigitr((hhXFhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isxdigitX-tr(Xoperator.__mod__r((hhX=http://docs.python.org/library/operator.html#operator.__mod__X-tr(Xdifflib.get_close_matchesr((hhXEhttp://docs.python.org/library/difflib.html#difflib.get_close_matchesX-tr(Xweakref.getweakrefsr((hhX?http://docs.python.org/library/weakref.html#weakref.getweakrefsX-tr(Xthread.allocate_lockr((hhX?http://docs.python.org/library/thread.html#thread.allocate_lockX-tr(Xcurses.resizetermr((hhX<http://docs.python.org/library/curses.html#curses.resizetermX-tr(Xos.path.splitdriver((hhX>http://docs.python.org/library/os.path.html#os.path.splitdriveX-tr(Xsocket.getdefaulttimeoutr((hhXChttp://docs.python.org/library/socket.html#socket.getdefaulttimeoutX-tr(Xlogging.warningr((hhX;http://docs.python.org/library/logging.html#logging.warningX-tr(Xos.mknodr((hhX/http://docs.python.org/library/os.html#os.mknodX-tr(X os.WCOREDUMPr((hhX3http://docs.python.org/library/os.html#os.WCOREDUMPX-tr(Xctypes.POINTERr((hhX9http://docs.python.org/library/ctypes.html#ctypes.POINTERX-tr(Xrandom.jumpaheadr((hhX;http://docs.python.org/library/random.html#random.jumpaheadX-tr(X fm.enumerater((hhX3http://docs.python.org/library/fm.html#fm.enumerateX-tr(Xreadline.get_completion_typer((hhXIhttp://docs.python.org/library/readline.html#readline.get_completion_typeX-tr(Xcompiler.parser((hhX;http://docs.python.org/library/compiler.html#compiler.parseX-tr(Xctypes.addressofr((hhX;http://docs.python.org/library/ctypes.html#ctypes.addressofX-tr(Xshutil.copytreer((hhX:http://docs.python.org/library/shutil.html#shutil.copytreeX-tr(Xcodecs.xmlcharrefreplace_errorsr((hhXJhttp://docs.python.org/library/codecs.html#codecs.xmlcharrefreplace_errorsX-tr(Xoperator.countOfr((hhX=http://docs.python.org/library/operator.html#operator.countOfX-tr(X os.fchdirr((hhX0http://docs.python.org/library/os.html#os.fchdirX-tr(X fpformat.fixr((hhX9http://docs.python.org/library/fpformat.html#fpformat.fixX-tr(Ximp.new_moduler((hhX6http://docs.python.org/library/imp.html#imp.new_moduleX-tr(Xlogging.disabler((hhX;http://docs.python.org/library/logging.html#logging.disableX-tr(X_winreg.DeleteKeyExr((hhX?http://docs.python.org/library/_winreg.html#_winreg.DeleteKeyExX-tr(Xmimetypes.guess_typer((hhXBhttp://docs.python.org/library/mimetypes.html#mimetypes.guess_typeX-tr(X curses.norawr((hhX7http://docs.python.org/library/curses.html#curses.norawX-tr(Xcreate_shortcutr((hhX?http://docs.python.org/distutils/builtdist.html#create_shortcutX-tr(X cmath.asinhr((hhX5http://docs.python.org/library/cmath.html#cmath.asinhX-tr(Xsunaudiodev.openr((hhX=http://docs.python.org/library/sunaudio.html#sunaudiodev.openX-tr(Xturtle.resetscreenr((hhX=http://docs.python.org/library/turtle.html#turtle.resetscreenX-tr(Xlocale.strcollr((hhX9http://docs.python.org/library/locale.html#locale.strcollX-tr(Xbinascii.a2b_uur((hhX<http://docs.python.org/library/binascii.html#binascii.a2b_uuX-tr(Xinspect.getargspecr((hhX>http://docs.python.org/library/inspect.html#inspect.getargspecX-tr(u(Xgc.get_objectsr((hhX5http://docs.python.org/library/gc.html#gc.get_objectsX-tr(X al.newconfigr((hhX3http://docs.python.org/library/al.html#al.newconfigX-tr(Xturtle.turtlesizer((hhX<http://docs.python.org/library/turtle.html#turtle.turtlesizeX-tr(X string.findr((hhX6http://docs.python.org/library/string.html#string.findX-tr(X gc.get_debugr((hhX3http://docs.python.org/library/gc.html#gc.get_debugX-tr(Xxml.sax.saxutils.unescaper((hhXKhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutils.unescapeX-tr(Xctypes.alignmentr((hhX;http://docs.python.org/library/ctypes.html#ctypes.alignmentX-tr(Xctypes.FormatErrorr((hhX=http://docs.python.org/library/ctypes.html#ctypes.FormatErrorX-tr(Xoperator.__index__r((hhX?http://docs.python.org/library/operator.html#operator.__index__X-tr(X os.putenvr((hhX0http://docs.python.org/library/os.html#os.putenvX-tr(Xresource.getrusager((hhX?http://docs.python.org/library/resource.html#resource.getrusageX-tr(X os.spawnvr((hhX0http://docs.python.org/library/os.html#os.spawnvX-tr(Xssl.DER_cert_to_PEM_certr((hhX@http://docs.python.org/library/ssl.html#ssl.DER_cert_to_PEM_certX-tr(Xturtle.hideturtler((hhX<http://docs.python.org/library/turtle.html#turtle.hideturtleX-tr(Xbisect.insort_leftr((hhX=http://docs.python.org/library/bisect.html#bisect.insort_leftX-tr(Xstring.maketransr((hhX;http://docs.python.org/library/string.html#string.maketransX-tr(X os.renamer((hhX0http://docs.python.org/library/os.html#os.renameX-tr(Xio.openr((hhX.http://docs.python.org/library/io.html#io.openX-tr(Xemail.encoders.encode_quoprir((hhXOhttp://docs.python.org/library/email.encoders.html#email.encoders.encode_quopriX-tr(Xcurses.mouseintervalr((hhX?http://docs.python.org/library/curses.html#curses.mouseintervalX-tr(Xdistutils.file_util.move_filer((hhXJhttp://docs.python.org/distutils/apiref.html#distutils.file_util.move_fileX-tr(Xthreading.activeCountr((hhXChttp://docs.python.org/library/threading.html#threading.activeCountX-tr(Xos.path.getmtimer((hhX<http://docs.python.org/library/os.path.html#os.path.getmtimeX-tr(Xcurses.ascii.isctrlr((hhXDhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isctrlX-tr(Xweakref.getweakrefcountr((hhXChttp://docs.python.org/library/weakref.html#weakref.getweakrefcountX-tr)X timeit.timeitr)(hhX8http://docs.python.org/library/timeit.html#timeit.timeitX-tr)Xitertools.imapr)(hhX<http://docs.python.org/library/itertools.html#itertools.imapX-tr)Xturtle.get_polyr)(hhX:http://docs.python.org/library/turtle.html#turtle.get_polyX-tr)Xrandom.gammavariater)(hhX>http://docs.python.org/library/random.html#random.gammavariateX-tr)X fl.mapcolorr )(hhX2http://docs.python.org/library/fl.html#fl.mapcolorX-tr )Xiterr )(hhX2http://docs.python.org/library/functions.html#iterX-tr )Xstring.joinfieldsr )(hhX<http://docs.python.org/library/string.html#string.joinfieldsX-tr)X os.lchmodr)(hhX0http://docs.python.org/library/os.html#os.lchmodX-tr)Xhasattrr)(hhX5http://docs.python.org/library/functions.html#hasattrX-tr)X csv.readerr)(hhX2http://docs.python.org/library/csv.html#csv.readerX-tr)Xturtle.setheadingr)(hhX<http://docs.python.org/library/turtle.html#turtle.setheadingX-tr)Xsys.getdefaultencodingr)(hhX>http://docs.python.org/library/sys.html#sys.getdefaultencodingX-tr)Xcalendar.calendarr)(hhX>http://docs.python.org/library/calendar.html#calendar.calendarX-tr)Xroundr)(hhX3http://docs.python.org/library/functions.html#roundX-tr)Xdirr)(hhX1http://docs.python.org/library/functions.html#dirX-tr)Xdistutils.util.change_rootr)(hhXGhttp://docs.python.org/distutils/apiref.html#distutils.util.change_rootX-tr )Xmath.powr!)(hhX1http://docs.python.org/library/math.html#math.powX-tr")Xmultiprocessing.cpu_countr#)(hhXMhttp://docs.python.org/library/multiprocessing.html#multiprocessing.cpu_countX-tr$)Xrandom.paretovariater%)(hhX?http://docs.python.org/library/random.html#random.paretovariateX-tr&)X#readline.get_current_history_lengthr')(hhXPhttp://docs.python.org/library/readline.html#readline.get_current_history_lengthX-tr()X math.fsumr))(hhX2http://docs.python.org/library/math.html#math.fsumX-tr*)Xoperator.__xor__r+)(hhX=http://docs.python.org/library/operator.html#operator.__xor__X-tr,)Xlocale.localeconvr-)(hhX<http://docs.python.org/library/locale.html#locale.localeconvX-tr.)Xlogging.shutdownr/)(hhX<http://docs.python.org/library/logging.html#logging.shutdownX-tr0)X os.mkfifor1)(hhX0http://docs.python.org/library/os.html#os.mkfifoX-tr2)Xre.subnr3)(hhX.http://docs.python.org/library/re.html#re.subnX-tr4)Xstruct.calcsizer5)(hhX:http://docs.python.org/library/struct.html#struct.calcsizeX-tr6)X os.waitpidr7)(hhX1http://docs.python.org/library/os.html#os.waitpidX-tr8)Xnis.get_default_domainr9)(hhX>http://docs.python.org/library/nis.html#nis.get_default_domainX-tr:)Xitertools.izipr;)(hhX<http://docs.python.org/library/itertools.html#itertools.izipX-tr<)Xfl.show_choicer=)(hhX5http://docs.python.org/library/fl.html#fl.show_choiceX-tr>)Xfileinput.hook_compressedr?)(hhXGhttp://docs.python.org/library/fileinput.html#fileinput.hook_compressedX-tr@)X_winreg.QueryValueExrA)(hhX@http://docs.python.org/library/_winreg.html#_winreg.QueryValueExX-trB)X test.test_support.check_warningsrC)(hhXIhttp://docs.python.org/library/test.html#test.test_support.check_warningsX-trD)X curses.setsyxrE)(hhX8http://docs.python.org/library/curses.html#curses.setsyxX-trF)Xrandom.expovariaterG)(hhX=http://docs.python.org/library/random.html#random.expovariateX-trH)Xfuture_builtins.filterrI)(hhXJhttp://docs.python.org/library/future_builtins.html#future_builtins.filterX-trJ)X os.WTERMSIGrK)(hhX2http://docs.python.org/library/os.html#os.WTERMSIGX-trL)Xdoctest.DocFileSuiterM)(hhX@http://docs.python.org/library/doctest.html#doctest.DocFileSuiteX-trN)X gzip.openrO)(hhX2http://docs.python.org/library/gzip.html#gzip.openX-trP)Xinspect.ismemberdescriptorrQ)(hhXFhttp://docs.python.org/library/inspect.html#inspect.ismemberdescriptorX-trR)X winsound.BeeprS)(hhX:http://docs.python.org/library/winsound.html#winsound.BeepX-trT)X gl.pwlcurverU)(hhX2http://docs.python.org/library/gl.html#gl.pwlcurveX-trV)X zlib.adler32rW)(hhX5http://docs.python.org/library/zlib.html#zlib.adler32X-trX)Xbinascii.a2b_hqxrY)(hhX=http://docs.python.org/library/binascii.html#binascii.a2b_hqxX-trZ)Xcolorsys.rgb_to_hsvr[)(hhX@http://docs.python.org/library/colorsys.html#colorsys.rgb_to_hsvX-tr\)Xtest.test_support.findfiler])(hhXChttp://docs.python.org/library/test.html#test.test_support.findfileX-tr^)Xoperator.ilshiftr_)(hhX=http://docs.python.org/library/operator.html#operator.ilshiftX-tr`)Xstruct.pack_intora)(hhX;http://docs.python.org/library/struct.html#struct.pack_intoX-trb)Xxml.etree.ElementTree.tostringrc)(hhXXhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.tostringX-trd)X json.dumpsre)(hhX3http://docs.python.org/library/json.html#json.dumpsX-trf)X pwd.getpwuidrg)(hhX4http://docs.python.org/library/pwd.html#pwd.getpwuidX-trh)Xmath.factorialri)(hhX7http://docs.python.org/library/math.html#math.factorialX-trj)Xinspect.getsourcelinesrk)(hhXBhttp://docs.python.org/library/inspect.html#inspect.getsourcelinesX-trl)Xxmlrpclib.dumpsrm)(hhX=http://docs.python.org/library/xmlrpclib.html#xmlrpclib.dumpsX-trn)Xgc.get_referrersro)(hhX7http://docs.python.org/library/gc.html#gc.get_referrersX-trp)Xsysconfig.get_platformrq)(hhXDhttp://docs.python.org/library/sysconfig.html#sysconfig.get_platformX-trr)X socket.fromfdrs)(hhX8http://docs.python.org/library/socket.html#socket.fromfdX-trt)X curses.cbreakru)(hhX8http://docs.python.org/library/curses.html#curses.cbreakX-trv)Xparser.tuple2strw)(hhX:http://docs.python.org/library/parser.html#parser.tuple2stX-trx)X os.getgroupsry)(hhX3http://docs.python.org/library/os.html#os.getgroupsX-trz)Xlogging.captureWarningsr{)(hhXChttp://docs.python.org/library/logging.html#logging.captureWarningsX-tr|)X os.setresgidr})(hhX3http://docs.python.org/library/os.html#os.setresgidX-tr~)Xbinascii.b2a_hqxr)(hhX=http://docs.python.org/library/binascii.html#binascii.b2a_hqxX-tr)X staticmethodr)(hhX:http://docs.python.org/library/functions.html#staticmethodX-tr)X rfc822.quoter)(hhX7http://docs.python.org/library/rfc822.html#rfc822.quoteX-tr)Xcurses.panel.top_panelr)(hhXGhttp://docs.python.org/library/curses.panel.html#curses.panel.top_panelX-tr)Xplatform.processorr)(hhX?http://docs.python.org/library/platform.html#platform.processorX-tr)Xoperator.__itruediv__r)(hhXBhttp://docs.python.org/library/operator.html#operator.__itruediv__X-tr)X wave.openfpr)(hhX4http://docs.python.org/library/wave.html#wave.openfpX-tr)Xoperator.__ior__r)(hhX=http://docs.python.org/library/operator.html#operator.__ior__X-tr)Xplistlib.readPlistr)(hhX?http://docs.python.org/library/plistlib.html#plistlib.readPlistX-tr)Xzlib.decompressobjr)(hhX;http://docs.python.org/library/zlib.html#zlib.decompressobjX-tr)Xcurses.resize_termr)(hhX=http://docs.python.org/library/curses.html#curses.resize_termX-tr)Xsocket.gethostbynamer)(hhX?http://docs.python.org/library/socket.html#socket.gethostbynameX-tr)Xcurses.nocbreakr)(hhX:http://docs.python.org/library/curses.html#curses.nocbreakX-tr)X os.accessr)(hhX0http://docs.python.org/library/os.html#os.accessX-tr)X time.strftimer)(hhX6http://docs.python.org/library/time.html#time.strftimeX-tr)Xcurses.setuptermr)(hhX;http://docs.python.org/library/curses.html#curses.setuptermX-tr)Xwarnings.simplefilterr)(hhXBhttp://docs.python.org/library/warnings.html#warnings.simplefilterX-tr)Xtoken.ISNONTERMINALr)(hhX=http://docs.python.org/library/token.html#token.ISNONTERMINALX-tr)Xdivmodr)(hhX4http://docs.python.org/library/functions.html#divmodX-tr)Xapplyr)(hhX3http://docs.python.org/library/functions.html#applyX-tr)Xsys.exitr)(hhX0http://docs.python.org/library/sys.html#sys.exitX-tr)Xxml.etree.ElementTree.dumpr)(hhXThttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.dumpX-tr)X fm.setpathr)(hhX1http://docs.python.org/library/fm.html#fm.setpathX-tr)X os.tcgetpgrpr)(hhX3http://docs.python.org/library/os.html#os.tcgetpgrpX-tr)Xzipr)(hhX1http://docs.python.org/library/functions.html#zipX-tr)X audioop.mulr)(hhX7http://docs.python.org/library/audioop.html#audioop.mulX-tr)Xlocale.normalizer)(hhX;http://docs.python.org/library/locale.html#locale.normalizeX-tr)Ximaplib.Time2Internaldater)(hhXEhttp://docs.python.org/library/imaplib.html#imaplib.Time2InternaldateX-tr)Xchrr)(hhX1http://docs.python.org/library/functions.html#chrX-tr)Xkeyword.iskeywordr)(hhX=http://docs.python.org/library/keyword.html#keyword.iskeywordX-tr)Xreadline.get_begidxr)(hhX@http://docs.python.org/library/readline.html#readline.get_begidxX-tr)Xast.copy_locationr)(hhX9http://docs.python.org/library/ast.html#ast.copy_locationX-tr)X fl.qdevicer)(hhX1http://docs.python.org/library/fl.html#fl.qdeviceX-tr)Xwsgiref.util.request_urir)(hhXDhttp://docs.python.org/library/wsgiref.html#wsgiref.util.request_uriX-tr)Ximp.init_frozenr)(hhX7http://docs.python.org/library/imp.html#imp.init_frozenX-tr)Xgettext.bind_textdomain_codesetr)(hhXKhttp://docs.python.org/library/gettext.html#gettext.bind_textdomain_codesetX-tr)Xmultiprocessing.set_executabler)(hhXRhttp://docs.python.org/library/multiprocessing.html#multiprocessing.set_executableX-tr)X grp.getgrgidr)(hhX4http://docs.python.org/library/grp.html#grp.getgrgidX-tr)Xsubprocess.check_outputr)(hhXFhttp://docs.python.org/library/subprocess.html#subprocess.check_outputX-tr)X turtle.resetr)(hhX7http://docs.python.org/library/turtle.html#turtle.resetX-tr)Xcalendar.prcalr)(hhX;http://docs.python.org/library/calendar.html#calendar.prcalX-tr)X gdbm.nextkeyr)(hhX5http://docs.python.org/library/gdbm.html#gdbm.nextkeyX-tr)Xemail.utils.encode_rfc2231r)(hhXIhttp://docs.python.org/library/email.util.html#email.utils.encode_rfc2231X-tr)X cgitb.enabler)(hhX6http://docs.python.org/library/cgitb.html#cgitb.enableX-tr)X pickle.dumpsr)(hhX7http://docs.python.org/library/pickle.html#pickle.dumpsX-tr)Xplatform.versionr)(hhX=http://docs.python.org/library/platform.html#platform.versionX-tr)Xinspect.getfiler)(hhX;http://docs.python.org/library/inspect.html#inspect.getfileX-tr)Xtempfile.TemporaryFiler)(hhXChttp://docs.python.org/library/tempfile.html#tempfile.TemporaryFileX-tr)Xcommands.getstatusr)(hhX?http://docs.python.org/library/commands.html#commands.getstatusX-tr)Xcurses.is_term_resizedr)(hhXAhttp://docs.python.org/library/curses.html#curses.is_term_resizedX-tr)X select.selectr)(hhX8http://docs.python.org/library/select.html#select.selectX-tr)Xast.dumpr)(hhX0http://docs.python.org/library/ast.html#ast.dumpX-tr)Xemail.charset.add_codecr)(hhXIhttp://docs.python.org/library/email.charset.html#email.charset.add_codecX-tr)Xcoercer)(hhX4http://docs.python.org/library/functions.html#coerceX-tr)X time.tzsetr)(hhX3http://docs.python.org/library/time.html#time.tzsetX-tr)Xsocket.getprotobynamer)(hhX@http://docs.python.org/library/socket.html#socket.getprotobynameX-tr)X msvcrt.kbhitr)(hhX7http://docs.python.org/library/msvcrt.html#msvcrt.kbhitX-tr)Xgettext.lgettextr)(hhX<http://docs.python.org/library/gettext.html#gettext.lgettextX-tr)X select.keventr)(hhX8http://docs.python.org/library/select.html#select.keventX-tr)Xemail.utils.decode_rfc2231r)(hhXIhttp://docs.python.org/library/email.util.html#email.utils.decode_rfc2231X-tr)Xal.queryparamsr)(hhX5http://docs.python.org/library/al.html#al.queryparamsX-tr)Xmsvcrt.setmoder)(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.setmodeX-tr)X grp.getgrallr)(hhX4http://docs.python.org/library/grp.html#grp.getgrallX-tr)X shlex.splitr)(hhX5http://docs.python.org/library/shlex.html#shlex.splitX-tr)X cmath.rectr)(hhX4http://docs.python.org/library/cmath.html#cmath.rectX-tr*X random.gaussr*(hhX7http://docs.python.org/library/random.html#random.gaussX-tr*X fcntl.fcntlr*(hhX5http://docs.python.org/library/fcntl.html#fcntl.fcntlX-tr*Xinspect.istracebackr*(hhX?http://docs.python.org/library/inspect.html#inspect.istracebackX-tr*Xturtle.fillcolorr*(hhX;http://docs.python.org/library/turtle.html#turtle.fillcolorX-tr*X math.coshr *(hhX2http://docs.python.org/library/math.html#math.coshX-tr *X os.getegidr *(hhX1http://docs.python.org/library/os.html#os.getegidX-tr *Xoperator.__ifloordiv__r *(hhXChttp://docs.python.org/library/operator.html#operator.__ifloordiv__X-tr*Xnis.catr*(hhX/http://docs.python.org/library/nis.html#nis.catX-tr*X!xml.dom.registerDOMImplementationr*(hhXMhttp://docs.python.org/library/xml.dom.html#xml.dom.registerDOMImplementationX-tr*Xreadline.get_completer_delimsr*(hhXJhttp://docs.python.org/library/readline.html#readline.get_completer_delimsX-tr*Xxml.parsers.expat.ParserCreater*(hhXJhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.ParserCreateX-tr*X_winreg.ConnectRegistryr*(hhXChttp://docs.python.org/library/_winreg.html#_winreg.ConnectRegistryX-tr*X os.tmpfiler*(hhX1http://docs.python.org/library/os.html#os.tmpfileX-tr*Xbinascii.b2a_base64r*(hhX@http://docs.python.org/library/binascii.html#binascii.b2a_base64X-tr*Xsys._current_framesr*(hhX;http://docs.python.org/library/sys.html#sys._current_framesX-tr*Xturtle.towardsr*(hhX9http://docs.python.org/library/turtle.html#turtle.towardsX-tr *X gl.nurbscurver!*(hhX4http://docs.python.org/library/gl.html#gl.nurbscurveX-tr"*Xwarnings.formatwarningr#*(hhXChttp://docs.python.org/library/warnings.html#warnings.formatwarningX-tr$*X gl.varrayr%*(hhX0http://docs.python.org/library/gl.html#gl.varrayX-tr&*Xinspect.formatargvaluesr'*(hhXChttp://docs.python.org/library/inspect.html#inspect.formatargvaluesX-tr(*Xmimetypes.read_mime_typesr)*(hhXGhttp://docs.python.org/library/mimetypes.html#mimetypes.read_mime_typesX-tr**Xemail.utils.unquoter+*(hhXBhttp://docs.python.org/library/email.util.html#email.utils.unquoteX-tr,*Xcompileall.compile_pathr-*(hhXFhttp://docs.python.org/library/compileall.html#compileall.compile_pathX-tr.*Xos.plockr/*(hhX/http://docs.python.org/library/os.html#os.plockX-tr0*Xsys.call_tracingr1*(hhX8http://docs.python.org/library/sys.html#sys.call_tracingX-tr2*Xfunctools.wrapsr3*(hhX=http://docs.python.org/library/functools.html#functools.wrapsX-tr4*XMacOS.GetTicksr5*(hhX8http://docs.python.org/library/macos.html#MacOS.GetTicksX-tr6*Xcsv.unregister_dialectr7*(hhX>http://docs.python.org/library/csv.html#csv.unregister_dialectX-tr8*Xtest.test_support.import_moduler9*(hhXHhttp://docs.python.org/library/test.html#test.test_support.import_moduleX-tr:*X turtle.bgpicr;*(hhX7http://docs.python.org/library/turtle.html#turtle.bgpicX-tr<*X wave.openr=*(hhX2http://docs.python.org/library/wave.html#wave.openX-tr>*X operator.ltr?*(hhX8http://docs.python.org/library/operator.html#operator.ltX-tr@*Xaetools.unpackeventrA*(hhX?http://docs.python.org/library/aetools.html#aetools.unpackeventX-trB*Xmsvcrt.open_osfhandlerC*(hhX@http://docs.python.org/library/msvcrt.html#msvcrt.open_osfhandleX-trD*Xcodeop.compile_commandrE*(hhXAhttp://docs.python.org/library/codeop.html#codeop.compile_commandX-trF*Xfl.set_event_call_backrG*(hhX=http://docs.python.org/library/fl.html#fl.set_event_call_backX-trH*X gdbm.syncrI*(hhX2http://docs.python.org/library/gdbm.html#gdbm.syncX-trJ*Xplatform.linux_distributionrK*(hhXHhttp://docs.python.org/library/platform.html#platform.linux_distributionX-trL*XMacOS.GetCreatorAndTyperM*(hhXAhttp://docs.python.org/library/macos.html#MacOS.GetCreatorAndTypeX-trN*Xthreading.enumeraterO*(hhXAhttp://docs.python.org/library/threading.html#threading.enumerateX-trP*Xcolorsys.yiq_to_rgbrQ*(hhX@http://docs.python.org/library/colorsys.html#colorsys.yiq_to_rgbX-trR*Xdistutils.util.convert_pathrS*(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.util.convert_pathX-trT*XmaxrU*(hhX1http://docs.python.org/library/functions.html#maxX-trV*Xlogging.makeLogRecordrW*(hhXAhttp://docs.python.org/library/logging.html#logging.makeLogRecordX-trX*Xfnmatch.translaterY*(hhX=http://docs.python.org/library/fnmatch.html#fnmatch.translateX-trZ*Xgetpass.getuserr[*(hhX;http://docs.python.org/library/getpass.html#getpass.getuserX-tr\*X_winreg.SaveKeyr]*(hhX;http://docs.python.org/library/_winreg.html#_winreg.SaveKeyX-tr^*Xturtle.end_polyr_*(hhX:http://docs.python.org/library/turtle.html#turtle.end_polyX-tr`*Xheapq.nsmallestra*(hhX9http://docs.python.org/library/heapq.html#heapq.nsmallestX-trb*X csv.writerrc*(hhX2http://docs.python.org/library/csv.html#csv.writerX-trd*Xoperator.getitemre*(hhX=http://docs.python.org/library/operator.html#operator.getitemX-trf*X'itertools.combinations_with_replacementrg*(hhXUhttp://docs.python.org/library/itertools.html#itertools.combinations_with_replacementX-trh*Xtraceback.format_stackri*(hhXDhttp://docs.python.org/library/traceback.html#traceback.format_stackX-trj*X math.isinfrk*(hhX3http://docs.python.org/library/math.html#math.isinfX-trl*X string.splitrm*(hhX7http://docs.python.org/library/string.html#string.splitX-trn*Xos.forkro*(hhX.http://docs.python.org/library/os.html#os.forkX-trp*Xturtle.headingrq*(hhX9http://docs.python.org/library/turtle.html#turtle.headingX-trr*Xgettext.ldgettextrs*(hhX=http://docs.python.org/library/gettext.html#gettext.ldgettextX-trt*X os.closerangeru*(hhX4http://docs.python.org/library/os.html#os.closerangeX-trv*Xinspect.iscoderw*(hhX:http://docs.python.org/library/inspect.html#inspect.iscodeX-trx*X cmath.atanry*(hhX4http://docs.python.org/library/cmath.html#cmath.atanX-trz*Xsqlite3.complete_statementr{*(hhXFhttp://docs.python.org/library/sqlite3.html#sqlite3.complete_statementX-tr|*X turtle.stampr}*(hhX7http://docs.python.org/library/turtle.html#turtle.stampX-tr~*Xgc.get_referentsr*(hhX7http://docs.python.org/library/gc.html#gc.get_referentsX-tr*X aifc.openr*(hhX2http://docs.python.org/library/aifc.html#aifc.openX-tr*Xlogging.exceptionr*(hhX=http://docs.python.org/library/logging.html#logging.exceptionX-tr*X os.lchflagsr*(hhX2http://docs.python.org/library/os.html#os.lchflagsX-tr*Xfnmatch.fnmatchcaser*(hhX?http://docs.python.org/library/fnmatch.html#fnmatch.fnmatchcaseX-tr*Xunicodedata.combiningr*(hhXEhttp://docs.python.org/library/unicodedata.html#unicodedata.combiningX-tr*X turtle.homer*(hhX6http://docs.python.org/library/turtle.html#turtle.homeX-tr*X math.fmodr*(hhX2http://docs.python.org/library/math.html#math.fmodX-tr*Xlogging.addLevelNamer*(hhX@http://docs.python.org/library/logging.html#logging.addLevelNameX-tr*Ximp.acquire_lockr*(hhX8http://docs.python.org/library/imp.html#imp.acquire_lockX-tr*Xitertools.countr*(hhX=http://docs.python.org/library/itertools.html#itertools.countX-tr*X imageop.scaler*(hhX9http://docs.python.org/library/imageop.html#imageop.scaleX-tr*Xbinascii.b2a_qpr*(hhX<http://docs.python.org/library/binascii.html#binascii.b2a_qpX-tr*Xoperator.__eq__r*(hhX<http://docs.python.org/library/operator.html#operator.__eq__X-tr*X os.makedirsr*(hhX2http://docs.python.org/library/os.html#os.makedirsX-tr*Xctypes.DllCanUnloadNowr*(hhXAhttp://docs.python.org/library/ctypes.html#ctypes.DllCanUnloadNowX-tr*Ximageop.grey22greyr*(hhX>http://docs.python.org/library/imageop.html#imageop.grey22greyX-tr*X turtle.rtr*(hhX4http://docs.python.org/library/turtle.html#turtle.rtX-tr*X math.hypotr*(hhX3http://docs.python.org/library/math.html#math.hypotX-tr*Xreadline.read_init_filer*(hhXDhttp://docs.python.org/library/readline.html#readline.read_init_fileX-tr*Xmimetypes.initr*(hhX<http://docs.python.org/library/mimetypes.html#mimetypes.initX-tr*Xos.WEXITSTATUSr*(hhX5http://docs.python.org/library/os.html#os.WEXITSTATUSX-tr*Xoperator.__delitem__r*(hhXAhttp://docs.python.org/library/operator.html#operator.__delitem__X-tr*Xcurses.delay_outputr*(hhX>http://docs.python.org/library/curses.html#curses.delay_outputX-tr*X cd.msftoframer*(hhX4http://docs.python.org/library/cd.html#cd.msftoframeX-tr*Xitertools.repeatr*(hhX>http://docs.python.org/library/itertools.html#itertools.repeatX-tr*X os.getgidr*(hhX0http://docs.python.org/library/os.html#os.getgidX-tr*Xaudioop.tomonor*(hhX:http://docs.python.org/library/audioop.html#audioop.tomonoX-tr*Xoperator.setslicer*(hhX>http://docs.python.org/library/operator.html#operator.setsliceX-tr*X audioop.biasr*(hhX8http://docs.python.org/library/audioop.html#audioop.biasX-tr*Xtermios.tcflowr*(hhX:http://docs.python.org/library/termios.html#termios.tcflowX-tr*X socket.socketr*(hhX8http://docs.python.org/library/socket.html#socket.socketX-tr*Xlocale.setlocaler*(hhX;http://docs.python.org/library/locale.html#locale.setlocaleX-tr*Ximp.get_suffixesr*(hhX8http://docs.python.org/library/imp.html#imp.get_suffixesX-tr*Xcode.compile_commandr*(hhX=http://docs.python.org/library/code.html#code.compile_commandX-tr*X+xml.etree.ElementTree.ProcessingInstructionr*(hhXehttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ProcessingInstructionX-tr*X operator.divr*(hhX9http://docs.python.org/library/operator.html#operator.divX-tr*Xcompileall.compile_filer*(hhXFhttp://docs.python.org/library/compileall.html#compileall.compile_fileX-tr*Xfuture_builtins.asciir*(hhXIhttp://docs.python.org/library/future_builtins.html#future_builtins.asciiX-tr*X os.path.isdirr*(hhX9http://docs.python.org/library/os.path.html#os.path.isdirX-tr*Xgettext.lngettextr*(hhX=http://docs.python.org/library/gettext.html#gettext.lngettextX-tr*Xemail.message_from_stringr*(hhXJhttp://docs.python.org/library/email.parser.html#email.message_from_stringX-tr*Xinspect.cleandocr*(hhX<http://docs.python.org/library/inspect.html#inspect.cleandocX-tr*X popen2.popen3r*(hhX8http://docs.python.org/library/popen2.html#popen2.popen3X-tr*X popen2.popen2r*(hhX8http://docs.python.org/library/popen2.html#popen2.popen2X-tr*X turtle.posr*(hhX5http://docs.python.org/library/turtle.html#turtle.posX-tr*Xsortedr*(hhX4http://docs.python.org/library/functions.html#sortedX-tr*Xwinsound.PlaySoundr*(hhX?http://docs.python.org/library/winsound.html#winsound.PlaySoundX-tr*Xgl.nurbssurfacer*(hhX6http://docs.python.org/library/gl.html#gl.nurbssurfaceX-tr*X os.spawnlpr*(hhX1http://docs.python.org/library/os.html#os.spawnlpX-tr*X fpformat.scir*(hhX9http://docs.python.org/library/fpformat.html#fpformat.sciX-tr*X operator.ner*(hhX8http://docs.python.org/library/operator.html#operator.neX-tr*Xos.path.getctimer*(hhX<http://docs.python.org/library/os.path.html#os.path.getctimeX-tr*Xpkgutil.iter_modulesr*(hhX@http://docs.python.org/library/pkgutil.html#pkgutil.iter_modulesX-tr*X os.spawnler*(hhX1http://docs.python.org/library/os.html#os.spawnleX-tr*X turtle.fillr*(hhX6http://docs.python.org/library/turtle.html#turtle.fillX-tr*X curses.putpr*(hhX6http://docs.python.org/library/curses.html#curses.putpX-tr*Xcgi.parse_headerr*(hhX8http://docs.python.org/library/cgi.html#cgi.parse_headerX-tr*X random.seedr*(hhX6http://docs.python.org/library/random.html#random.seedX-tr*Xunicodedata.normalizer*(hhXEhttp://docs.python.org/library/unicodedata.html#unicodedata.normalizeX-tr*Xdifflib.HtmlDiff.make_filer*(hhXFhttp://docs.python.org/library/difflib.html#difflib.HtmlDiff.make_fileX-tr*XEasyDialogs.AskFileForSaver*(hhXJhttp://docs.python.org/library/easydialogs.html#EasyDialogs.AskFileForSaveX-tr*Xinspect.ismethoddescriptorr*(hhXFhttp://docs.python.org/library/inspect.html#inspect.ismethoddescriptorX-tr*X new.moduler*(hhX2http://docs.python.org/library/new.html#new.moduleX-tr*X time.gmtimer*(hhX4http://docs.python.org/library/time.html#time.gmtimeX-tr+X fl.show_inputr+(hhX4http://docs.python.org/library/fl.html#fl.show_inputX-tr+Xmapr+(hhX1http://docs.python.org/library/functions.html#mapX-tr+X#wsgiref.util.setup_testing_defaultsr+(hhXOhttp://docs.python.org/library/wsgiref.html#wsgiref.util.setup_testing_defaultsX-tr+Xsubprocess.callr+(hhX>http://docs.python.org/library/subprocess.html#subprocess.callX-tr+Xcodecs.EncodedFiler +(hhX=http://docs.python.org/library/codecs.html#codecs.EncodedFileX-tr +Xrandom.vonmisesvariater +(hhXAhttp://docs.python.org/library/random.html#random.vonmisesvariateX-tr +Xcompiler.compileFiler +(hhXAhttp://docs.python.org/library/compiler.html#compiler.compileFileX-tr+Xos.path.samestatr+(hhX<http://docs.python.org/library/os.path.html#os.path.samestatX-tr+Xcsv.field_size_limitr+(hhX<http://docs.python.org/library/csv.html#csv.field_size_limitX-tr+X os.seteuidr+(hhX1http://docs.python.org/library/os.html#os.seteuidX-tr+Xmsvcrt.lockingr+(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.lockingX-tr+X_winreg.CloseKeyr+(hhX<http://docs.python.org/library/_winreg.html#_winreg.CloseKeyX-tr+Xcurses.savettyr+(hhX9http://docs.python.org/library/curses.html#curses.savettyX-tr+X operator.idivr+(hhX:http://docs.python.org/library/operator.html#operator.idivX-tr+Xturtle.begin_fillr+(hhX<http://docs.python.org/library/turtle.html#turtle.begin_fillX-tr+X asyncore.loopr+(hhX:http://docs.python.org/library/asyncore.html#asyncore.loopX-tr +X inspect.stackr!+(hhX9http://docs.python.org/library/inspect.html#inspect.stackX-tr"+Xdis.disr#+(hhX/http://docs.python.org/library/dis.html#dis.disX-tr$+X*distutils.ccompiler.gen_preprocess_optionsr%+(hhXWhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.gen_preprocess_optionsX-tr&+Xbase64.b64decoder'+(hhX;http://docs.python.org/library/base64.html#base64.b64decodeX-tr(+Xmsilib.gen_uuidr)+(hhX:http://docs.python.org/library/msilib.html#msilib.gen_uuidX-tr*+Xsys.setrecursionlimitr++(hhX=http://docs.python.org/library/sys.html#sys.setrecursionlimitX-tr,+X bisect.bisectr-+(hhX8http://docs.python.org/library/bisect.html#bisect.bisectX-tr.+Xdis.findlinestartsr/+(hhX:http://docs.python.org/library/dis.html#dis.findlinestartsX-tr0+Xthread.get_identr1+(hhX;http://docs.python.org/library/thread.html#thread.get_identX-tr2+X shelve.openr3+(hhX6http://docs.python.org/library/shelve.html#shelve.openX-tr4+X os.setuidr5+(hhX0http://docs.python.org/library/os.html#os.setuidX-tr6+X random.choicer7+(hhX8http://docs.python.org/library/random.html#random.choiceX-tr8+Xos.writer9+(hhX/http://docs.python.org/library/os.html#os.writeX-tr:+Xoperator.attrgetterr;+(hhX@http://docs.python.org/library/operator.html#operator.attrgetterX-tr<+Xturtle.settiltangler=+(hhX>http://docs.python.org/library/turtle.html#turtle.settiltangleX-tr>+Xreadline.redisplayr?+(hhX?http://docs.python.org/library/readline.html#readline.redisplayX-tr@+X dbhash.openrA+(hhX6http://docs.python.org/library/dbhash.html#dbhash.openX-trB+X os.ttynamerC+(hhX1http://docs.python.org/library/os.html#os.ttynameX-trD+Xthreading.settracerE+(hhX@http://docs.python.org/library/threading.html#threading.settraceX-trF+XordrG+(hhX1http://docs.python.org/library/functions.html#ordX-trH+X time.ctimerI+(hhX3http://docs.python.org/library/time.html#time.ctimeX-trJ+Xcodecs.iterdecoderK+(hhX<http://docs.python.org/library/codecs.html#codecs.iterdecodeX-trL+Xcgi.print_environ_usagerM+(hhX?http://docs.python.org/library/cgi.html#cgi.print_environ_usageX-trN+Xmd5.newrO+(hhX/http://docs.python.org/library/md5.html#md5.newX-trP+Xwsgiref.util.is_hop_by_hoprQ+(hhXFhttp://docs.python.org/library/wsgiref.html#wsgiref.util.is_hop_by_hopX-trR+Xfileinput.filenorS+(hhX>http://docs.python.org/library/fileinput.html#fileinput.filenoX-trT+Xlocale.getlocalerU+(hhX;http://docs.python.org/library/locale.html#locale.getlocaleX-trV+Xos.timesrW+(hhX/http://docs.python.org/library/os.html#os.timesX-trX+Xfindertools.restartrY+(hhXBhttp://docs.python.org/library/macostools.html#findertools.restartX-trZ+X doctest.set_unittest_reportflagsr[+(hhXLhttp://docs.python.org/library/doctest.html#doctest.set_unittest_reportflagsX-tr\+Xoperator.getslicer]+(hhX>http://docs.python.org/library/operator.html#operator.getsliceX-tr^+X os.systemr_+(hhX0http://docs.python.org/library/os.html#os.systemX-tr`+X thread.exitra+(hhX6http://docs.python.org/library/thread.html#thread.exitX-trb+Xintrc+(hhX1http://docs.python.org/library/functions.html#intX-trd+Xdistutils.util.check_environre+(hhXIhttp://docs.python.org/distutils/apiref.html#distutils.util.check_environX-trf+Xlogging.config.fileConfigrg+(hhXLhttp://docs.python.org/library/logging.config.html#logging.config.fileConfigX-trh+Xcurses.ascii.isblankri+(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isblankX-trj+X"sqlite3.enable_callback_tracebacksrk+(hhXNhttp://docs.python.org/library/sqlite3.html#sqlite3.enable_callback_tracebacksX-trl+Xtermios.tcgetattrrm+(hhX=http://docs.python.org/library/termios.html#termios.tcgetattrX-trn+Xoperator.__iconcat__ro+(hhXAhttp://docs.python.org/library/operator.html#operator.__iconcat__X-trp+X"xml.etree.ElementTree.tostringlistrq+(hhX\http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.tostringlistX-trr+X os.isattyrs+(hhX0http://docs.python.org/library/os.html#os.isattyX-trt+Xplatform.python_revisionru+(hhXEhttp://docs.python.org/library/platform.html#platform.python_revisionX-trv+Xoperator.itruedivrw+(hhX>http://docs.python.org/library/operator.html#operator.itruedivX-trx+X audioop.avgry+(hhX7http://docs.python.org/library/audioop.html#audioop.avgX-trz+Xmsilib.UuidCreater{+(hhX<http://docs.python.org/library/msilib.html#msilib.UuidCreateX-tr|+X random.randomr}+(hhX8http://docs.python.org/library/random.html#random.randomX-tr~+Xnew.coder+(hhX0http://docs.python.org/library/new.html#new.codeX-tr+X$xml.etree.ElementTree.fromstringlistr+(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.fromstringlistX-tr+X os.spawnvper+(hhX2http://docs.python.org/library/os.html#os.spawnvpeX-tr+X cmath.logr+(hhX3http://docs.python.org/library/cmath.html#cmath.logX-tr+Xsite.getuserbaser+(hhX9http://docs.python.org/library/site.html#site.getuserbaseX-tr+Xbase64.b32decoder+(hhX;http://docs.python.org/library/base64.html#base64.b32decodeX-tr+Xthread.start_new_threadr+(hhXBhttp://docs.python.org/library/thread.html#thread.start_new_threadX-tr+Xre.matchr+(hhX/http://docs.python.org/library/re.html#re.matchX-tr+X parser.exprr+(hhX6http://docs.python.org/library/parser.html#parser.exprX-tr+Xopenr+(hhX2http://docs.python.org/library/functions.html#openX-tr+X os.remover+(hhX0http://docs.python.org/library/os.html#os.removeX-tr+Xfuture_builtins.hexr+(hhXGhttp://docs.python.org/library/future_builtins.html#future_builtins.hexX-tr+Xbinascii.b2a_hexr+(hhX=http://docs.python.org/library/binascii.html#binascii.b2a_hexX-tr+X turtle.downr+(hhX6http://docs.python.org/library/turtle.html#turtle.downX-tr+X ctypes.memsetr+(hhX8http://docs.python.org/library/ctypes.html#ctypes.memsetX-tr+Xcompileall.compile_dirr+(hhXEhttp://docs.python.org/library/compileall.html#compileall.compile_dirX-tr+XCarbon.Scrap.InfoScrapr+(hhXAhttp://docs.python.org/library/carbon.html#Carbon.Scrap.InfoScrapX-tr+Xos.utimer+(hhX/http://docs.python.org/library/os.html#os.utimeX-tr+Xcalendar.timegmr+(hhX<http://docs.python.org/library/calendar.html#calendar.timegmX-tr+Xreadline.remove_history_itemr+(hhXIhttp://docs.python.org/library/readline.html#readline.remove_history_itemX-tr+Xcgi.print_formr+(hhX6http://docs.python.org/library/cgi.html#cgi.print_formX-tr+X turtle.ondragr+(hhX8http://docs.python.org/library/turtle.html#turtle.ondragX-tr+X bdb.set_tracer+(hhX5http://docs.python.org/library/bdb.html#bdb.set_traceX-tr+X bdb.effectiver+(hhX5http://docs.python.org/library/bdb.html#bdb.effectiveX-tr+Xmsilib.init_databaser+(hhX?http://docs.python.org/library/msilib.html#msilib.init_databaseX-tr+X os.getresgidr+(hhX3http://docs.python.org/library/os.html#os.getresgidX-tr+Xcurses.ascii.isupperr+(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isupperX-tr+Xturtle.register_shaper+(hhX@http://docs.python.org/library/turtle.html#turtle.register_shapeX-tr+Xplatform.popenr+(hhX;http://docs.python.org/library/platform.html#platform.popenX-tr+Xtupler+(hhX3http://docs.python.org/library/functions.html#tupleX-tr+X gc.collectr+(hhX1http://docs.python.org/library/gc.html#gc.collectX-tr+X os.setsidr+(hhX0http://docs.python.org/library/os.html#os.setsidX-tr+Xreversedr+(hhX6http://docs.python.org/library/functions.html#reversedX-tr+Xturtle.write_docstringdictr+(hhXEhttp://docs.python.org/library/turtle.html#turtle.write_docstringdictX-tr+Xfuture_builtins.zipr+(hhXGhttp://docs.python.org/library/future_builtins.html#future_builtins.zipX-tr+Xos.statr+(hhX.http://docs.python.org/library/os.html#os.statX-tr+Xsocket.create_connectionr+(hhXChttp://docs.python.org/library/socket.html#socket.create_connectionX-tr+Xsys.setdlopenflagsr+(hhX:http://docs.python.org/library/sys.html#sys.setdlopenflagsX-tr+Xoperator.__abs__r+(hhX=http://docs.python.org/library/operator.html#operator.__abs__X-tr+Xos.openr+(hhX.http://docs.python.org/library/os.html#os.openX-tr+Xplatform.machiner+(hhX=http://docs.python.org/library/platform.html#platform.machineX-tr+Xurllib.unquoter+(hhX9http://docs.python.org/library/urllib.html#urllib.unquoteX-tr+Xquopri.decodestringr+(hhX>http://docs.python.org/library/quopri.html#quopri.decodestringX-tr+X pipes.quoter+(hhX5http://docs.python.org/library/pipes.html#pipes.quoteX-tr+X textwrap.wrapr+(hhX:http://docs.python.org/library/textwrap.html#textwrap.wrapX-tr+Xcurses.ascii.isasciir+(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isasciiX-tr+Xsignal.setitimerr+(hhX;http://docs.python.org/library/signal.html#signal.setitimerX-tr+Xrandom.setstater+(hhX:http://docs.python.org/library/random.html#random.setstateX-tr+Xturtle.window_heightr+(hhX?http://docs.python.org/library/turtle.html#turtle.window_heightX-tr+X sunau.openr+(hhX4http://docs.python.org/library/sunau.html#sunau.openX-tr+X codecs.decoder+(hhX8http://docs.python.org/library/codecs.html#codecs.decodeX-tr+Xresource.setrlimitr+(hhX?http://docs.python.org/library/resource.html#resource.setrlimitX-tr+Xic.maptypecreatorr+(hhX8http://docs.python.org/library/ic.html#ic.maptypecreatorX-tr+X os.WIFSTOPPEDr+(hhX4http://docs.python.org/library/os.html#os.WIFSTOPPEDX-tr+Xos.WIFCONTINUEDr+(hhX6http://docs.python.org/library/os.html#os.WIFCONTINUEDX-tr+Xreadline.write_history_filer+(hhXHhttp://docs.python.org/library/readline.html#readline.write_history_fileX-tr+Xxml.dom.minidom.parser+(hhXIhttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.parseX-tr+Xcalendar.prmonthr+(hhX=http://docs.python.org/library/calendar.html#calendar.prmonthX-tr+X audioop.addr+(hhX7http://docs.python.org/library/audioop.html#audioop.addX-tr+X os.initgroupsr+(hhX4http://docs.python.org/library/os.html#os.initgroupsX-tr+Xreadline.get_endidxr+(hhX@http://docs.python.org/library/readline.html#readline.get_endidxX-tr+XFrameWork.windowboundsr+(hhXDhttp://docs.python.org/library/framework.html#FrameWork.windowboundsX-tr+Xtempfile.gettempprefixr+(hhXChttp://docs.python.org/library/tempfile.html#tempfile.gettempprefixX-tr+Xinspect.getcallargsr+(hhX?http://docs.python.org/library/inspect.html#inspect.getcallargsX-tr+XFrameWork.MenuBarr+(hhX?http://docs.python.org/library/framework.html#FrameWork.MenuBarX-tr,Xfl.show_file_selectorr,(hhX<http://docs.python.org/library/fl.html#fl.show_file_selectorX-tr,Xget_special_folder_pathr,(hhXGhttp://docs.python.org/distutils/builtdist.html#get_special_folder_pathX-tr,Xbisect.bisect_leftr,(hhX=http://docs.python.org/library/bisect.html#bisect.bisect_leftX-tr,Xplatform.systemr,(hhX<http://docs.python.org/library/platform.html#platform.systemX-tr,Xmimify.mime_encode_headerr ,(hhXDhttp://docs.python.org/library/mimify.html#mimify.mime_encode_headerX-tr ,X imgfile.ttobr ,(hhX8http://docs.python.org/library/imgfile.html#imgfile.ttobX-tr ,Xencodings.idna.ToUnicoder ,(hhXChttp://docs.python.org/library/codecs.html#encodings.idna.ToUnicodeX-tr,X copy.deepcopyr,(hhX6http://docs.python.org/library/copy.html#copy.deepcopyX-tr,Xoperator.__imod__r,(hhX>http://docs.python.org/library/operator.html#operator.__imod__X-tr,XEasyDialogs.AskFolderr,(hhXEhttp://docs.python.org/library/easydialogs.html#EasyDialogs.AskFolderX-tr,Xmultiprocessing.active_childrenr,(hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing.active_childrenX-tr,X os.fdatasyncr,(hhX3http://docs.python.org/library/os.html#os.fdatasyncX-tr,Xpkgutil.find_loaderr,(hhX?http://docs.python.org/library/pkgutil.html#pkgutil.find_loaderX-tr,X os.forkptyr,(hhX1http://docs.python.org/library/os.html#os.forkptyX-tr,Xcolorsys.rgb_to_hlsr,(hhX@http://docs.python.org/library/colorsys.html#colorsys.rgb_to_hlsX-tr,Xpprint.safereprr,(hhX:http://docs.python.org/library/pprint.html#pprint.safereprX-tr ,Xoperator.__invert__r!,(hhX@http://docs.python.org/library/operator.html#operator.__invert__X-tr",Xaudioop.ratecvr#,(hhX:http://docs.python.org/library/audioop.html#audioop.ratecvX-tr$,X new.instancer%,(hhX4http://docs.python.org/library/new.html#new.instanceX-tr&,Xcurses.has_keyr',(hhX9http://docs.python.org/library/curses.html#curses.has_keyX-tr(,X string.rjustr),(hhX7http://docs.python.org/library/string.html#string.rjustX-tr*,Xdistutils.file_util.write_filer+,(hhXKhttp://docs.python.org/distutils/apiref.html#distutils.file_util.write_fileX-tr,,X re.escaper-,(hhX0http://docs.python.org/library/re.html#re.escapeX-tr.,X turtle.shaper/,(hhX7http://docs.python.org/library/turtle.html#turtle.shapeX-tr0,Xbase64.urlsafe_b64encoder1,(hhXChttp://docs.python.org/library/base64.html#base64.urlsafe_b64encodeX-tr2,Xdl.openr3,(hhX.http://docs.python.org/library/dl.html#dl.openX-tr4,X#distutils.archive_util.make_zipfiler5,(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.archive_util.make_zipfileX-tr6,Xcsv.register_dialectr7,(hhX<http://docs.python.org/library/csv.html#csv.register_dialectX-tr8,X codecs.lookupr9,(hhX8http://docs.python.org/library/codecs.html#codecs.lookupX-tr:,Xbufferr;,(hhX4http://docs.python.org/library/functions.html#bufferX-tr<,Xfm.initr=,(hhX.http://docs.python.org/library/fm.html#fm.initX-tr>,X math.atanr?,(hhX2http://docs.python.org/library/math.html#math.atanX-tr@,XcallablerA,(hhX6http://docs.python.org/library/functions.html#callableX-trB,Xos.wait4rC,(hhX/http://docs.python.org/library/os.html#os.wait4X-trD,Xemail.encoders.encode_base64rE,(hhXOhttp://docs.python.org/library/email.encoders.html#email.encoders.encode_base64X-trF,Xinspect.isgeneratorfunctionrG,(hhXGhttp://docs.python.org/library/inspect.html#inspect.isgeneratorfunctionX-trH,Xos.wait3rI,(hhX/http://docs.python.org/library/os.html#os.wait3X-trJ,X jpeg.compressrK,(hhX6http://docs.python.org/library/jpeg.html#jpeg.compressX-trL,Xsysconfig.get_scheme_namesrM,(hhXHhttp://docs.python.org/library/sysconfig.html#sysconfig.get_scheme_namesX-trN,X_winreg.CreateKeyrO,(hhX=http://docs.python.org/library/_winreg.html#_winreg.CreateKeyX-trP,X turtle.penrQ,(hhX5http://docs.python.org/library/turtle.html#turtle.penX-trR,XMacOS.WMAvailablerS,(hhX;http://docs.python.org/library/macos.html#MacOS.WMAvailableX-trT,Ximp.find_modulerU,(hhX7http://docs.python.org/library/imp.html#imp.find_moduleX-trV,Xgc.set_thresholdrW,(hhX7http://docs.python.org/library/gc.html#gc.set_thresholdX-trX,XBastion.BastionrY,(hhX;http://docs.python.org/library/bastion.html#Bastion.BastionX-trZ,Xdircache.opendirr[,(hhX=http://docs.python.org/library/dircache.html#dircache.opendirX-tr\,X turtle.htr],(hhX4http://docs.python.org/library/turtle.html#turtle.htX-tr^,X shutil.rmtreer_,(hhX8http://docs.python.org/library/shutil.html#shutil.rmtreeX-tr`,Xrfc822.parsedate_tzra,(hhX>http://docs.python.org/library/rfc822.html#rfc822.parsedate_tzX-trb,Xoperator.__iadd__rc,(hhX>http://docs.python.org/library/operator.html#operator.__iadd__X-trd,Xturtle.setworldcoordinatesre,(hhXEhttp://docs.python.org/library/turtle.html#turtle.setworldcoordinatesX-trf,X%multiprocessing.sharedctypes.RawValuerg,(hhXYhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.RawValueX-trh,Xpyclbr.readmoduleri,(hhX<http://docs.python.org/library/pyclbr.html#pyclbr.readmoduleX-trj,X difflib.ndiffrk,(hhX9http://docs.python.org/library/difflib.html#difflib.ndiffX-trl,X os.getresuidrm,(hhX3http://docs.python.org/library/os.html#os.getresuidX-trn,Xxrangero,(hhX4http://docs.python.org/library/functions.html#xrangeX-trp,Xsys.getrefcountrq,(hhX7http://docs.python.org/library/sys.html#sys.getrefcountX-trr,Xthread.stack_sizers,(hhX<http://docs.python.org/library/thread.html#thread.stack_sizeX-trt,Xos.fstatru,(hhX/http://docs.python.org/library/os.html#os.fstatX-trv,Xplistlib.readPlistFromResourcerw,(hhXKhttp://docs.python.org/library/plistlib.html#plistlib.readPlistFromResourceX-trx,Xdistutils.util.get_platformry,(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.util.get_platformX-trz,X operator.powr{,(hhX9http://docs.python.org/library/operator.html#operator.powX-tr|,Xctypes.set_errnor},(hhX;http://docs.python.org/library/ctypes.html#ctypes.set_errnoX-tr~,X crypt.cryptr,(hhX5http://docs.python.org/library/crypt.html#crypt.cryptX-tr,X operator.posr,(hhX9http://docs.python.org/library/operator.html#operator.posX-tr,Xsys.setdefaultencodingr,(hhX>http://docs.python.org/library/sys.html#sys.setdefaultencodingX-tr,Xinspect.getdocr,(hhX:http://docs.python.org/library/inspect.html#inspect.getdocX-tr,Xos.path.normcaser,(hhX<http://docs.python.org/library/os.path.html#os.path.normcaseX-tr,Xtraceback.format_tbr,(hhXAhttp://docs.python.org/library/traceback.html#traceback.format_tbX-tr,Xstringprep.in_table_c22r,(hhXFhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c22X-tr,Xfnmatch.fnmatchr,(hhX;http://docs.python.org/library/fnmatch.html#fnmatch.fnmatchX-tr,Xturtle.exitonclickr,(hhX=http://docs.python.org/library/turtle.html#turtle.exitonclickX-tr,Xfl.get_patternr,(hhX5http://docs.python.org/library/fl.html#fl.get_patternX-tr,Xsqlite3.connectr,(hhX;http://docs.python.org/library/sqlite3.html#sqlite3.connectX-tr,Xcolorsys.hsv_to_rgbr,(hhX@http://docs.python.org/library/colorsys.html#colorsys.hsv_to_rgbX-tr,Xdistutils.core.run_setupr,(hhXEhttp://docs.python.org/distutils/apiref.html#distutils.core.run_setupX-tr,Xprintr,(hhX3http://docs.python.org/library/functions.html#printX-tr,Xstring.replacer,(hhX9http://docs.python.org/library/string.html#string.replaceX-tr,Xsyslog.setlogmaskr,(hhX<http://docs.python.org/library/syslog.html#syslog.setlogmaskX-tr,Xunicodedata.lookupr,(hhXBhttp://docs.python.org/library/unicodedata.html#unicodedata.lookupX-tr,X repr.reprr,(hhX2http://docs.python.org/library/repr.html#repr.reprX-tr,X os.getcwdr,(hhX0http://docs.python.org/library/os.html#os.getcwdX-tr,Xoperator.__idiv__r,(hhX>http://docs.python.org/library/operator.html#operator.__idiv__X-tr,Xoperator.truedivr,(hhX=http://docs.python.org/library/operator.html#operator.truedivX-tr,Xctypes.DllGetClassObjectr,(hhXChttp://docs.python.org/library/ctypes.html#ctypes.DllGetClassObjectX-tr,Xcalendar.monthr,(hhX;http://docs.python.org/library/calendar.html#calendar.monthX-tr,Xplistlib.writePlistToStringr,(hhXHhttp://docs.python.org/library/plistlib.html#plistlib.writePlistToStringX-tr,X string.atolr,(hhX6http://docs.python.org/library/string.html#string.atolX-tr,Xbisect.bisect_rightr,(hhX>http://docs.python.org/library/bisect.html#bisect.bisect_rightX-tr,X string.atoir,(hhX6http://docs.python.org/library/string.html#string.atoiX-tr,X string.atofr,(hhX6http://docs.python.org/library/string.html#string.atofX-tr,Xssl.PEM_cert_to_DER_certr,(hhX@http://docs.python.org/library/ssl.html#ssl.PEM_cert_to_DER_certX-tr,Xcurses.pair_contentr,(hhX>http://docs.python.org/library/curses.html#curses.pair_contentX-tr,X timeit.repeatr,(hhX8http://docs.python.org/library/timeit.html#timeit.repeatX-tr,Xunicodedata.bidirectionalr,(hhXIhttp://docs.python.org/library/unicodedata.html#unicodedata.bidirectionalX-tr,Xinspect.isfunctionr,(hhX>http://docs.python.org/library/inspect.html#inspect.isfunctionX-tr,X_winreg.QueryValuer,(hhX>http://docs.python.org/library/_winreg.html#_winreg.QueryValueX-tr,Xdistutils.util.split_quotedr,(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.util.split_quotedX-tr,Xdifflib.restorer,(hhX;http://docs.python.org/library/difflib.html#difflib.restoreX-tr,X string.joinr,(hhX6http://docs.python.org/library/string.html#string.joinX-tr,Xcurses.noqiflushr,(hhX;http://docs.python.org/library/curses.html#curses.noqiflushX-tr,Xjpeg.decompressr,(hhX8http://docs.python.org/library/jpeg.html#jpeg.decompressX-tr,Xcodecs.strict_errorsr,(hhX?http://docs.python.org/library/codecs.html#codecs.strict_errorsX-tr,Xcurses.ascii.isdigitr,(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isdigitX-tr,Ximageop.dither2monor,(hhX?http://docs.python.org/library/imageop.html#imageop.dither2monoX-tr,X%test.test_support.check_py3k_warningsr,(hhXNhttp://docs.python.org/library/test.html#test.test_support.check_py3k_warningsX-tr,X turtle.str,(hhX4http://docs.python.org/library/turtle.html#turtle.stX-tr,X sys.exc_infor,(hhX4http://docs.python.org/library/sys.html#sys.exc_infoX-tr,X socket.htonsr,(hhX7http://docs.python.org/library/socket.html#socket.htonsX-tr,Xthreading.setprofiler,(hhXBhttp://docs.python.org/library/threading.html#threading.setprofileX-tr,Xtraceback.print_exceptionr,(hhXGhttp://docs.python.org/library/traceback.html#traceback.print_exceptionX-tr,Xssl.wrap_socketr,(hhX7http://docs.python.org/library/ssl.html#ssl.wrap_socketX-tr,Xprofile.runctxr,(hhX:http://docs.python.org/library/profile.html#profile.runctxX-tr,Xpickletools.genopsr,(hhXBhttp://docs.python.org/library/pickletools.html#pickletools.genopsX-tr,X socket.htonlr,(hhX7http://docs.python.org/library/socket.html#socket.htonlX-tr,Xre.splitr,(hhX/http://docs.python.org/library/re.html#re.splitX-tr,Xoperator.delitemr,(hhX=http://docs.python.org/library/operator.html#operator.delitemX-tr,X turtle.titler,(hhX7http://docs.python.org/library/turtle.html#turtle.titleX-tr,X time.strptimer,(hhX6http://docs.python.org/library/time.html#time.strptimeX-tr,X_winreg.DeleteValuer,(hhX?http://docs.python.org/library/_winreg.html#_winreg.DeleteValueX-tr,Xsqlite3.register_converterr,(hhXFhttp://docs.python.org/library/sqlite3.html#sqlite3.register_converterX-tr,Xrfc822.dump_address_pairr,(hhXChttp://docs.python.org/library/rfc822.html#rfc822.dump_address_pairX-tr,Xoperator.__ipow__r,(hhX>http://docs.python.org/library/operator.html#operator.__ipow__X-tr,X#distutils.sysconfig.get_config_varsr,(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.get_config_varsX-tr,Xctypes.get_errnor,(hhX;http://docs.python.org/library/ctypes.html#ctypes.get_errnoX-tr,Xurllib.url2pathnamer,(hhX>http://docs.python.org/library/urllib.html#urllib.url2pathnameX-tr,Xtraceback.print_stackr,(hhXChttp://docs.python.org/library/traceback.html#traceback.print_stackX-tr,X$distutils.sysconfig.set_python_buildr,(hhXQhttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.set_python_buildX-tr-Xencodings.idna.nameprepr-(hhXBhttp://docs.python.org/library/codecs.html#encodings.idna.nameprepX-tr-Xcontextlib.closingr-(hhXAhttp://docs.python.org/library/contextlib.html#contextlib.closingX-tr-X grp.getgrnamr-(hhX4http://docs.python.org/library/grp.html#grp.getgrnamX-tr-Xrandom.shuffler-(hhX9http://docs.python.org/library/random.html#random.shuffleX-tr-XEasyDialogs.AskYesNoCancelr -(hhXJhttp://docs.python.org/library/easydialogs.html#EasyDialogs.AskYesNoCancelX-tr -Xposixfile.fileopenr -(hhX@http://docs.python.org/library/posixfile.html#posixfile.fileopenX-tr -X fm.findfontr -(hhX2http://docs.python.org/library/fm.html#fm.findfontX-tr-Xhmac.newr-(hhX1http://docs.python.org/library/hmac.html#hmac.newX-tr-Xos.path.dirnamer-(hhX;http://docs.python.org/library/os.path.html#os.path.dirnameX-tr-Xgetattrr-(hhX5http://docs.python.org/library/functions.html#getattrX-tr-X math.log10r-(hhX3http://docs.python.org/library/math.html#math.log10X-tr-Xoperator.__le__r-(hhX<http://docs.python.org/library/operator.html#operator.__le__X-tr-X time.clockr-(hhX3http://docs.python.org/library/time.html#time.clockX-tr-Xmath.sinr-(hhX1http://docs.python.org/library/math.html#math.sinX-tr-X os.symlinkr-(hhX1http://docs.python.org/library/os.html#os.symlinkX-tr-Xtextwrap.dedentr-(hhX<http://docs.python.org/library/textwrap.html#textwrap.dedentX-tr -X turtle.delayr!-(hhX7http://docs.python.org/library/turtle.html#turtle.delayX-tr"-X operator.negr#-(hhX9http://docs.python.org/library/operator.html#operator.negX-tr$-Xcurses.tigetflagr%-(hhX;http://docs.python.org/library/curses.html#curses.tigetflagX-tr&-Xemail.utils.parsedater'-(hhXDhttp://docs.python.org/library/email.util.html#email.utils.parsedateX-tr(-XEasyDialogs.ProgressBarr)-(hhXGhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBarX-tr*-X random.whseedr+-(hhX8http://docs.python.org/library/random.html#random.whseedX-tr,-Xfileinput.filenamer--(hhX@http://docs.python.org/library/fileinput.html#fileinput.filenameX-tr.-Xsocket.getnameinfor/-(hhX=http://docs.python.org/library/socket.html#socket.getnameinfoX-tr0-X os.execvper1-(hhX1http://docs.python.org/library/os.html#os.execvpeX-tr2-Xtabnanny.tokeneaterr3-(hhX@http://docs.python.org/library/tabnanny.html#tabnanny.tokeneaterX-tr4-Xfl.tier5-(hhX-http://docs.python.org/library/fl.html#fl.tieX-tr6-X stat.S_ISBLKr7-(hhX5http://docs.python.org/library/stat.html#stat.S_ISBLKX-tr8-Xturtle.turtlesr9-(hhX9http://docs.python.org/library/turtle.html#turtle.turtlesX-tr:-X random.sampler;-(hhX8http://docs.python.org/library/random.html#random.sampleX-tr<-Xstringprep.map_table_b2r=-(hhXFhttp://docs.python.org/library/stringprep.html#stringprep.map_table_b2X-tr>-X gc.get_countr?-(hhX3http://docs.python.org/library/gc.html#gc.get_countX-tr@-Xast.iter_fieldsrA-(hhX7http://docs.python.org/library/ast.html#ast.iter_fieldsX-trB-Xoperator.__setslice__rC-(hhXBhttp://docs.python.org/library/operator.html#operator.__setslice__X-trD-Xaudioop.lin2adpcmrE-(hhX=http://docs.python.org/library/audioop.html#audioop.lin2adpcmX-trF-Xfileinput.closerG-(hhX=http://docs.python.org/library/fileinput.html#fileinput.closeX-trH-Xturtle.radiansrI-(hhX9http://docs.python.org/library/turtle.html#turtle.radiansX-trJ-Xthreading.RLockrK-(hhX=http://docs.python.org/library/threading.html#threading.RLockX-trL-Xunicodedata.numericrM-(hhXChttp://docs.python.org/library/unicodedata.html#unicodedata.numericX-trN-Xast.fix_missing_locationsrO-(hhXAhttp://docs.python.org/library/ast.html#ast.fix_missing_locationsX-trP-Xcodecs.getwriterrQ-(hhX;http://docs.python.org/library/codecs.html#codecs.getwriterX-trR-Xshutil.register_archive_formatrS-(hhXIhttp://docs.python.org/library/shutil.html#shutil.register_archive_formatX-trT-Xoperator.__lt__rU-(hhX<http://docs.python.org/library/operator.html#operator.__lt__X-trV-Xoperator.isMappingTyperW-(hhXChttp://docs.python.org/library/operator.html#operator.isMappingTypeX-trX-Xlinecache.getlinerY-(hhX?http://docs.python.org/library/linecache.html#linecache.getlineX-trZ-Xoperator.__floordiv__r[-(hhXBhttp://docs.python.org/library/operator.html#operator.__floordiv__X-tr\-X math.log1pr]-(hhX3http://docs.python.org/library/math.html#math.log1pX-tr^-XFrameWork.Applicationr_-(hhXChttp://docs.python.org/library/framework.html#FrameWork.ApplicationX-tr`-Xparser.sequence2stra-(hhX=http://docs.python.org/library/parser.html#parser.sequence2stX-trb-Xos.path.samefilerc-(hhX<http://docs.python.org/library/os.path.html#os.path.samefileX-trd-Xfileinput.isstdinre-(hhX?http://docs.python.org/library/fileinput.html#fileinput.isstdinX-trf-Xdistutils.dep_util.newer_grouprg-(hhXKhttp://docs.python.org/distutils/apiref.html#distutils.dep_util.newer_groupX-trh-Xos.dupri-(hhX-http://docs.python.org/library/os.html#os.dupX-trj-Xxml.etree.ElementTree.Commentrk-(hhXWhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.CommentX-trl-X xml.etree.ElementTree.fromstringrm-(hhXZhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.fromstringX-trn-XautoGIL.installAutoGILro-(hhXBhttp://docs.python.org/library/autogil.html#autoGIL.installAutoGILX-trp-Xinspect.isbuiltinrq-(hhX=http://docs.python.org/library/inspect.html#inspect.isbuiltinX-trr-X operator.gtrs-(hhX8http://docs.python.org/library/operator.html#operator.gtX-trt-Xpowru-(hhX1http://docs.python.org/library/functions.html#powX-trv-Xcodecs.replace_errorsrw-(hhX@http://docs.python.org/library/codecs.html#codecs.replace_errorsX-trx-Xunittest.skipIfry-(hhX<http://docs.python.org/library/unittest.html#unittest.skipIfX-trz-Xast.walkr{-(hhX0http://docs.python.org/library/ast.html#ast.walkX-tr|-Xturtle.setundobufferr}-(hhX?http://docs.python.org/library/turtle.html#turtle.setundobufferX-tr~-X filecmp.cmpr-(hhX7http://docs.python.org/library/filecmp.html#filecmp.cmpX-tr-Xreadline.parse_and_bindr-(hhXDhttp://docs.python.org/library/readline.html#readline.parse_and_bindX-tr-X tarfile.openr-(hhX8http://docs.python.org/library/tarfile.html#tarfile.openX-tr-Xtokenize.tokenizer-(hhX>http://docs.python.org/library/tokenize.html#tokenize.tokenizeX-tr-Xitertools.takewhiler-(hhXAhttp://docs.python.org/library/itertools.html#itertools.takewhileX-tr-Xcurses.ascii.islowerr-(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.islowerX-tr-X turtle.circler-(hhX8http://docs.python.org/library/turtle.html#turtle.circleX-tr-Xtempfile.mkstempr-(hhX=http://docs.python.org/library/tempfile.html#tempfile.mkstempX-tr-Xemail.charset.add_aliasr-(hhXIhttp://docs.python.org/library/email.charset.html#email.charset.add_aliasX-tr-Xcodecs.getincrementaldecoderr-(hhXGhttp://docs.python.org/library/codecs.html#codecs.getincrementaldecoderX-tr-X string.lstripr-(hhX8http://docs.python.org/library/string.html#string.lstripX-tr-Xoperator.concatr-(hhX<http://docs.python.org/library/operator.html#operator.concatX-tr-Xbase64.decodestringr-(hhX>http://docs.python.org/library/base64.html#base64.decodestringX-tr-Xctypes.GetLastErrorr-(hhX>http://docs.python.org/library/ctypes.html#ctypes.GetLastErrorX-tr-X sys.exc_clearr-(hhX5http://docs.python.org/library/sys.html#sys.exc_clearX-tr-Xurlparse.urlsplitr-(hhX>http://docs.python.org/library/urlparse.html#urlparse.urlsplitX-tr-Xcalendar.monthcalendarr-(hhXChttp://docs.python.org/library/calendar.html#calendar.monthcalendarX-tr-X sndhdr.whatr-(hhX6http://docs.python.org/library/sndhdr.html#sndhdr.whatX-tr-Xrunpy.run_moduler-(hhX:http://docs.python.org/library/runpy.html#runpy.run_moduleX-tr-X os.geteuidr-(hhX1http://docs.python.org/library/os.html#os.geteuidX-tr-X cmath.log10r-(hhX5http://docs.python.org/library/cmath.html#cmath.log10X-tr-Xemail.utils.parsedate_tzr-(hhXGhttp://docs.python.org/library/email.util.html#email.utils.parsedate_tzX-tr-Ximageop.grey42greyr-(hhX>http://docs.python.org/library/imageop.html#imageop.grey42greyX-tr-X os.urandomr-(hhX1http://docs.python.org/library/os.html#os.urandomX-tr-Xlocale.nl_langinfor-(hhX=http://docs.python.org/library/locale.html#locale.nl_langinfoX-tr-Xmsvcrt.ungetchr-(hhX9http://docs.python.org/library/msvcrt.html#msvcrt.ungetchX-tr-Xmsilib.FCICreater-(hhX;http://docs.python.org/library/msilib.html#msilib.FCICreateX-tr-X tty.setrawr-(hhX2http://docs.python.org/library/tty.html#tty.setrawX-tr-Xcurses.panel.bottom_panelr-(hhXJhttp://docs.python.org/library/curses.panel.html#curses.panel.bottom_panelX-tr-Xreadline.get_completerr-(hhXChttp://docs.python.org/library/readline.html#readline.get_completerX-tr-Xgettext.textdomainr-(hhX>http://docs.python.org/library/gettext.html#gettext.textdomainX-tr-X curses.newpadr-(hhX8http://docs.python.org/library/curses.html#curses.newpadX-tr-X os.execvpr-(hhX0http://docs.python.org/library/os.html#os.execvpX-tr-Xlocale.getpreferredencodingr-(hhXFhttp://docs.python.org/library/locale.html#locale.getpreferredencodingX-tr-Xturtle.window_widthr-(hhX>http://docs.python.org/library/turtle.html#turtle.window_widthX-tr-Xurllib.unquote_plusr-(hhX>http://docs.python.org/library/urllib.html#urllib.unquote_plusX-tr-Xinspect.formatargspecr-(hhXAhttp://docs.python.org/library/inspect.html#inspect.formatargspecX-tr-Xurllib2.urlopenr-(hhX;http://docs.python.org/library/urllib2.html#urllib2.urlopenX-tr-X os.WSTOPSIGr-(hhX2http://docs.python.org/library/os.html#os.WSTOPSIGX-tr-X fl.isqueuedr-(hhX2http://docs.python.org/library/fl.html#fl.isqueuedX-tr-X os.execver-(hhX0http://docs.python.org/library/os.html#os.execveX-tr-Xstringprep.in_table_c11r-(hhXFhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c11X-tr-Xos.path.commonprefixr-(hhX@http://docs.python.org/library/os.path.html#os.path.commonprefixX-tr-Xos.path.ismountr-(hhX;http://docs.python.org/library/os.path.html#os.path.ismountX-tr-Xturtle.ontimerr-(hhX9http://docs.python.org/library/turtle.html#turtle.ontimerX-tr-Xcurses.ascii.altr-(hhXAhttp://docs.python.org/library/curses.ascii.html#curses.ascii.altX-tr-Xre.purger-(hhX/http://docs.python.org/library/re.html#re.purgeX-tr-Xcurses.termnamer-(hhX:http://docs.python.org/library/curses.html#curses.termnameX-tr-Xreadline.set_completerr-(hhXChttp://docs.python.org/library/readline.html#readline.set_completerX-tr-Xsysconfig.get_config_varsr-(hhXGhttp://docs.python.org/library/sysconfig.html#sysconfig.get_config_varsX-tr-X __import__r-(hhX8http://docs.python.org/library/functions.html#__import__X-tr-Xrfc822.unquoter-(hhX9http://docs.python.org/library/rfc822.html#rfc822.unquoteX-tr-Xos.minorr-(hhX/http://docs.python.org/library/os.html#os.minorX-tr-Xos.umaskr-(hhX/http://docs.python.org/library/os.html#os.umaskX-tr-Xurlparse.urlunsplitr-(hhX@http://docs.python.org/library/urlparse.html#urlparse.urlunsplitX-tr-X audioop.rmsr-(hhX7http://docs.python.org/library/audioop.html#audioop.rmsX-tr-Xcurses.ascii.asciir-(hhXChttp://docs.python.org/library/curses.ascii.html#curses.ascii.asciiX-tr-Xbase64.encodestringr-(hhX>http://docs.python.org/library/base64.html#base64.encodestringX-tr-Xgettext.dngettextr-(hhX=http://docs.python.org/library/gettext.html#gettext.dngettextX-tr-Xshutil.ignore_patternsr-(hhXAhttp://docs.python.org/library/shutil.html#shutil.ignore_patternsX-tr-X cgi.parse_qslr-(hhX5http://docs.python.org/library/cgi.html#cgi.parse_qslX-tr-X string.rstripr-(hhX8http://docs.python.org/library/string.html#string.rstripX-tr-Xcurses.typeaheadr-(hhX;http://docs.python.org/library/curses.html#curses.typeaheadX-tr-X distutils.ccompiler.new_compilerr-(hhXMhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.new_compilerX-tr-Xpkgutil.get_importerr-(hhX@http://docs.python.org/library/pkgutil.html#pkgutil.get_importerX-tr.X curses.nlr.(hhX4http://docs.python.org/library/curses.html#curses.nlX-tr.X#distutils.archive_util.make_archiver.(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.archive_util.make_archiveX-tr.Xcurses.color_pairr.(hhX<http://docs.python.org/library/curses.html#curses.color_pairX-tr.X&distutils.sysconfig.customize_compilerr.(hhXShttp://docs.python.org/distutils/apiref.html#distutils.sysconfig.customize_compilerX-tr.Xturtle.getscreenr .(hhX;http://docs.python.org/library/turtle.html#turtle.getscreenX-tr .Xctypes.WINFUNCTYPEr .(hhX=http://docs.python.org/library/ctypes.html#ctypes.WINFUNCTYPEX-tr .Xoperator.__getitem__r .(hhXAhttp://docs.python.org/library/operator.html#operator.__getitem__X-tr.X turtle.onkeyr.(hhX7http://docs.python.org/library/turtle.html#turtle.onkeyX-tr.Xos.majorr.(hhX/http://docs.python.org/library/os.html#os.majorX-tr.Xturtle.getturtler.(hhX;http://docs.python.org/library/turtle.html#turtle.getturtleX-tr.Xplatform.libc_verr.(hhX>http://docs.python.org/library/platform.html#platform.libc_verX-tr.Xfl.get_filenamer.(hhX6http://docs.python.org/library/fl.html#fl.get_filenameX-tr.Xoperator.repeatr.(hhX<http://docs.python.org/library/operator.html#operator.repeatX-tr.X math.expm1r.(hhX3http://docs.python.org/library/math.html#math.expm1X-tr.X operator.ler.(hhX8http://docs.python.org/library/operator.html#operator.leX-tr.X gl.endpickr.(hhX1http://docs.python.org/library/gl.html#gl.endpickX-tr .X marshal.dumpr!.(hhX8http://docs.python.org/library/marshal.html#marshal.dumpX-tr".Xpdb.pmr#.(hhX.http://docs.python.org/library/pdb.html#pdb.pmX-tr$.Xcolorsys.rgb_to_yiqr%.(hhX@http://docs.python.org/library/colorsys.html#colorsys.rgb_to_yiqX-tr&.X os.sysconfr'.(hhX1http://docs.python.org/library/os.html#os.sysconfX-tr(.X operator.iorr).(hhX9http://docs.python.org/library/operator.html#operator.iorX-tr*.Xcurses.qiflushr+.(hhX9http://docs.python.org/library/curses.html#curses.qiflushX-tr,.X json.loadr-.(hhX2http://docs.python.org/library/json.html#json.loadX-tr..Xcurses.ascii.isspacer/.(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isspaceX-tr0.Xctypes.create_unicode_bufferr1.(hhXGhttp://docs.python.org/library/ctypes.html#ctypes.create_unicode_bufferX-tr2.X'gensuitemodule.processfile_fromresourcer3.(hhXZhttp://docs.python.org/library/gensuitemodule.html#gensuitemodule.processfile_fromresourceX-tr4.Xoperator.floordivr5.(hhX>http://docs.python.org/library/operator.html#operator.floordivX-tr6.X"distutils.ccompiler.show_compilersr7.(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.show_compilersX-tr8.Xgettext.translationr9.(hhX?http://docs.python.org/library/gettext.html#gettext.translationX-tr:.Xcd.createparserr;.(hhX6http://docs.python.org/library/cd.html#cd.createparserX-tr<.Xcurses.def_shell_moder=.(hhX@http://docs.python.org/library/curses.html#curses.def_shell_modeX-tr>.X turtle.moder?.(hhX6http://docs.python.org/library/turtle.html#turtle.modeX-tr@.Xoperator.irshiftrA.(hhX=http://docs.python.org/library/operator.html#operator.irshiftX-trB.X textwrap.fillrC.(hhX:http://docs.python.org/library/textwrap.html#textwrap.fillX-trD.Xpkgutil.walk_packagesrE.(hhXAhttp://docs.python.org/library/pkgutil.html#pkgutil.walk_packagesX-trF.Xtraceback.format_excrG.(hhXBhttp://docs.python.org/library/traceback.html#traceback.format_excX-trH.Xdoctest.testmodrI.(hhX;http://docs.python.org/library/doctest.html#doctest.testmodX-trJ.Xsocket.getservbyportrK.(hhX?http://docs.python.org/library/socket.html#socket.getservbyportX-trL.Xreadline.insert_textrM.(hhXAhttp://docs.python.org/library/readline.html#readline.insert_textX-trN.Xmultiprocessing.current_processrO.(hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing.current_processX-trP.Ximp.is_builtinrQ.(hhX6http://docs.python.org/library/imp.html#imp.is_builtinX-trR.Xos.waitrS.(hhX.http://docs.python.org/library/os.html#os.waitX-trT.X al.getparamsrU.(hhX3http://docs.python.org/library/al.html#al.getparamsX-trV.Xmsilib.OpenDatabaserW.(hhX>http://docs.python.org/library/msilib.html#msilib.OpenDatabaseX-trX.XunicoderY.(hhX5http://docs.python.org/library/functions.html#unicodeX-trZ.Xrandom.triangularr[.(hhX<http://docs.python.org/library/random.html#random.triangularX-tr\.X!wsgiref.simple_server.make_serverr].(hhXMhttp://docs.python.org/library/wsgiref.html#wsgiref.simple_server.make_serverX-tr^.Xfl.show_questionr_.(hhX7http://docs.python.org/library/fl.html#fl.show_questionX-tr`.X isinstancera.(hhX8http://docs.python.org/library/functions.html#isinstanceX-trb.X heapq.heapifyrc.(hhX7http://docs.python.org/library/heapq.html#heapq.heapifyX-trd.Xrunpy.run_pathre.(hhX8http://docs.python.org/library/runpy.html#runpy.run_pathX-trf.X math.floorrg.(hhX3http://docs.python.org/library/math.html#math.floorX-trh.Ximageop.dither2grey2ri.(hhX@http://docs.python.org/library/imageop.html#imageop.dither2grey2X-trj.Xcurses.use_envrk.(hhX9http://docs.python.org/library/curses.html#curses.use_envX-trl.Xitertools.productrm.(hhX?http://docs.python.org/library/itertools.html#itertools.productX-trn.Xstring.translatero.(hhX;http://docs.python.org/library/string.html#string.translateX-trp.Xcompiler.visitor.walkrq.(hhXBhttp://docs.python.org/library/compiler.html#compiler.visitor.walkX-trr.X sys.getsizeofrs.(hhX5http://docs.python.org/library/sys.html#sys.getsizeofX-trt.Ximageop.tovideoru.(hhX;http://docs.python.org/library/imageop.html#imageop.tovideoX-trv.Xaudioop.adpcm2linrw.(hhX=http://docs.python.org/library/audioop.html#audioop.adpcm2linX-trx.Xtoken.ISTERMINALry.(hhX:http://docs.python.org/library/token.html#token.ISTERMINALX-trz.Xurlparse.urljoinr{.(hhX=http://docs.python.org/library/urlparse.html#urlparse.urljoinX-tr|.Xstringprep.in_table_a1r}.(hhXEhttp://docs.python.org/library/stringprep.html#stringprep.in_table_a1X-tr~.X raw_inputr.(hhX7http://docs.python.org/library/functions.html#raw_inputX-tr.Xoperator.iconcatr.(hhX=http://docs.python.org/library/operator.html#operator.iconcatX-tr.Xitertools.permutationsr.(hhXDhttp://docs.python.org/library/itertools.html#itertools.permutationsX-tr.Xencodings.idna.ToASCIIr.(hhXAhttp://docs.python.org/library/codecs.html#encodings.idna.ToASCIIX-tr.Xsysconfig.get_pathr.(hhX@http://docs.python.org/library/sysconfig.html#sysconfig.get_pathX-tr.Xurlparse.urlunparser.(hhX@http://docs.python.org/library/urlparse.html#urlparse.urlunparseX-tr.X anydbm.openr.(hhX6http://docs.python.org/library/anydbm.html#anydbm.openX-tr.X re.compiler.(hhX1http://docs.python.org/library/re.html#re.compileX-tr.Xreadline.get_history_lengthr.(hhXHhttp://docs.python.org/library/readline.html#readline.get_history_lengthX-tr.X audioop.maxr.(hhX7http://docs.python.org/library/audioop.html#audioop.maxX-tr.Xitertools.compressr.(hhX@http://docs.python.org/library/itertools.html#itertools.compressX-tr.Xcurses.longnamer.(hhX:http://docs.python.org/library/curses.html#curses.longnameX-tr.Xcurses.ascii.isalphar.(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isalphaX-tr.Xreadline.get_line_bufferr.(hhXEhttp://docs.python.org/library/readline.html#readline.get_line_bufferX-tr.Xast.increment_linenor.(hhX<http://docs.python.org/library/ast.html#ast.increment_linenoX-tr.X turtle.bkr.(hhX4http://docs.python.org/library/turtle.html#turtle.bkX-tr.Xstringprep.in_table_c21_c22r.(hhXJhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c21_c22X-tr.Xpty.forkr.(hhX0http://docs.python.org/library/pty.html#pty.forkX-tr.Xwebbrowser.open_new_tabr.(hhXFhttp://docs.python.org/library/webbrowser.html#webbrowser.open_new_tabX-tr.X gc.disabler.(hhX1http://docs.python.org/library/gc.html#gc.disableX-tr.Xsocket.setdefaulttimeoutr.(hhXChttp://docs.python.org/library/socket.html#socket.setdefaulttimeoutX-tr.Xmacostools.copytreer.(hhXBhttp://docs.python.org/library/macostools.html#macostools.copytreeX-tr.XFrameWork.MenuItemr.(hhX@http://docs.python.org/library/framework.html#FrameWork.MenuItemX-tr.Xast.literal_evalr.(hhX8http://docs.python.org/library/ast.html#ast.literal_evalX-tr.Xpdb.post_mortemr.(hhX7http://docs.python.org/library/pdb.html#pdb.post_mortemX-tr.X ic.launchurlr.(hhX3http://docs.python.org/library/ic.html#ic.launchurlX-tr.Xaudioop.findmaxr.(hhX;http://docs.python.org/library/audioop.html#audioop.findmaxX-tr.Xsocket.getfqdnr.(hhX9http://docs.python.org/library/socket.html#socket.getfqdnX-tr.Xbase64.urlsafe_b64decoder.(hhXChttp://docs.python.org/library/base64.html#base64.urlsafe_b64decodeX-tr.Xctypes.get_last_errorr.(hhX@http://docs.python.org/library/ctypes.html#ctypes.get_last_errorX-tr.X gl.endselectr.(hhX3http://docs.python.org/library/gl.html#gl.endselectX-tr.Xturtle.clearstampr.(hhX<http://docs.python.org/library/turtle.html#turtle.clearstampX-tr.X base64.decoder.(hhX8http://docs.python.org/library/base64.html#base64.decodeX-tr.XFrameWork.Separatorr.(hhXAhttp://docs.python.org/library/framework.html#FrameWork.SeparatorX-tr.X cmath.atanhr.(hhX5http://docs.python.org/library/cmath.html#cmath.atanhX-tr.Xtermios.tcflushr.(hhX;http://docs.python.org/library/termios.html#termios.tcflushX-tr.Xdistutils.util.executer.(hhXChttp://docs.python.org/distutils/apiref.html#distutils.util.executeX-tr.Xsocket.gethostbyname_exr.(hhXBhttp://docs.python.org/library/socket.html#socket.gethostbyname_exX-tr.X operator.isubr.(hhX:http://docs.python.org/library/operator.html#operator.isubX-tr.X re.finditerr.(hhX2http://docs.python.org/library/re.html#re.finditerX-tr.Ximp.load_dynamicr.(hhX8http://docs.python.org/library/imp.html#imp.load_dynamicX-tr.Xos.killr.(hhX.http://docs.python.org/library/os.html#os.killX-tr.Xtraceback.print_lastr.(hhXBhttp://docs.python.org/library/traceback.html#traceback.print_lastX-tr.Xtest.test_support.requiresr.(hhXChttp://docs.python.org/library/test.html#test.test_support.requiresX-tr.X operator.ger.(hhX8http://docs.python.org/library/operator.html#operator.geX-tr.Xemail.iterators._structurer.(hhXNhttp://docs.python.org/library/email.iterators.html#email.iterators._structureX-tr.Xmacostools.touchedr.(hhXAhttp://docs.python.org/library/macostools.html#macostools.touchedX-tr.X gc.isenabledr.(hhX3http://docs.python.org/library/gc.html#gc.isenabledX-tr.Xturtle.mainloopr.(hhX:http://docs.python.org/library/turtle.html#turtle.mainloopX-tr.X logging.errorr.(hhX9http://docs.python.org/library/logging.html#logging.errorX-tr.Xmultiprocessing.freeze_supportr.(hhXRhttp://docs.python.org/library/multiprocessing.html#multiprocessing.freeze_supportX-tr.X doctest.debugr.(hhX9http://docs.python.org/library/doctest.html#doctest.debugX-tr.X inspect.tracer.(hhX9http://docs.python.org/library/inspect.html#inspect.traceX-tr.Xxml.etree.ElementTree.XMLr.(hhXShttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.XMLX-tr.Xdifflib.HtmlDiff.__init__r.(hhXEhttp://docs.python.org/library/difflib.html#difflib.HtmlDiff.__init__X-tr.Xoperator.__inv__r.(hhX=http://docs.python.org/library/operator.html#operator.__inv__X-tr.X os.setgidr.(hhX0http://docs.python.org/library/os.html#os.setgidX-tr.Xurlparse.parse_qslr.(hhX?http://docs.python.org/library/urlparse.html#urlparse.parse_qslX-tr.X cmath.tanr.(hhX3http://docs.python.org/library/cmath.html#cmath.tanX-tr.X cmath.phaser.(hhX5http://docs.python.org/library/cmath.html#cmath.phaseX-tr.Xplatform.unamer.(hhX;http://docs.python.org/library/platform.html#platform.unameX-tr.X curses.endwinr.(hhX8http://docs.python.org/library/curses.html#curses.endwinX-tr.Xast.iter_child_nodesr.(hhX<http://docs.python.org/library/ast.html#ast.iter_child_nodesX-tr.Xgettext.ldngettextr.(hhX>http://docs.python.org/library/gettext.html#gettext.ldngettextX-tr.Xurllib.quote_plusr.(hhX<http://docs.python.org/library/urllib.html#urllib.quote_plusX-tr/Xbinascii.hexlifyr/(hhX=http://docs.python.org/library/binascii.html#binascii.hexlifyX-tr/X compiler.walkr/(hhX:http://docs.python.org/library/compiler.html#compiler.walkX-tr/Xgettext.ngettextr/(hhX<http://docs.python.org/library/gettext.html#gettext.ngettextX-tr/X signal.signalr/(hhX8http://docs.python.org/library/signal.html#signal.signalX-tr/X4multiprocessing.sharedctypes.multiprocessing.Managerr /(hhXhhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.multiprocessing.ManagerX-tr /Xmacostools.copyr /(hhX>http://docs.python.org/library/macostools.html#macostools.copyX-tr /Xcurses.ascii.isprintr /(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isprintX-tr/X unittest.skipr/(hhX:http://docs.python.org/library/unittest.html#unittest.skipX-tr/X os.getppidr/(hhX1http://docs.python.org/library/os.html#os.getppidX-tr/Xsys.getfilesystemencodingr/(hhXAhttp://docs.python.org/library/sys.html#sys.getfilesystemencodingX-tr/Xrandom.normalvariater/(hhX?http://docs.python.org/library/random.html#random.normalvariateX-tr/Xsys.excepthookr/(hhX6http://docs.python.org/library/sys.html#sys.excepthookX-tr/Xpickletools.optimizer/(hhXDhttp://docs.python.org/library/pickletools.html#pickletools.optimizeX-tr/Xunittest.removeHandlerr/(hhXChttp://docs.python.org/library/unittest.html#unittest.removeHandlerX-tr/Xos.walkr/(hhX.http://docs.python.org/library/os.html#os.walkX-tr/X os.setreuidr/(hhX2http://docs.python.org/library/os.html#os.setreuidX-tr /Xinspect.isdatadescriptorr!/(hhXDhttp://docs.python.org/library/inspect.html#inspect.isdatadescriptorX-tr"/X os.popen4r#/(hhX0http://docs.python.org/library/os.html#os.popen4X-tr$/X turtle.upr%/(hhX4http://docs.python.org/library/turtle.html#turtle.upX-tr&/X os.popen3r'/(hhX0http://docs.python.org/library/os.html#os.popen3X-tr(/X os.popen2r)/(hhX0http://docs.python.org/library/os.html#os.popen2X-tr*/Xcodecs.getdecoderr+/(hhX<http://docs.python.org/library/codecs.html#codecs.getdecoderX-tr,/Xcurses.use_default_colorsr-/(hhXDhttp://docs.python.org/library/curses.html#curses.use_default_colorsX-tr./Xmath.tanr//(hhX1http://docs.python.org/library/math.html#math.tanX-tr0/X cmath.acosr1/(hhX4http://docs.python.org/library/cmath.html#cmath.acosX-tr2/Xtermios.tcsetattrr3/(hhX=http://docs.python.org/library/termios.html#termios.tcsetattrX-tr4/X os.spawnver5/(hhX1http://docs.python.org/library/os.html#os.spawnveX-tr6/Xitertools.ifilterfalser7/(hhXDhttp://docs.python.org/library/itertools.html#itertools.ifilterfalseX-tr8/Xaetools.keysubstr9/(hhX<http://docs.python.org/library/aetools.html#aetools.keysubstX-tr:/X platform.noder;/(hhX:http://docs.python.org/library/platform.html#platform.nodeX-tr/Xoperator.rshiftr?/(hhX<http://docs.python.org/library/operator.html#operator.rshiftX-tr@/XhexrA/(hhX1http://docs.python.org/library/functions.html#hexX-trB/X gl.nvarrayrC/(hhX1http://docs.python.org/library/gl.html#gl.nvarrayX-trD/Xmsilib.CreateRecordrE/(hhX>http://docs.python.org/library/msilib.html#msilib.CreateRecordX-trF/Xoperator.itemgetterrG/(hhX@http://docs.python.org/library/operator.html#operator.itemgetterX-trH/Xcurses.baudraterI/(hhX:http://docs.python.org/library/curses.html#curses.baudrateX-trJ/X os.spawnvprK/(hhX1http://docs.python.org/library/os.html#os.spawnvpX-trL/Xrandom.weibullvariaterM/(hhX@http://docs.python.org/library/random.html#random.weibullvariateX-trN/Xdistutils.util.strtoboolrO/(hhXEhttp://docs.python.org/distutils/apiref.html#distutils.util.strtoboolX-trP/X&email.iterators.typed_subpart_iteratorrQ/(hhXZhttp://docs.python.org/library/email.iterators.html#email.iterators.typed_subpart_iteratorX-trR/Xdistutils.util.subst_varsrS/(hhXFhttp://docs.python.org/distutils/apiref.html#distutils.util.subst_varsX-trT/X struct.packrU/(hhX6http://docs.python.org/library/struct.html#struct.packX-trV/Xturtle.isvisiblerW/(hhX;http://docs.python.org/library/turtle.html#turtle.isvisibleX-trX/X os.setegidrY/(hhX1http://docs.python.org/library/os.html#os.setegidX-trZ/X imgfile.writer[/(hhX9http://docs.python.org/library/imgfile.html#imgfile.writeX-tr\/X stat.S_ISSOCKr]/(hhX6http://docs.python.org/library/stat.html#stat.S_ISSOCKX-tr^/Xos.path.splitextr_/(hhX<http://docs.python.org/library/os.path.html#os.path.splitextX-tr`/Xturtle.getshapesra/(hhX;http://docs.python.org/library/turtle.html#turtle.getshapesX-trb/Xturtle.pendownrc/(hhX9http://docs.python.org/library/turtle.html#turtle.pendownX-trd/Xabc.abstractmethodre/(hhX:http://docs.python.org/library/abc.html#abc.abstractmethodX-trf/Xtempfile.gettempdirrg/(hhX@http://docs.python.org/library/tempfile.html#tempfile.gettempdirX-trh/Xsite.getsitepackagesri/(hhX=http://docs.python.org/library/site.html#site.getsitepackagesX-trj/X zlib.compressrk/(hhX6http://docs.python.org/library/zlib.html#zlib.compressX-trl/Xoperator.__getslice__rm/(hhXBhttp://docs.python.org/library/operator.html#operator.__getslice__X-trn/X nis.matchro/(hhX1http://docs.python.org/library/nis.html#nis.matchX-trp/Xtempfile.NamedTemporaryFilerq/(hhXHhttp://docs.python.org/library/tempfile.html#tempfile.NamedTemporaryFileX-trr/X os.execlpers/(hhX1http://docs.python.org/library/os.html#os.execlpeX-trt/Xunittest.registerResultru/(hhXDhttp://docs.python.org/library/unittest.html#unittest.registerResultX-trv/Ximageop.grey2monorw/(hhX=http://docs.python.org/library/imageop.html#imageop.grey2monoX-trx/Xstringprep.in_table_c21ry/(hhXFhttp://docs.python.org/library/stringprep.html#stringprep.in_table_c21X-trz/Xthreading.current_threadr{/(hhXFhttp://docs.python.org/library/threading.html#threading.current_threadX-tr|/Xnis.mapsr}/(hhX0http://docs.python.org/library/nis.html#nis.mapsX-tr~/Xreadline.set_history_lengthr/(hhXHhttp://docs.python.org/library/readline.html#readline.set_history_lengthX-tr/Xdistutils.dir_util.remove_treer/(hhXKhttp://docs.python.org/distutils/apiref.html#distutils.dir_util.remove_treeX-tr/Xoperator.__div__r/(hhX=http://docs.python.org/library/operator.html#operator.__div__X-tr/X popen2.popen4r/(hhX8http://docs.python.org/library/popen2.html#popen2.popen4X-tr/Xsocket.gethostbyaddrr/(hhX?http://docs.python.org/library/socket.html#socket.gethostbyaddrX-tr/X dis.distbr/(hhX1http://docs.python.org/library/dis.html#dis.distbX-tr/Ximp.init_builtinr/(hhX8http://docs.python.org/library/imp.html#imp.init_builtinX-tr/Xcalendar.firstweekdayr/(hhXBhttp://docs.python.org/library/calendar.html#calendar.firstweekdayX-tr/Xdistutils.dir_util.mkpathr/(hhXFhttp://docs.python.org/distutils/apiref.html#distutils.dir_util.mkpathX-tr/X operator.imodr/(hhX:http://docs.python.org/library/operator.html#operator.imodX-tr/X os.setpgrpr/(hhX1http://docs.python.org/library/os.html#os.setpgrpX-tr/X curses.has_ilr/(hhX8http://docs.python.org/library/curses.html#curses.has_ilX-tr/Xctypes.util.find_msvcrtr/(hhXBhttp://docs.python.org/library/ctypes.html#ctypes.util.find_msvcrtX-tr/Xmath.cosr/(hhX1http://docs.python.org/library/math.html#math.cosX-tr/Xdistutils.util.byte_compiler/(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.util.byte_compileX-tr/X os.strerrorr/(hhX2http://docs.python.org/library/os.html#os.strerrorX-tr/X curses.has_icr/(hhX8http://docs.python.org/library/curses.html#curses.has_icX-tr/Xxml.etree.ElementTree.iterparser/(hhXYhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.iterparseX-tr/Xlocale.currencyr/(hhX:http://docs.python.org/library/locale.html#locale.currencyX-tr/Xos.lstatr/(hhX/http://docs.python.org/library/os.html#os.lstatX-tr/Xinspect.ismethodr/(hhX<http://docs.python.org/library/inspect.html#inspect.ismethodX-tr/X os.path.splitr/(hhX9http://docs.python.org/library/os.path.html#os.path.splitX-tr/Xfnmatch.filterr/(hhX:http://docs.python.org/library/fnmatch.html#fnmatch.filterX-tr/Xos.WIFSIGNALEDr/(hhX5http://docs.python.org/library/os.html#os.WIFSIGNALEDX-tr/Xlogging.config.stopListeningr/(hhXOhttp://docs.python.org/library/logging.config.html#logging.config.stopListeningX-tr/Xoperator.__irshift__r/(hhXAhttp://docs.python.org/library/operator.html#operator.__irshift__X-tr/X os.unsetenvr/(hhX2http://docs.python.org/library/os.html#os.unsetenvX-tr/X math.ceilr/(hhX2http://docs.python.org/library/math.html#math.ceilX-tr/Xrfc822.parseaddrr/(hhX;http://docs.python.org/library/rfc822.html#rfc822.parseaddrX-tr/Xfiler/(hhX2http://docs.python.org/library/functions.html#fileX-tr/Xshutil.copystatr/(hhX:http://docs.python.org/library/shutil.html#shutil.copystatX-tr/Xtraceback.format_listr/(hhXChttp://docs.python.org/library/traceback.html#traceback.format_listX-tr/X os.setresuidr/(hhX3http://docs.python.org/library/os.html#os.setresuidX-tr/Xcurses.ascii.isalnumr/(hhXEhttp://docs.python.org/library/curses.ascii.html#curses.ascii.isalnumX-tr/Xurlparse.urldefragr/(hhX?http://docs.python.org/library/urlparse.html#urlparse.urldefragX-tr/X operator.invr/(hhX9http://docs.python.org/library/operator.html#operator.invX-tr/X logging.logr/(hhX7http://docs.python.org/library/logging.html#logging.logX-tr/Xcurses.start_colorr/(hhX=http://docs.python.org/library/curses.html#curses.start_colorX-tr/X select.pollr/(hhX6http://docs.python.org/library/select.html#select.pollX-tr/Xreadline.set_pre_input_hookr/(hhXHhttp://docs.python.org/library/readline.html#readline.set_pre_input_hookX-tr/Xmultiprocessing.Valuer/(hhXIhttp://docs.python.org/library/multiprocessing.html#multiprocessing.ValueX-tr/X sys.settracer/(hhX4http://docs.python.org/library/sys.html#sys.settraceX-tr/X os.ctermidr/(hhX1http://docs.python.org/library/os.html#os.ctermidX-tr/Xexecfiler/(hhX6http://docs.python.org/library/functions.html#execfileX-tr/X stat.S_IFMTr/(hhX4http://docs.python.org/library/stat.html#stat.S_IFMTX-tr/Xboolr/(hhX2http://docs.python.org/library/functions.html#boolX-tr/Xemail.header.make_headerr/(hhXIhttp://docs.python.org/library/email.header.html#email.header.make_headerX-tr/X pickle.dumpr/(hhX6http://docs.python.org/library/pickle.html#pickle.dumpX-tr/Xwsgiref.util.application_urir/(hhXHhttp://docs.python.org/library/wsgiref.html#wsgiref.util.application_uriX-tr/X math.degreesr/(hhX5http://docs.python.org/library/math.html#math.degreesX-tr/Xtokenize.generate_tokensr/(hhXEhttp://docs.python.org/library/tokenize.html#tokenize.generate_tokensX-tr/X signal.pauser/(hhX7http://docs.python.org/library/signal.html#signal.pauseX-tr/X"multiprocessing.sharedctypes.Valuer/(hhXVhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypes.ValueX-tr/Xwsgiref.util.shift_path_infor/(hhXHhttp://docs.python.org/library/wsgiref.html#wsgiref.util.shift_path_infoX-tr/X turtle.widthr/(hhX7http://docs.python.org/library/turtle.html#turtle.widthX-tr/Xlogging.getLoggerr/(hhX=http://docs.python.org/library/logging.html#logging.getLoggerX-tr/Xoperator.__isub__r/(hhX>http://docs.python.org/library/operator.html#operator.__isub__X-tr/X string.countr/(hhX7http://docs.python.org/library/string.html#string.countX-tr/Xturtle.clearstampsr/(hhX=http://docs.python.org/library/turtle.html#turtle.clearstampsX-tr/Xemail.utils.parseaddrr/(hhXDhttp://docs.python.org/library/email.util.html#email.utils.parseaddrX-tr/Xurllib.urlcleanupr/(hhX<http://docs.python.org/library/urllib.html#urllib.urlcleanupX-tr/Xstring.capwordsr/(hhX:http://docs.python.org/library/string.html#string.capwordsX-tr/Xatexit.registerr/(hhX:http://docs.python.org/library/atexit.html#atexit.registerX-tr/X os.fdopenr/(hhX0http://docs.python.org/library/os.html#os.fdopenX-tr/Xitertools.chainr/(hhX=http://docs.python.org/library/itertools.html#itertools.chainX-tr0Xxml.dom.pulldom.parser0(hhXIhttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.parseX-tr0Xcalendar.isleapr0(hhX<http://docs.python.org/library/calendar.html#calendar.isleapX-tr0Xcurses.flushinpr0(hhX:http://docs.python.org/library/curses.html#curses.flushinpX-tr0X shutil.copy2r0(hhX7http://docs.python.org/library/shutil.html#shutil.copy2X-tr0X os.statvfsr 0(hhX1http://docs.python.org/library/os.html#os.statvfsX-tr 0Xparser.st2tupler 0(hhX:http://docs.python.org/library/parser.html#parser.st2tupleX-tr 0X math.atan2r 0(hhX3http://docs.python.org/library/math.html#math.atan2X-tr0Xsocket.getaddrinfor0(hhX=http://docs.python.org/library/socket.html#socket.getaddrinfoX-tr0Xssl.cert_time_to_secondsr0(hhX@http://docs.python.org/library/ssl.html#ssl.cert_time_to_secondsX-tr0X gl.selectr0(hhX0http://docs.python.org/library/gl.html#gl.selectX-tr0X os.getcwdur0(hhX1http://docs.python.org/library/os.html#os.getcwduX-tr0Xcurses.init_colorr0(hhX<http://docs.python.org/library/curses.html#curses.init_colorX-tr0Xturtle.pencolorr0(hhX:http://docs.python.org/library/turtle.html#turtle.pencolorX-tr0uX py:attributer0}r0(Xio.TextIOBase.bufferr0(hhX;http://docs.python.org/library/io.html#io.TextIOBase.bufferX-tr0Xxmlrpclib.Fault.faultCoder0(hhXGhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.Fault.faultCodeX-tr 0Xdoctest.Example.linenor!0(hhXBhttp://docs.python.org/library/doctest.html#doctest.Example.linenoX-tr"0Xmultifile.MultiFile.lastr#0(hhXFhttp://docs.python.org/library/multifile.html#multifile.MultiFile.lastX-tr$0X'xml.parsers.expat.xmlparser.buffer_usedr%0(hhXShttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.buffer_usedX-tr&0XSocketServer.BaseServer.timeoutr'0(hhXPhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.timeoutX-tr(0X#email.charset.Charset.body_encodingr)0(hhXUhttp://docs.python.org/library/email.charset.html#email.charset.Charset.body_encodingX-tr*0X+BaseHTTPServer.BaseHTTPRequestHandler.wfiler+0(hhX^http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.wfileX-tr,0Xcmd.Cmd.misc_headerr-0(hhX;http://docs.python.org/library/cmd.html#cmd.Cmd.misc_headerX-tr.0Xsqlite3.Connection.iterdumpr/0(hhXGhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.iterdumpX-tr00Xpyclbr.Class.methodsr10(hhX?http://docs.python.org/library/pyclbr.html#pyclbr.Class.methodsX-tr20Xxml.dom.NamedNodeMap.lengthr30(hhXGhttp://docs.python.org/library/xml.dom.html#xml.dom.NamedNodeMap.lengthX-tr40X"sqlite3.Connection.isolation_levelr50(hhXNhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.isolation_levelX-tr60Xoptparse.Option.ACTIONSr70(hhXDhttp://docs.python.org/library/optparse.html#optparse.Option.ACTIONSX-tr80Xctypes.Structure._fields_r90(hhXDhttp://docs.python.org/library/ctypes.html#ctypes.Structure._fields_X-tr:0X4BaseHTTPServer.BaseHTTPRequestHandler.server_versionr;0(hhXghttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.server_versionX-tr<0Xdoctest.Example.optionsr=0(hhXChttp://docs.python.org/library/doctest.html#doctest.Example.optionsX-tr>0Xxml.dom.DocumentType.notationsr?0(hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.DocumentType.notationsX-tr@0Xpopen2.Popen3.tochildrA0(hhX@http://docs.python.org/library/popen2.html#popen2.Popen3.tochildX-trB0Xdoctest.DocTest.globsrC0(hhXAhttp://docs.python.org/library/doctest.html#doctest.DocTest.globsX-trD0Xdatetime.date.minrE0(hhX>http://docs.python.org/library/datetime.html#datetime.date.minX-trF0Xctypes._CData._b_base_rG0(hhXAhttp://docs.python.org/library/ctypes.html#ctypes._CData._b_base_X-trH0Xdoctest.DocTestFailure.testrI0(hhXGhttp://docs.python.org/library/doctest.html#doctest.DocTestFailure.testX-trJ0X(subprocess.CalledProcessError.returncoderK0(hhXWhttp://docs.python.org/library/subprocess.html#subprocess.CalledProcessError.returncodeX-trL0Xhttplib.HTTPResponse.reasonrM0(hhXGhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.reasonX-trN0Xdoctest.DocTest.examplesrO0(hhXDhttp://docs.python.org/library/doctest.html#doctest.DocTest.examplesX-trP0X,wsgiref.handlers.BaseHandler.server_softwarerQ0(hhXXhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.server_softwareX-trR0X!cookielib.Cookie.domain_specifiedrS0(hhXOhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.domain_specifiedX-trT0Xpopen2.Popen3.pidrU0(hhX<http://docs.python.org/library/popen2.html#popen2.Popen3.pidX-trV0Xdoctest.DocTestFailure.gotrW0(hhXFhttp://docs.python.org/library/doctest.html#doctest.DocTestFailure.gotX-trX0Xcsv.csvreader.fieldnamesrY0(hhX@http://docs.python.org/library/csv.html#csv.csvreader.fieldnamesX-trZ0Xdatetime.time.tzinfor[0(hhXAhttp://docs.python.org/library/datetime.html#datetime.time.tzinfoX-tr\0Xstruct.Struct.formatr]0(hhX?http://docs.python.org/library/struct.html#struct.Struct.formatX-tr^0X$unittest.TestResult.expectedFailuresr_0(hhXQhttp://docs.python.org/library/unittest.html#unittest.TestResult.expectedFailuresX-tr`0Xcookielib.Cookie.commentra0(hhXFhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.commentX-trb0Xctypes.Structure._pack_rc0(hhXBhttp://docs.python.org/library/ctypes.html#ctypes.Structure._pack_X-trd0Xio.TextIOBase.errorsre0(hhX;http://docs.python.org/library/io.html#io.TextIOBase.errorsX-trf0Xunittest.TestResult.bufferrg0(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestResult.bufferX-trh0Xzipfile.ZipInfo.reservedri0(hhXDhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.reservedX-trj0XUserList.UserList.datark0(hhXChttp://docs.python.org/library/userdict.html#UserList.UserList.dataX-trl0Xdatetime.datetime.secondrm0(hhXEhttp://docs.python.org/library/datetime.html#datetime.datetime.secondX-trn0Xnetrc.netrc.macrosro0(hhX<http://docs.python.org/library/netrc.html#netrc.netrc.macrosX-trp0X"curses.textpad.Textbox.stripspacesrq0(hhXMhttp://docs.python.org/library/curses.html#curses.textpad.Textbox.stripspacesX-trr0Xcsv.Dialect.lineterminatorrs0(hhXBhttp://docs.python.org/library/csv.html#csv.Dialect.lineterminatorX-trt0Xarray.array.itemsizeru0(hhX>http://docs.python.org/library/array.html#array.array.itemsizeX-trv0Xxml.dom.Attr.valuerw0(hhX>http://docs.python.org/library/xml.dom.html#xml.dom.Attr.valueX-trx0Xoptparse.Option.callback_argsry0(hhXJhttp://docs.python.org/library/optparse.html#optparse.Option.callback_argsX-trz0Xemail.message.Message.defectsr{0(hhXOhttp://docs.python.org/library/email.message.html#email.message.Message.defectsX-tr|0X exceptions.UnicodeError.encodingr}0(hhXOhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeError.encodingX-tr~0Xtarfile.TarInfo.unamer0(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.unameX-tr0Xshlex.shlex.tokenr0(hhX;http://docs.python.org/library/shlex.html#shlex.shlex.tokenX-tr0X0xml.parsers.expat.xmlparser.specified_attributesr0(hhX\http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.specified_attributesX-tr0Xemail.message.Message.preambler0(hhXPhttp://docs.python.org/library/email.message.html#email.message.Message.preambleX-tr0Xxml.dom.DocumentType.entitiesr0(hhXIhttp://docs.python.org/library/xml.dom.html#xml.dom.DocumentType.entitiesX-tr0XUserDict.IterableUserDict.datar0(hhXKhttp://docs.python.org/library/userdict.html#UserDict.IterableUserDict.dataX-tr0X#xml.parsers.expat.ExpatError.offsetr0(hhXOhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.ExpatError.offsetX-tr0X-xml.parsers.expat.xmlparser.ErrorColumnNumberr0(hhXYhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ErrorColumnNumberX-tr0X0cookielib.DefaultCookiePolicy.strict_ns_set_pathr0(hhX^http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.strict_ns_set_pathX-tr0XScrolledText.ScrolledText.framer0(hhXPhttp://docs.python.org/library/scrolledtext.html#ScrolledText.ScrolledText.frameX-tr0Xurllib.URLopener.versionr0(hhXChttp://docs.python.org/library/urllib.html#urllib.URLopener.versionX-tr0Xctypes.PyDLL._namer0(hhX=http://docs.python.org/library/ctypes.html#ctypes.PyDLL._nameX-tr0Xftplib.FTP_TLS.ssl_versionr0(hhXEhttp://docs.python.org/library/ftplib.html#ftplib.FTP_TLS.ssl_versionX-tr0Xcookielib.Cookie.port_specifiedr0(hhXMhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.port_specifiedX-tr0Xast.AST._fieldsr0(hhX7http://docs.python.org/library/ast.html#ast.AST._fieldsX-tr0Xrexec.RExec.ok_file_typesr0(hhXChttp://docs.python.org/library/rexec.html#rexec.RExec.ok_file_typesX-tr0X7SimpleXMLRPCServer.SimpleXMLRPCRequestHandler.rpc_pathsr0(hhXnhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCRequestHandler.rpc_pathsX-tr0X1multiprocessing.connection.Listener.last_acceptedr0(hhXehttp://docs.python.org/library/multiprocessing.html#multiprocessing.connection.Listener.last_acceptedX-tr0X3cookielib.DefaultCookiePolicy.DomainStrictNonDomainr0(hhXahttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.DomainStrictNonDomainX-tr0Xselect.kevent.fflagsr0(hhX?http://docs.python.org/library/select.html#select.kevent.fflagsX-tr0Xshlex.shlex.linenor0(hhX<http://docs.python.org/library/shlex.html#shlex.shlex.linenoX-tr0X$doctest.UnexpectedException.exc_infor0(hhXPhttp://docs.python.org/library/doctest.html#doctest.UnexpectedException.exc_infoX-tr0Xrepr.Repr.maxsetr0(hhX9http://docs.python.org/library/repr.html#repr.Repr.maxsetX-tr0X)wsgiref.handlers.BaseHandler.error_statusr0(hhXUhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.error_statusX-tr0Xtarfile.TarInfo.namer0(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarInfo.nameX-tr0Xsocket.socket.typer0(hhX=http://docs.python.org/library/socket.html#socket.socket.typeX-tr0Xmimetypes.MimeTypes.suffix_mapr0(hhXLhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.suffix_mapX-tr0X$textwrap.TextWrapper.drop_whitespacer0(hhXQhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.drop_whitespaceX-tr0X"collections.somenamedtuple._fieldsr0(hhXRhttp://docs.python.org/library/collections.html#collections.somenamedtuple._fieldsX-tr0Xuuid.UUID.variantr0(hhX:http://docs.python.org/library/uuid.html#uuid.UUID.variantX-tr0X0cookielib.DefaultCookiePolicy.DomainRFC2965Matchr0(hhX^http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.DomainRFC2965MatchX-tr0Ximaplib.IMAP4.PROTOCOL_VERSIONr0(hhXJhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.PROTOCOL_VERSIONX-tr0X,wsgiref.handlers.BaseHandler.traceback_limitr0(hhXXhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.traceback_limitX-tr0Xsqlite3.Connection.text_factoryr0(hhXKhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.text_factoryX-tr0Xhtmllib.HTMLParser.formatterr0(hhXHhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.formatterX-tr0Xpyclbr.Class.filer0(hhX<http://docs.python.org/library/pyclbr.html#pyclbr.Class.fileX-tr0X!xml.parsers.expat.ExpatError.coder0(hhXMhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.ExpatError.codeX-tr0Xcsv.Dialect.doublequoter0(hhX?http://docs.python.org/library/csv.html#csv.Dialect.doublequoteX-tr0X&SocketServer.BaseServer.address_familyr0(hhXWhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.address_familyX-tr0Xrfc822.Message.unixfromr0(hhXBhttp://docs.python.org/library/rfc822.html#rfc822.Message.unixfromX-tr0X'xml.parsers.expat.xmlparser.buffer_textr0(hhXShttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.buffer_textX-tr0Xdoctest.DocTest.linenor0(hhXBhttp://docs.python.org/library/doctest.html#doctest.DocTest.linenoX-tr0Xshlex.shlex.wordcharsr0(hhX?http://docs.python.org/library/shlex.html#shlex.shlex.wordcharsX-tr0Xdatetime.time.microsecondr0(hhXFhttp://docs.python.org/library/datetime.html#datetime.time.microsecondX-tr0Xdoctest.DocTest.namer0(hhX@http://docs.python.org/library/doctest.html#doctest.DocTest.nameX-tr0Xxml.dom.Text.datar0(hhX=http://docs.python.org/library/xml.dom.html#xml.dom.Text.dataX-tr0Xurllib2.HTTPError.coder0(hhXBhttp://docs.python.org/library/urllib2.html#urllib2.HTTPError.codeX-tr0X$optparse.Option.ALWAYS_TYPED_ACTIONSr0(hhXQhttp://docs.python.org/library/optparse.html#optparse.Option.ALWAYS_TYPED_ACTIONSX-tr0X+SocketServer.BaseServer.allow_reuse_addressr0(hhX\http://docs.python.org/library/socketserver.html#SocketServer.BaseServer.allow_reuse_addressX-tr0Xtarfile.TarInfo.sizer0(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarInfo.sizeX-tr0Xre.RegexObject.patternr0(hhX=http://docs.python.org/library/re.html#re.RegexObject.patternX-tr0Xsqlite3.Cursor.descriptionr0(hhXFhttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.descriptionX-tr0Xobject.__members__r0(hhX?http://docs.python.org/library/stdtypes.html#object.__members__X-tr0Xoptparse.Option.defaultr0(hhXDhttp://docs.python.org/library/optparse.html#optparse.Option.defaultX-tr0Xctypes.Structure._anonymous_r0(hhXGhttp://docs.python.org/library/ctypes.html#ctypes.Structure._anonymous_X-tr0Xfilecmp.dircmp.right_onlyr0(hhXEhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.right_onlyX-tr0Xcsv.Dialect.quotecharr0(hhX=http://docs.python.org/library/csv.html#csv.Dialect.quotecharX-tr0X#xml.dom.DocumentType.internalSubsetr0(hhXOhttp://docs.python.org/library/xml.dom.html#xml.dom.DocumentType.internalSubsetX-tr0Xsubprocess.Popen.stderrr0(hhXFhttp://docs.python.org/library/subprocess.html#subprocess.Popen.stderrX-tr0Xxmlrpclib.Fault.faultStringr0(hhXIhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.Fault.faultStringX-tr0Xxml.dom.Node.attributesr0(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.Node.attributesX-tr0Xtextwrap.TextWrapper.widthr0(hhXGhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.widthX-tr0Xcsv.csvwriter.dialectr0(hhX=http://docs.python.org/library/csv.html#csv.csvwriter.dialectX-tr0Xxml.dom.Comment.datar0(hhX@http://docs.python.org/library/xml.dom.html#xml.dom.Comment.dataX-tr0Xfilecmp.dircmp.common_filesr0(hhXGhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.common_filesX-tr1X'wsgiref.handlers.BaseHandler.os_environr1(hhXShttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.os_environX-tr1Xrepr.Repr.maxlevelr1(hhX;http://docs.python.org/library/repr.html#repr.Repr.maxlevelX-tr1Xdoctest.Example.exc_msgr1(hhXChttp://docs.python.org/library/doctest.html#doctest.Example.exc_msgX-tr1X!cookielib.FileCookieJar.delayloadr1(hhXOhttp://docs.python.org/library/cookielib.html#cookielib.FileCookieJar.delayloadX-tr1Xzipfile.ZipInfo.filenamer 1(hhXDhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.filenameX-tr 1Xpyclbr.Function.namer 1(hhX?http://docs.python.org/library/pyclbr.html#pyclbr.Function.nameX-tr 1Xrexec.RExec.ok_builtin_modulesr 1(hhXHhttp://docs.python.org/library/rexec.html#rexec.RExec.ok_builtin_modulesX-tr1Xpyclbr.Class.moduler1(hhX>http://docs.python.org/library/pyclbr.html#pyclbr.Class.moduleX-tr1Xfunctools.partial.funcr1(hhXDhttp://docs.python.org/library/functools.html#functools.partial.funcX-tr1Xshlex.shlex.escapedquotesr1(hhXChttp://docs.python.org/library/shlex.html#shlex.shlex.escapedquotesX-tr1Xdatetime.date.dayr1(hhX>http://docs.python.org/library/datetime.html#datetime.date.dayX-tr1Xdatetime.time.maxr1(hhX>http://docs.python.org/library/datetime.html#datetime.time.maxX-tr1X4cookielib.DefaultCookiePolicy.strict_ns_unverifiabler1(hhXbhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.strict_ns_unverifiableX-tr1Xre.MatchObject.stringr1(hhX<http://docs.python.org/library/re.html#re.MatchObject.stringX-tr1Xcmd.Cmd.use_rawinputr1(hhX<http://docs.python.org/library/cmd.html#cmd.Cmd.use_rawinputX-tr1X.wsgiref.handlers.BaseHandler.wsgi_file_wrapperr1(hhXZhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.wsgi_file_wrapperX-tr 1Xurllib2.URLError.reasonr!1(hhXChttp://docs.python.org/library/urllib2.html#urllib2.URLError.reasonX-tr"1X file.encodingr#1(hhX:http://docs.python.org/library/stdtypes.html#file.encodingX-tr$1Xunittest.TestResult.failfastr%1(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestResult.failfastX-tr&1X%textwrap.TextWrapper.break_long_wordsr'1(hhXRhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.break_long_wordsX-tr(1Xtarfile.TarInfo.pax_headersr)1(hhXGhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.pax_headersX-tr*1X!mimetypes.MimeTypes.encodings_mapr+1(hhXOhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.encodings_mapX-tr,1X%io.BlockingIOError.characters_writtenr-1(hhXLhttp://docs.python.org/library/io.html#io.BlockingIOError.characters_writtenX-tr.1Xxml.dom.Node.nodeValuer/1(hhXBhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.nodeValueX-tr01Xrepr.Repr.maxstringr11(hhX<http://docs.python.org/library/repr.html#repr.Repr.maxstringX-tr21Xfilecmp.dircmp.diff_filesr31(hhXEhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.diff_filesX-tr41Xunittest.TestLoader.suiteClassr51(hhXKhttp://docs.python.org/library/unittest.html#unittest.TestLoader.suiteClassX-tr61Xsqlite3.Connection.row_factoryr71(hhXJhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.row_factoryX-tr81Xpyclbr.Function.filer91(hhX?http://docs.python.org/library/pyclbr.html#pyclbr.Function.fileX-tr:1X subprocess.STARTUPINFO.hStdInputr;1(hhXOhttp://docs.python.org/library/subprocess.html#subprocess.STARTUPINFO.hStdInputX-tr<1Xcookielib.Cookie.valuer=1(hhXDhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.valueX-tr>1Xxml.dom.Node.firstChildr?1(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.Node.firstChildX-tr@1X$xml.etree.ElementTree.Element.attribrA1(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.attribX-trB1X*SocketServer.BaseServer.request_queue_sizerC1(hhX[http://docs.python.org/library/socketserver.html#SocketServer.BaseServer.request_queue_sizeX-trD1Xrexec.RExec.ok_sys_namesrE1(hhXBhttp://docs.python.org/library/rexec.html#rexec.RExec.ok_sys_namesX-trF1Xxml.dom.Attr.localNamerG1(hhXBhttp://docs.python.org/library/xml.dom.html#xml.dom.Attr.localNameX-trH1Xcmd.Cmd.undoc_headerrI1(hhX<http://docs.python.org/library/cmd.html#cmd.Cmd.undoc_headerX-trJ1Ximaplib.IMAP4.debugrK1(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.debugX-trL1X3CGIHTTPServer.CGIHTTPRequestHandler.cgi_directoriesrM1(hhXehttp://docs.python.org/library/cgihttpserver.html#CGIHTTPServer.CGIHTTPRequestHandler.cgi_directoriesX-trN1Xre.MatchObject.endposrO1(hhX<http://docs.python.org/library/re.html#re.MatchObject.endposX-trP1Xunittest.TestResult.shouldStoprQ1(hhXKhttp://docs.python.org/library/unittest.html#unittest.TestResult.shouldStopX-trR1Xdatetime.timedelta.maxrS1(hhXChttp://docs.python.org/library/datetime.html#datetime.timedelta.maxX-trT1Xcookielib.Cookie.pathrU1(hhXChttp://docs.python.org/library/cookielib.html#cookielib.Cookie.pathX-trV1X"xml.dom.ProcessingInstruction.datarW1(hhXNhttp://docs.python.org/library/xml.dom.html#xml.dom.ProcessingInstruction.dataX-trX1X>SimpleXMLRPCServer.SimpleXMLRPCRequestHandler.encode_thresholdrY1(hhXuhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCRequestHandler.encode_thresholdX-trZ1Xrfc822.Message.fpr[1(hhX<http://docs.python.org/library/rfc822.html#rfc822.Message.fpX-tr\1X"email.charset.Charset.output_codecr]1(hhXThttp://docs.python.org/library/email.charset.html#email.charset.Charset.output_codecX-tr^1Xsubprocess.Popen.returncoder_1(hhXJhttp://docs.python.org/library/subprocess.html#subprocess.Popen.returncodeX-tr`1X,xml.parsers.expat.xmlparser.CurrentByteIndexra1(hhXXhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.CurrentByteIndexX-trb1Xzipfile.ZipInfo.internal_attrrc1(hhXIhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.internal_attrX-trd1Xmimetypes.MimeTypes.types_mapre1(hhXKhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.types_mapX-trf1Xemail.message.Message.epiloguerg1(hhXPhttp://docs.python.org/library/email.message.html#email.message.Message.epilogueX-trh1Xxml.dom.Node.parentNoderi1(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.Node.parentNodeX-trj1Xxml.dom.Node.previousSiblingrk1(hhXHhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.previousSiblingX-trl1X(unittest.TestLoader.sortTestMethodsUsingrm1(hhXUhttp://docs.python.org/library/unittest.html#unittest.TestLoader.sortTestMethodsUsingX-trn1Xpyclbr.Function.modulero1(hhXAhttp://docs.python.org/library/pyclbr.html#pyclbr.Function.moduleX-trp1Xrepr.Repr.maxarrayrq1(hhX;http://docs.python.org/library/repr.html#repr.Repr.maxarrayX-trr1Xio.TextIOBase.newlinesrs1(hhX=http://docs.python.org/library/io.html#io.TextIOBase.newlinesX-trt1Xxml.dom.DocumentType.publicIdru1(hhXIhttp://docs.python.org/library/xml.dom.html#xml.dom.DocumentType.publicIdX-trv1X!ossaudiodev.oss_audio_device.moderw1(hhXQhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.modeX-trx1X#SocketServer.BaseServer.socket_typery1(hhXThttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.socket_typeX-trz1Xre.MatchObject.lastindexr{1(hhX?http://docs.python.org/library/re.html#re.MatchObject.lastindexX-tr|1Xdatetime.time.minuter}1(hhXAhttp://docs.python.org/library/datetime.html#datetime.time.minuteX-tr~1Xuuid.UUID.bytesr1(hhX8http://docs.python.org/library/uuid.html#uuid.UUID.bytesX-tr1Xhttplib.HTTPResponse.versionr1(hhXHhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.versionX-tr1X!subprocess.STARTUPINFO.hStdOutputr1(hhXPhttp://docs.python.org/library/subprocess.html#subprocess.STARTUPINFO.hStdOutputX-tr1Xfilecmp.dircmp.left_onlyr1(hhXDhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.left_onlyX-tr1Xdoctest.Example.sourcer1(hhXBhttp://docs.python.org/library/doctest.html#doctest.Example.sourceX-tr1X&textwrap.TextWrapper.subsequent_indentr1(hhXShttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.subsequent_indentX-tr1X#cookielib.CookiePolicy.hide_cookie2r1(hhXQhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.hide_cookie2X-tr1Xnumbers.Rational.numeratorr1(hhXFhttp://docs.python.org/library/numbers.html#numbers.Rational.numeratorX-tr1X xml.dom.Document.documentElementr1(hhXLhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.documentElementX-tr1Xio.TextIOWrapper.line_bufferingr1(hhXFhttp://docs.python.org/library/io.html#io.TextIOWrapper.line_bufferingX-tr1Xoptparse.Option.TYPE_CHECKERr1(hhXIhttp://docs.python.org/library/optparse.html#optparse.Option.TYPE_CHECKERX-tr1X file.moder1(hhX6http://docs.python.org/library/stdtypes.html#file.modeX-tr1X uuid.UUID.urnr1(hhX6http://docs.python.org/library/uuid.html#uuid.UUID.urnX-tr1X-BaseHTTPServer.BaseHTTPRequestHandler.headersr1(hhX`http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.headersX-tr1Xinstance.__class__r1(hhX?http://docs.python.org/library/stdtypes.html#instance.__class__X-tr1X!modulefinder.ModuleFinder.modulesr1(hhXRhttp://docs.python.org/library/modulefinder.html#modulefinder.ModuleFinder.modulesX-tr1Xxmlrpclib.ProtocolError.errmsgr1(hhXLhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ProtocolError.errmsgX-tr1X multiprocessing.Process.exitcoder1(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.exitcodeX-tr1XEasyDialogs.ProgressBar.curvalr1(hhXNhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBar.curvalX-tr1Xxml.dom.Element.tagNamer1(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.Element.tagNameX-tr1Xdatetime.date.resolutionr1(hhXEhttp://docs.python.org/library/datetime.html#datetime.date.resolutionX-tr1X*wsgiref.handlers.BaseHandler.error_headersr1(hhXVhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.error_headersX-tr1X%textwrap.TextWrapper.break_on_hyphensr1(hhXRhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.break_on_hyphensX-tr1XCookie.Morsel.coded_valuer1(hhXDhttp://docs.python.org/library/cookie.html#Cookie.Morsel.coded_valueX-tr1Xrfc822.AddressList.addresslistr1(hhXIhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.addresslistX-tr1Xshlex.shlex.debugr1(hhX;http://docs.python.org/library/shlex.html#shlex.shlex.debugX-tr1Xmemoryview.readonlyr1(hhX@http://docs.python.org/library/stdtypes.html#memoryview.readonlyX-tr1Xtarfile.TarInfo.linknamer1(hhXDhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.linknameX-tr1Xurllib2.BaseHandler.parentr1(hhXFhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.parentX-tr1Xre.MatchObject.rer1(hhX8http://docs.python.org/library/re.html#re.MatchObject.reX-tr1Xthreading.Thread.identr1(hhXDhttp://docs.python.org/library/threading.html#threading.Thread.identX-tr1Xoptparse.Option.typer1(hhXAhttp://docs.python.org/library/optparse.html#optparse.Option.typeX-tr1Xxmlrpclib.ProtocolError.urlr1(hhXIhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ProtocolError.urlX-tr1Xzipfile.ZipInfo.create_systemr1(hhXIhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.create_systemX-tr1Xxmlrpclib.ProtocolError.headersr1(hhXMhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ProtocolError.headersX-tr1Xuuid.UUID.bytes_ler1(hhX;http://docs.python.org/library/uuid.html#uuid.UUID.bytes_leX-tr1Xshlex.shlex.eofr1(hhX9http://docs.python.org/library/shlex.html#shlex.shlex.eofX-tr1Xzipfile.ZipInfo.compress_typer1(hhXIhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.compress_typeX-tr1Xrepr.Repr.maxdequer1(hhX;http://docs.python.org/library/repr.html#repr.Repr.maxdequeX-tr1Xselect.kevent.identr1(hhX>http://docs.python.org/library/select.html#select.kevent.identX-tr1Xre.MatchObject.posr1(hhX9http://docs.python.org/library/re.html#re.MatchObject.posX-tr1Xhttplib.HTTPResponse.statusr1(hhXGhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.statusX-tr1Xcmd.Cmd.identcharsr1(hhX:http://docs.python.org/library/cmd.html#cmd.Cmd.identcharsX-tr1X4BaseHTTPServer.BaseHTTPRequestHandler.client_addressr1(hhXghttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.client_addressX-tr1Xxml.dom.Node.nodeNamer1(hhXAhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.nodeNameX-tr1Xzlib.Decompress.unconsumed_tailr1(hhXHhttp://docs.python.org/library/zlib.html#zlib.Decompress.unconsumed_tailX-tr1Xcmd.Cmd.promptr1(hhX6http://docs.python.org/library/cmd.html#cmd.Cmd.promptX-tr1X file.closedr1(hhX8http://docs.python.org/library/stdtypes.html#file.closedX-tr1Xoptparse.Option.STORE_ACTIONSr1(hhXJhttp://docs.python.org/library/optparse.html#optparse.Option.STORE_ACTIONSX-tr1Xfile.softspacer1(hhX;http://docs.python.org/library/stdtypes.html#file.softspaceX-tr1Xcookielib.Cookie.comment_urlr1(hhXJhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.comment_urlX-tr1Xdatetime.time.secondr1(hhXAhttp://docs.python.org/library/datetime.html#datetime.time.secondX-tr1Xre.RegexObject.groupsr1(hhX<http://docs.python.org/library/re.html#re.RegexObject.groupsX-tr1X#xml.parsers.expat.ExpatError.linenor1(hhXOhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.ExpatError.linenoX-tr1Xdatetime.datetime.resolutionr1(hhXIhttp://docs.python.org/library/datetime.html#datetime.datetime.resolutionX-tr1Xast.AST.col_offsetr1(hhX:http://docs.python.org/library/ast.html#ast.AST.col_offsetX-tr1X+xml.parsers.expat.xmlparser.ErrorLineNumberr1(hhXWhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ErrorLineNumberX-tr1Xhttplib.HTTPResponse.msgr1(hhXDhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.msgX-tr1Xxml.dom.Node.prefixr1(hhX?http://docs.python.org/library/xml.dom.html#xml.dom.Node.prefixX-tr1Xctypes._FuncPtr.restyper1(hhXBhttp://docs.python.org/library/ctypes.html#ctypes._FuncPtr.restypeX-tr1X:BaseHTTPServer.BaseHTTPRequestHandler.error_message_formatr1(hhXmhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.error_message_formatX-tr1Xoptparse.Option.choicesr1(hhXDhttp://docs.python.org/library/optparse.html#optparse.Option.choicesX-tr1Xrepr.Repr.maxotherr1(hhX;http://docs.python.org/library/repr.html#repr.Repr.maxotherX-tr1Xpopen2.Popen3.fromchildr1(hhXBhttp://docs.python.org/library/popen2.html#popen2.Popen3.fromchildX-tr1Xmemoryview.ndimr1(hhX<http://docs.python.org/library/stdtypes.html#memoryview.ndimX-tr2Xnumbers.Rational.denominatorr2(hhXHhttp://docs.python.org/library/numbers.html#numbers.Rational.denominatorX-tr2X"distutils.cmd.Command.sub_commandsr2(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.cmd.Command.sub_commandsX-tr2Xuuid.UUID.fieldsr2(hhX9http://docs.python.org/library/uuid.html#uuid.UUID.fieldsX-tr2X*wsgiref.handlers.BaseHandler.wsgi_run_oncer2(hhXVhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.wsgi_run_onceX-tr2X,multiprocessing.managers.BaseManager.addressr 2(hhX`http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManager.addressX-tr 2Xsched.scheduler.queuer 2(hhX?http://docs.python.org/library/sched.html#sched.scheduler.queueX-tr 2Xunittest.TestCase.maxDiffr 2(hhXFhttp://docs.python.org/library/unittest.html#unittest.TestCase.maxDiffX-tr2Xexceptions.UnicodeError.objectr2(hhXMhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeError.objectX-tr2X!email.charset.Charset.input_codecr2(hhXShttp://docs.python.org/library/email.charset.html#email.charset.Charset.input_codecX-tr2Xselect.kevent.filterr2(hhX?http://docs.python.org/library/select.html#select.kevent.filterX-tr2X class.__mro__r2(hhX:http://docs.python.org/library/stdtypes.html#class.__mro__X-tr2Xdatetime.datetime.minuter2(hhXEhttp://docs.python.org/library/datetime.html#datetime.datetime.minuteX-tr2Xdatetime.datetime.maxr2(hhXBhttp://docs.python.org/library/datetime.html#datetime.datetime.maxX-tr2Xre.RegexObject.groupindexr2(hhX@http://docs.python.org/library/re.html#re.RegexObject.groupindexX-tr2X textwrap.TextWrapper.expand_tabsr2(hhXMhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.expand_tabsX-tr2Xxml.dom.Attr.namer2(hhX=http://docs.python.org/library/xml.dom.html#xml.dom.Attr.nameX-tr 2Xzipfile.ZipFile.commentr!2(hhXChttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.commentX-tr"2X%xml.parsers.expat.xmlparser.ErrorCoder#2(hhXQhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ErrorCodeX-tr$2Xpyclbr.Function.linenor%2(hhXAhttp://docs.python.org/library/pyclbr.html#pyclbr.Function.linenoX-tr&2Xdatetime.datetime.microsecondr'2(hhXJhttp://docs.python.org/library/datetime.html#datetime.datetime.microsecondX-tr(2X#ossaudiodev.oss_audio_device.closedr)2(hhXShttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.closedX-tr*2Xthreading.Thread.daemonr+2(hhXEhttp://docs.python.org/library/threading.html#threading.Thread.daemonX-tr,2Xcsv.Dialect.escapecharr-2(hhX>http://docs.python.org/library/csv.html#csv.Dialect.escapecharX-tr.2X'collections.defaultdict.default_factoryr/2(hhXWhttp://docs.python.org/library/collections.html#collections.defaultdict.default_factoryX-tr02Xio.FileIO.moder12(hhX5http://docs.python.org/library/io.html#io.FileIO.modeX-tr22X1cookielib.DefaultCookiePolicy.rfc2109_as_netscaper32(hhX_http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.rfc2109_as_netscapeX-tr42Xzipfile.ZipInfo.commentr52(hhXChttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.commentX-tr62Xdoctest.DocTest.filenamer72(hhXDhttp://docs.python.org/library/doctest.html#doctest.DocTest.filenameX-tr82XCookie.Morsel.valuer92(hhX>http://docs.python.org/library/cookie.html#Cookie.Morsel.valueX-tr:2X"xml.etree.ElementTree.Element.tailr;2(hhX\http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.tailX-tr<2Xformatter.formatter.writerr=2(hhXHhttp://docs.python.org/library/formatter.html#formatter.formatter.writerX-tr>2X-xml.parsers.expat.xmlparser.CurrentLineNumberr?2(hhXYhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.CurrentLineNumberX-tr@2Xtarfile.TarFile.pax_headersrA2(hhXGhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.pax_headersX-trB2X%urllib2.HTTPCookieProcessor.cookiejarrC2(hhXQhttp://docs.python.org/library/urllib2.html#urllib2.HTTPCookieProcessor.cookiejarX-trD2Xre.RegexObject.flagsrE2(hhX;http://docs.python.org/library/re.html#re.RegexObject.flagsX-trF2Xselect.kevent.udatarG2(hhX>http://docs.python.org/library/select.html#select.kevent.udataX-trH2Xsqlite3.Cursor.lastrowidrI2(hhXDhttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.lastrowidX-trJ2X/xml.parsers.expat.xmlparser.CurrentColumnNumberrK2(hhX[http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.CurrentColumnNumberX-trL2X'xml.parsers.expat.xmlparser.buffer_sizerM2(hhXShttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.buffer_sizeX-trN2X:cookielib.DefaultCookiePolicy.strict_ns_set_initial_dollarrO2(hhXhhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.strict_ns_set_initial_dollarX-trP2X cmd.Cmd.introrQ2(hhX5http://docs.python.org/library/cmd.html#cmd.Cmd.introX-trR2Xfilecmp.dircmp.common_funnyrS2(hhXGhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.common_funnyX-trT2Xfilecmp.dircmp.same_filesrU2(hhXEhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.same_filesX-trV2Xrexec.RExec.ok_posix_namesrW2(hhXDhttp://docs.python.org/library/rexec.html#rexec.RExec.ok_posix_namesX-trX2Xrepr.Repr.maxlongrY2(hhX:http://docs.python.org/library/repr.html#repr.Repr.maxlongX-trZ2X uuid.UUID.hexr[2(hhX6http://docs.python.org/library/uuid.html#uuid.UUID.hexX-tr\2Xshlex.shlex.sourcer]2(hhX<http://docs.python.org/library/shlex.html#shlex.shlex.sourceX-tr^2Xzipfile.ZipInfo.extrar_2(hhXAhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.extraX-tr`2Xsubprocess.Popen.pidra2(hhXChttp://docs.python.org/library/subprocess.html#subprocess.Popen.pidX-trb2Xdatetime.timedelta.minrc2(hhXChttp://docs.python.org/library/datetime.html#datetime.timedelta.minX-trd2X*cookielib.DefaultCookiePolicy.DomainStrictre2(hhXXhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.DomainStrictX-trf2Xcollections.deque.maxlenrg2(hhXHhttp://docs.python.org/library/collections.html#collections.deque.maxlenX-trh2Xre.MatchObject.lastgroupri2(hhX?http://docs.python.org/library/re.html#re.MatchObject.lastgroupX-trj2Xcsv.Dialect.strictrk2(hhX:http://docs.python.org/library/csv.html#csv.Dialect.strictX-trl2Xcookielib.CookiePolicy.netscaperm2(hhXMhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.netscapeX-trn2Xrexec.RExec.ok_pathro2(hhX=http://docs.python.org/library/rexec.html#rexec.RExec.ok_pathX-trp2X+cookielib.DefaultCookiePolicy.DomainLiberalrq2(hhXYhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.DomainLiberalX-trr2Xcookielib.Cookie.discardrs2(hhXFhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.discardX-trt2Xoptparse.Option.helpru2(hhXAhttp://docs.python.org/library/optparse.html#optparse.Option.helpX-trv2Xsubprocess.Popen.stdoutrw2(hhXFhttp://docs.python.org/library/subprocess.html#subprocess.Popen.stdoutX-trx2X cmd.Cmd.rulerry2(hhX5http://docs.python.org/library/cmd.html#cmd.Cmd.rulerX-trz2Xexceptions.BaseException.argsr{2(hhXLhttp://docs.python.org/library/exceptions.html#exceptions.BaseException.argsX-tr|2Xselect.kevent.datar}2(hhX=http://docs.python.org/library/select.html#select.kevent.dataX-tr~2Xcookielib.Cookie.rfc2109r2(hhXFhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.rfc2109X-tr2Xcsv.csvreader.line_numr2(hhX>http://docs.python.org/library/csv.html#csv.csvreader.line_numX-tr2Xio.BufferedIOBase.rawr2(hhX<http://docs.python.org/library/io.html#io.BufferedIOBase.rawX-tr2X+multiprocessing.connection.Listener.addressr2(hhX_http://docs.python.org/library/multiprocessing.html#multiprocessing.connection.Listener.addressX-tr2X.wsgiref.handlers.BaseHandler.wsgi_multiprocessr2(hhXZhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.wsgi_multiprocessX-tr2X#cookielib.Cookie.domain_initial_dotr2(hhXQhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.domain_initial_dotX-tr2XCookie.Morsel.keyr2(hhX<http://docs.python.org/library/cookie.html#Cookie.Morsel.keyX-tr2Xfilecmp.dircmp.leftr2(hhX?http://docs.python.org/library/filecmp.html#filecmp.dircmp.leftX-tr2Xzipfile.ZipInfo.file_sizer2(hhXEhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.file_sizeX-tr2Xctypes._FuncPtr.argtypesr2(hhXChttp://docs.python.org/library/ctypes.html#ctypes._FuncPtr.argtypesX-tr2X)wsgiref.handlers.BaseHandler.http_versionr2(hhXUhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.http_versionX-tr2Xunittest.TestResult.failuresr2(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestResult.failuresX-tr2Xcmd.Cmd.lastcmdr2(hhX7http://docs.python.org/library/cmd.html#cmd.Cmd.lastcmdX-tr2Xunittest.TestResult.skippedr2(hhXHhttp://docs.python.org/library/unittest.html#unittest.TestResult.skippedX-tr2Xnumbers.Complex.realr2(hhX@http://docs.python.org/library/numbers.html#numbers.Complex.realX-tr2X9cookielib.DefaultCookiePolicy.strict_rfc2965_unverifiabler2(hhXghttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.strict_rfc2965_unverifiableX-tr2Xxml.dom.DocumentType.namer2(hhXEhttp://docs.python.org/library/xml.dom.html#xml.dom.DocumentType.nameX-tr2Xdatetime.date.monthr2(hhX@http://docs.python.org/library/datetime.html#datetime.date.monthX-tr2X/BaseHTTPServer.BaseHTTPRequestHandler.responsesr2(hhXbhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.responsesX-tr2Xstring.Template.templater2(hhXChttp://docs.python.org/library/string.html#string.Template.templateX-tr2XSocketServer.BaseServer.socketr2(hhXOhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.socketX-tr2X file.newlinesr2(hhX:http://docs.python.org/library/stdtypes.html#file.newlinesX-tr2Xstruct.Struct.sizer2(hhX=http://docs.python.org/library/struct.html#struct.Struct.sizeX-tr2Xxml.dom.NodeList.lengthr2(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.NodeList.lengthX-tr2Xrepr.Repr.maxfrozensetr2(hhX?http://docs.python.org/library/repr.html#repr.Repr.maxfrozensetX-tr2Xfilecmp.dircmp.right_listr2(hhXEhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.right_listX-tr2Xrepr.Repr.maxtupler2(hhX;http://docs.python.org/library/repr.html#repr.Repr.maxtupleX-tr2Xdoctest.Example.wantr2(hhX@http://docs.python.org/library/doctest.html#doctest.Example.wantX-tr2Xio.IOBase.closedr2(hhX7http://docs.python.org/library/io.html#io.IOBase.closedX-tr2Xctypes.PyDLL._handler2(hhX?http://docs.python.org/library/ctypes.html#ctypes.PyDLL._handleX-tr2X2BaseHTTPServer.BaseHTTPRequestHandler.MessageClassr2(hhXehttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.MessageClassX-tr2Xdatetime.datetime.yearr2(hhXChttp://docs.python.org/library/datetime.html#datetime.datetime.yearX-tr2Xarray.array.typecoder2(hhX>http://docs.python.org/library/array.html#array.array.typecodeX-tr2Xzipfile.ZipInfo.compress_sizer2(hhXIhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.compress_sizeX-tr2Xctypes._CData._b_needsfree_r2(hhXFhttp://docs.python.org/library/ctypes.html#ctypes._CData._b_needsfree_X-tr2X$subprocess.CalledProcessError.outputr2(hhXShttp://docs.python.org/library/subprocess.html#subprocess.CalledProcessError.outputX-tr2Xrexec.RExec.nok_builtin_namesr2(hhXGhttp://docs.python.org/library/rexec.html#rexec.RExec.nok_builtin_namesX-tr2Xtarfile.TarInfo.gnamer2(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.gnameX-tr2Xdatetime.time.hourr2(hhX?http://docs.python.org/library/datetime.html#datetime.time.hourX-tr2X'wsgiref.handlers.BaseHandler.error_bodyr2(hhXShttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.error_bodyX-tr2Xfilecmp.dircmp.commonr2(hhXAhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.commonX-tr2Xnumbers.Complex.imagr2(hhX@http://docs.python.org/library/numbers.html#numbers.Complex.imagX-tr2Xoptparse.Option.destr2(hhXAhttp://docs.python.org/library/optparse.html#optparse.Option.destX-tr2X sqlite3.Connection.total_changesr2(hhXLhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.total_changesX-tr2Xdoctest.Example.indentr2(hhXBhttp://docs.python.org/library/doctest.html#doctest.Example.indentX-tr2X+cookielib.DefaultCookiePolicy.strict_domainr2(hhXYhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.strict_domainX-tr2Xoptparse.Option.TYPED_ACTIONSr2(hhXJhttp://docs.python.org/library/optparse.html#optparse.Option.TYPED_ACTIONSX-tr2Xmemoryview.stridesr2(hhX?http://docs.python.org/library/stdtypes.html#memoryview.stridesX-tr2X!xml.etree.ElementTree.Element.tagr2(hhX[http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.tagX-tr2Xcsv.csvreader.dialectr2(hhX=http://docs.python.org/library/csv.html#csv.csvreader.dialectX-tr2X"xml.etree.ElementTree.Element.textr2(hhX\http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.textX-tr2Xdatetime.datetime.dayr2(hhXBhttp://docs.python.org/library/datetime.html#datetime.datetime.dayX-tr2X doctest.UnexpectedException.testr2(hhXLhttp://docs.python.org/library/doctest.html#doctest.UnexpectedException.testX-tr2Xfilecmp.dircmp.subdirsr2(hhXBhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.subdirsX-tr2Xtarfile.TarInfo.moder2(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarInfo.modeX-tr2Xdoctest.DocTestFailure.exampler2(hhXJhttp://docs.python.org/library/doctest.html#doctest.DocTestFailure.exampleX-tr2X+BaseHTTPServer.BaseHTTPRequestHandler.rfiler2(hhX^http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.rfileX-tr2Xctypes._SimpleCData.valuer2(hhXDhttp://docs.python.org/library/ctypes.html#ctypes._SimpleCData.valueX-tr2Xctypes._CData._objectsr2(hhXAhttp://docs.python.org/library/ctypes.html#ctypes._CData._objectsX-tr2Xxml.dom.Node.nextSiblingr2(hhXDhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.nextSiblingX-tr2Xzipfile.ZipInfo.volumer2(hhXBhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.volumeX-tr2Xio.TextIOBase.encodingr2(hhX=http://docs.python.org/library/io.html#io.TextIOBase.encodingX-tr2Xfilecmp.dircmp.rightr2(hhX@http://docs.python.org/library/filecmp.html#filecmp.dircmp.rightX-tr2Xshlex.shlex.quotesr2(hhX<http://docs.python.org/library/shlex.html#shlex.shlex.quotesX-tr2Xobject.__dict__r2(hhX<http://docs.python.org/library/stdtypes.html#object.__dict__X-tr3Xio.FileIO.namer3(hhX5http://docs.python.org/library/io.html#io.FileIO.nameX-tr3Xmemoryview.shaper3(hhX=http://docs.python.org/library/stdtypes.html#memoryview.shapeX-tr3Xclass.__bases__r3(hhX<http://docs.python.org/library/stdtypes.html#class.__bases__X-tr3X+xml.parsers.expat.xmlparser.returns_unicoder3(hhXWhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.returns_unicodeX-tr3X"subprocess.STARTUPINFO.wShowWindowr 3(hhXQhttp://docs.python.org/library/subprocess.html#subprocess.STARTUPINFO.wShowWindowX-tr 3Xzipfile.ZipFile.debugr 3(hhXAhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.debugX-tr 3Xsocket.socket.familyr 3(hhX?http://docs.python.org/library/socket.html#socket.socket.familyX-tr3X'unittest.TestResult.unexpectedSuccessesr3(hhXThttp://docs.python.org/library/unittest.html#unittest.TestResult.unexpectedSuccessesX-tr3X-BaseHTTPServer.BaseHTTPRequestHandler.commandr3(hhX`http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.commandX-tr3Xmemoryview.itemsizer3(hhX@http://docs.python.org/library/stdtypes.html#memoryview.itemsizeX-tr3Xzipfile.ZipInfo.header_offsetr3(hhXIhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.header_offsetX-tr3X0cookielib.DefaultCookiePolicy.DomainStrictNoDotsr3(hhX^http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.DomainStrictNoDotsX-tr3Xzipimport.zipimporter.prefixr3(hhXJhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.prefixX-tr3X'textwrap.TextWrapper.replace_whitespacer3(hhXThttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.replace_whitespaceX-tr3X,BaseHTTPServer.BaseHTTPRequestHandler.serverr3(hhX_http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.serverX-tr3X"unittest.TestCase.failureExceptionr3(hhXOhttp://docs.python.org/library/unittest.html#unittest.TestCase.failureExceptionX-tr 3Xpopen2.Popen3.childerrr!3(hhXAhttp://docs.python.org/library/popen2.html#popen2.Popen3.childerrX-tr"3X!ossaudiodev.oss_audio_device.namer#3(hhXQhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.nameX-tr$3Xcookielib.Cookie.namer%3(hhXChttp://docs.python.org/library/cookielib.html#cookielib.Cookie.nameX-tr&3Xdatetime.timedelta.resolutionr'3(hhXJhttp://docs.python.org/library/datetime.html#datetime.timedelta.resolutionX-tr(3Xxmlrpclib.ProtocolError.errcoder)3(hhXMhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ProtocolError.errcodeX-tr*3Xdatetime.time.resolutionr+3(hhXEhttp://docs.python.org/library/datetime.html#datetime.time.resolutionX-tr,3Xcsv.Dialect.skipinitialspacer-3(hhXDhttp://docs.python.org/library/csv.html#csv.Dialect.skipinitialspaceX-tr.3Xtarfile.TarInfo.typer/3(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarInfo.typeX-tr03Xmemoryview.formatr13(hhX>http://docs.python.org/library/stdtypes.html#memoryview.formatX-tr23X$unittest.TestLoader.testMethodPrefixr33(hhXQhttp://docs.python.org/library/unittest.html#unittest.TestLoader.testMethodPrefixX-tr43Xoptparse.Option.metavarr53(hhXDhttp://docs.python.org/library/optparse.html#optparse.Option.metavarX-tr63X.cookielib.DefaultCookiePolicy.strict_ns_domainr73(hhX\http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.strict_ns_domainX-tr83Xsocket.socket.protor93(hhX>http://docs.python.org/library/socket.html#socket.socket.protoX-tr:3Xxml.dom.DocumentType.systemIdr;3(hhXIhttp://docs.python.org/library/xml.dom.html#xml.dom.DocumentType.systemIdX-tr<3Xshlex.shlex.instreamr=3(hhX>http://docs.python.org/library/shlex.html#shlex.shlex.instreamX-tr>3X$xml.dom.ProcessingInstruction.targetr?3(hhXPhttp://docs.python.org/library/xml.dom.html#xml.dom.ProcessingInstruction.targetX-tr@3Xdoctest.DocTest.docstringrA3(hhXEhttp://docs.python.org/library/doctest.html#doctest.DocTest.docstringX-trB3Xfunctools.partial.argsrC3(hhXDhttp://docs.python.org/library/functools.html#functools.partial.argsX-trD3X uuid.UUID.intrE3(hhX6http://docs.python.org/library/uuid.html#uuid.UUID.intX-trF3X+SocketServer.BaseServer.RequestHandlerClassrG3(hhX\http://docs.python.org/library/socketserver.html#SocketServer.BaseServer.RequestHandlerClassX-trH3Xsubprocess.Popen.stdinrI3(hhXEhttp://docs.python.org/library/subprocess.html#subprocess.Popen.stdinX-trJ3Xrfc822.Message.headersrK3(hhXAhttp://docs.python.org/library/rfc822.html#rfc822.Message.headersX-trL3Xunittest.TestCase.longMessagerM3(hhXJhttp://docs.python.org/library/unittest.html#unittest.TestCase.longMessageX-trN3Xzipfile.ZipInfo.external_attrrO3(hhXIhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.external_attrX-trP3Xtarfile.TarInfo.mtimerQ3(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.mtimeX-trR3X1BaseHTTPServer.BaseHTTPRequestHandler.sys_versionrS3(hhXdhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.sys_versionX-trT3Xzipfile.ZipInfo.date_timerU3(hhXEhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.date_timeX-trV3Xcookielib.Cookie.securerW3(hhXEhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.secureX-trX3Xxml.dom.Node.childNodesrY3(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.Node.childNodesX-trZ3Xurllib2.HTTPError.reasonr[3(hhXDhttp://docs.python.org/library/urllib2.html#urllib2.HTTPError.reasonX-tr\3Xfilecmp.dircmp.common_dirsr]3(hhXFhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.common_dirsX-tr^3X#email.charset.Charset.input_charsetr_3(hhXUhttp://docs.python.org/library/email.charset.html#email.charset.Charset.input_charsetX-tr`3Xzipimport.zipimporter.archivera3(hhXKhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.archiveX-trb3X8BaseHTTPServer.BaseHTTPRequestHandler.error_content_typerc3(hhXkhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.error_content_typeX-trd3Xoptparse.Option.TYPESre3(hhXBhttp://docs.python.org/library/optparse.html#optparse.Option.TYPESX-trf3Xexceptions.UnicodeError.startrg3(hhXLhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeError.startX-trh3Xxml.dom.Node.namespaceURIri3(hhXEhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.namespaceURIX-trj3Xshlex.shlex.whitespace_splitrk3(hhXFhttp://docs.python.org/library/shlex.html#shlex.shlex.whitespace_splitX-trl3Xctypes._FuncPtr.errcheckrm3(hhXChttp://docs.python.org/library/ctypes.html#ctypes._FuncPtr.errcheckX-trn3Xselect.select.PIPE_BUFro3(hhXAhttp://docs.python.org/library/select.html#select.select.PIPE_BUFX-trp3Xpyclbr.Class.linenorq3(hhX>http://docs.python.org/library/pyclbr.html#pyclbr.Class.linenoX-trr3Xobject.__methods__rs3(hhX?http://docs.python.org/library/stdtypes.html#object.__methods__X-trt3X subprocess.STARTUPINFO.hStdErrorru3(hhXOhttp://docs.python.org/library/subprocess.html#subprocess.STARTUPINFO.hStdErrorX-trv3X)textwrap.TextWrapper.fix_sentence_endingsrw3(hhXVhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.fix_sentence_endingsX-trx3Xcsv.Dialect.delimiterry3(hhX=http://docs.python.org/library/csv.html#csv.Dialect.delimiterX-trz3Xcsv.Dialect.quotingr{3(hhX;http://docs.python.org/library/csv.html#csv.Dialect.quotingX-tr|3Xnetrc.netrc.hostsr}3(hhX;http://docs.python.org/library/netrc.html#netrc.netrc.hostsX-tr~3X6BaseHTTPServer.BaseHTTPRequestHandler.protocol_versionr3(hhXihttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.protocol_versionX-tr3Xpyclbr.Class.superr3(hhX=http://docs.python.org/library/pyclbr.html#pyclbr.Class.superX-tr3Xxml.dom.Attr.prefixr3(hhX?http://docs.python.org/library/xml.dom.html#xml.dom.Attr.prefixX-tr3X-wsgiref.handlers.BaseHandler.wsgi_multithreadr3(hhXYhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.wsgi_multithreadX-tr3X#textwrap.TextWrapper.initial_indentr3(hhXPhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.initial_indentX-tr3Xast.AST.linenor3(hhX6http://docs.python.org/library/ast.html#ast.AST.linenoX-tr3Xuuid.UUID.versionr3(hhX:http://docs.python.org/library/uuid.html#uuid.UUID.versionX-tr3X*wsgiref.handlers.BaseHandler.origin_serverr3(hhXVhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.origin_serverX-tr3Xdatetime.datetime.hourr3(hhXChttp://docs.python.org/library/datetime.html#datetime.datetime.hourX-tr3Xxml.dom.Node.nodeTyper3(hhXAhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.nodeTypeX-tr3Xdatetime.date.maxr3(hhX>http://docs.python.org/library/datetime.html#datetime.date.maxX-tr3X8SimpleHTTPServer.SimpleHTTPRequestHandler.server_versionr3(hhXmhttp://docs.python.org/library/simplehttpserver.html#SimpleHTTPServer.SimpleHTTPRequestHandler.server_versionX-tr3Xtarfile.TarFile.posixr3(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.posixX-tr3XScrolledText.ScrolledText.vbarr3(hhXOhttp://docs.python.org/library/scrolledtext.html#ScrolledText.ScrolledText.vbarX-tr3Xcookielib.Cookie.versionr3(hhXFhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.versionX-tr3Xdatetime.time.minr3(hhX>http://docs.python.org/library/datetime.html#datetime.time.minX-tr3Xcookielib.Cookie.portr3(hhXChttp://docs.python.org/library/cookielib.html#cookielib.Cookie.portX-tr3Xmultiprocessing.Process.authkeyr3(hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.authkeyX-tr3Xcookielib.Cookie.expiresr3(hhXFhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.expiresX-tr3X*BaseHTTPServer.BaseHTTPRequestHandler.pathr3(hhX]http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.pathX-tr3X%email.charset.Charset.header_encodingr3(hhXWhttp://docs.python.org/library/email.charset.html#email.charset.Charset.header_encodingX-tr3X5BaseHTTPServer.BaseHTTPRequestHandler.request_versionr3(hhXhhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.request_versionX-tr3Xoptparse.Option.nargsr3(hhXBhttp://docs.python.org/library/optparse.html#optparse.Option.nargsX-tr3Xshlex.shlex.infiler3(hhX<http://docs.python.org/library/shlex.html#shlex.shlex.infileX-tr3X#doctest.UnexpectedException.exampler3(hhXOhttp://docs.python.org/library/doctest.html#doctest.UnexpectedException.exampleX-tr3Xsubprocess.STARTUPINFO.dwFlagsr3(hhXMhttp://docs.python.org/library/subprocess.html#subprocess.STARTUPINFO.dwFlagsX-tr3Xoptparse.Option.callback_kwargsr3(hhXLhttp://docs.python.org/library/optparse.html#optparse.Option.callback_kwargsX-tr3Xfunctools.partial.keywordsr3(hhXHhttp://docs.python.org/library/functools.html#functools.partial.keywordsX-tr3Xxml.dom.Node.lastChildr3(hhXBhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.lastChildX-tr3X*xml.parsers.expat.xmlparser.ErrorByteIndexr3(hhXVhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ErrorByteIndexX-tr3Xlogging.Logger.propagater3(hhXDhttp://docs.python.org/library/logging.html#logging.Logger.propagateX-tr3Xhtmllib.HTMLParser.nofillr3(hhXEhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.nofillX-tr3Xxmlrpclib.Binary.datar3(hhXChttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.Binary.dataX-tr3X file.namer3(hhX6http://docs.python.org/library/stdtypes.html#file.nameX-tr3Xmultiprocessing.Process.namer3(hhXPhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.nameX-tr3X cookielib.FileCookieJar.filenamer3(hhXNhttp://docs.python.org/library/cookielib.html#cookielib.FileCookieJar.filenameX-tr3Xzipfile.ZipInfo.extract_versionr3(hhXKhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.extract_versionX-tr3Xunittest.TestResult.errorsr3(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestResult.errorsX-tr3X&SocketServer.BaseServer.server_addressr3(hhXWhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.server_addressX-tr3Xshlex.shlex.commentersr3(hhX@http://docs.python.org/library/shlex.html#shlex.shlex.commentersX-tr3Xdatetime.datetime.tzinfor3(hhXEhttp://docs.python.org/library/datetime.html#datetime.datetime.tzinfoX-tr3Xmultiprocessing.Process.pidr3(hhXOhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.pidX-tr3X!subprocess.CalledProcessError.cmdr3(hhXPhttp://docs.python.org/library/subprocess.html#subprocess.CalledProcessError.cmdX-tr3Xtarfile.TarInfo.uidr3(hhX?http://docs.python.org/library/tarfile.html#tarfile.TarInfo.uidX-tr3X file.errorsr3(hhX8http://docs.python.org/library/stdtypes.html#file.errorsX-tr3Xexceptions.UnicodeError.endr3(hhXJhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeError.endX-tr3Xrepr.Repr.maxlistr3(hhX:http://docs.python.org/library/repr.html#repr.Repr.maxlistX-tr3Xcmd.Cmd.doc_headerr3(hhX:http://docs.python.org/library/cmd.html#cmd.Cmd.doc_headerX-tr3Xshlex.shlex.whitespacer3(hhX@http://docs.python.org/library/shlex.html#shlex.shlex.whitespaceX-tr3X$email.charset.Charset.output_charsetr3(hhXVhttp://docs.python.org/library/email.charset.html#email.charset.Charset.output_charsetX-tr3Xxml.dom.Node.localNamer3(hhXBhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.localNameX-tr3Xfilecmp.dircmp.left_listr3(hhXDhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.left_listX-tr3Xmultiprocessing.Process.daemonr3(hhXRhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.daemonX-tr3Xclass.__name__r3(hhX;http://docs.python.org/library/stdtypes.html#class.__name__X-tr3Xdatetime.datetime.minr3(hhXBhttp://docs.python.org/library/datetime.html#datetime.datetime.minX-tr3Xfilecmp.dircmp.funny_filesr3(hhXFhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.funny_filesX-tr3X!mimetypes.MimeTypes.types_map_invr3(hhXOhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.types_map_invX-tr3Xexceptions.UnicodeError.reasonr3(hhXMhttp://docs.python.org/library/exceptions.html#exceptions.UnicodeError.reasonX-tr3Xshlex.shlex.escaper3(hhX<http://docs.python.org/library/shlex.html#shlex.shlex.escapeX-tr3Xunittest.TestResult.testsRunr3(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestResult.testsRunX-tr3Xcookielib.CookiePolicy.rfc2965r3(hhXLhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.rfc2965X-tr3Xoptparse.Option.callbackr3(hhXEhttp://docs.python.org/library/optparse.html#optparse.Option.callbackX-tr3Xthreading.Thread.namer3(hhXChttp://docs.python.org/library/threading.html#threading.Thread.nameX-tr3Xzipfile.ZipInfo.create_versionr3(hhXJhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.create_versionX-tr3X8SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_mapr3(hhXmhttp://docs.python.org/library/simplehttpserver.html#SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_mapX-tr4Xzipfile.ZipInfo.flag_bitsr4(hhXEhttp://docs.python.org/library/zipfile.html#zipfile.ZipInfo.flag_bitsX-tr4Xdatetime.datetime.monthr4(hhXDhttp://docs.python.org/library/datetime.html#datetime.datetime.monthX-tr4XUserString.MutableString.datar4(hhXJhttp://docs.python.org/library/userdict.html#UserString.MutableString.dataX-tr4Xrepr.Repr.maxdictr4(hhX:http://docs.python.org/library/repr.html#repr.Repr.maxdictX-tr4X.xml.parsers.expat.xmlparser.ordered_attributesr 4(hhXZhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ordered_attributesX-tr 4Xmultifile.MultiFile.levelr 4(hhXGhttp://docs.python.org/library/multifile.html#multifile.MultiFile.levelX-tr 4Xpyclbr.Class.namer 4(hhX<http://docs.python.org/library/pyclbr.html#pyclbr.Class.nameX-tr4Xtarfile.TarInfo.gidr4(hhX?http://docs.python.org/library/tarfile.html#tarfile.TarInfo.gidX-tr4Xsqlite3.Cursor.rowcountr4(hhXChttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.rowcountX-tr4Xzlib.Decompress.unused_datar4(hhXDhttp://docs.python.org/library/zlib.html#zlib.Decompress.unused_dataX-tr4Xoptparse.Option.actionr4(hhXChttp://docs.python.org/library/optparse.html#optparse.Option.actionX-tr4Xoptparse.Option.constr4(hhXBhttp://docs.python.org/library/optparse.html#optparse.Option.constX-tr4XEasyDialogs.ProgressBar.maxvalr4(hhXNhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBar.maxvalX-tr4Xselect.kevent.flagsr4(hhX>http://docs.python.org/library/select.html#select.kevent.flagsX-tr4Xdatetime.date.yearr4(hhX?http://docs.python.org/library/datetime.html#datetime.date.yearX-tr4Xzipfile.ZipInfo.CRCr4(hhX?http://docs.python.org/library/zipfile.html#zipfile.ZipInfo.CRCX-tr 4uX py:moduler!4}r"4(Xfilecmpr#4(hhX3http://docs.python.org/library/filecmp.html#filecmpX-tr$4Xcoder%4(hhX-http://docs.python.org/library/code.html#codeX-tr&4Xdbmr'4(hhX+http://docs.python.org/library/dbm.html#dbmX-tr(4Xcurses.textpadr)4(hhX9http://docs.python.org/library/curses.html#curses.textpadX-tr*4Xrandomr+4(hhX1http://docs.python.org/library/random.html#randomX-tr,4Xheapqr-4(hhX/http://docs.python.org/library/heapq.html#heapqX-tr.4Xdatetimer/4(hhX5http://docs.python.org/library/datetime.html#datetimeX-tr04Xdistutils.debugr14(hhX<http://docs.python.org/distutils/apiref.html#distutils.debugX-tr24Xgcr34(hhX)http://docs.python.org/library/gc.html#gcX-tr44X macresourcer54(hhX5http://docs.python.org/library/undoc.html#macresourceX-tr64Xptyr74(hhX+http://docs.python.org/library/pty.html#ptyX-tr84Xdistutils.sysconfigr94(hhX@http://docs.python.org/distutils/apiref.html#distutils.sysconfigX-tr:4Xemail.iteratorsr;4(hhXChttp://docs.python.org/library/email.iterators.html#email.iteratorsX-tr<4Xgdbmr=4(hhX-http://docs.python.org/library/gdbm.html#gdbmX-tr>4Xglr?4(hhX)http://docs.python.org/library/gl.html#glX-tr@4XxmlrA4(hhX+http://docs.python.org/library/xml.html#xmlX-trB4Xdistutils.bcppcompilerrC4(hhXChttp://docs.python.org/distutils/apiref.html#distutils.bcppcompilerX-trD4X importlibrE4(hhX7http://docs.python.org/library/importlib.html#importlibX-trF4XmimifyrG4(hhX1http://docs.python.org/library/mimify.html#mimifyX-trH4X Carbon.ListsrI4(hhX7http://docs.python.org/library/carbon.html#Carbon.ListsX-trJ4XpprintrK4(hhX1http://docs.python.org/library/pprint.html#pprintX-trL4XautoGILrM4(hhX3http://docs.python.org/library/autogil.html#autoGILX-trN4XCarbon.QuickTimerO4(hhX;http://docs.python.org/library/carbon.html#Carbon.QuickTimeX-trP4XrexecrQ4(hhX/http://docs.python.org/library/rexec.html#rexecX-trR4XcProfilerS4(hhX4http://docs.python.org/library/profile.html#cProfileX-trT4Xxml.etree.ElementTreerU4(hhXOhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTreeX-trV4XsmtplibrW4(hhX3http://docs.python.org/library/smtplib.html#smtplibX-trX4X functoolsrY4(hhX7http://docs.python.org/library/functools.html#functoolsX-trZ4Xdlr[4(hhX)http://docs.python.org/library/dl.html#dlX-tr\4Xstringr]4(hhX1http://docs.python.org/library/string.html#stringX-tr^4X SocketServerr_4(hhX=http://docs.python.org/library/socketserver.html#SocketServerX-tr`4Xnntplibra4(hhX3http://docs.python.org/library/nntplib.html#nntplibX-trb4Xzipfilerc4(hhX3http://docs.python.org/library/zipfile.html#zipfileX-trd4Xreprre4(hhX-http://docs.python.org/library/repr.html#reprX-trf4Xwaverg4(hhX-http://docs.python.org/library/wave.html#waveX-trh4X distutils.cmdri4(hhX:http://docs.python.org/distutils/apiref.html#distutils.cmdX-trj4Xaetoolsrk4(hhX3http://docs.python.org/library/aetools.html#aetoolsX-trl4Xjpegrm4(hhX-http://docs.python.org/library/jpeg.html#jpegX-trn4Xhotshotro4(hhX3http://docs.python.org/library/hotshot.html#hotshotX-trp4XGLrq4(hhX)http://docs.python.org/library/gl.html#GLX-trr4X sunaudiodevrs4(hhX8http://docs.python.org/library/sunaudio.html#sunaudiodevX-trt4Xdistutils.filelistru4(hhX?http://docs.python.org/distutils/apiref.html#distutils.filelistX-trv4Xttkrw4(hhX+http://docs.python.org/library/ttk.html#ttkX-trx4X formatterry4(hhX7http://docs.python.org/library/formatter.html#formatterX-trz4Xresourcer{4(hhX5http://docs.python.org/library/resource.html#resourceX-tr|4Xsignalr}4(hhX1http://docs.python.org/library/signal.html#signalX-tr~4Xbisectr4(hhX1http://docs.python.org/library/bisect.html#bisectX-tr4Xcmdr4(hhX+http://docs.python.org/library/cmd.html#cmdX-tr4Xbinhexr4(hhX1http://docs.python.org/library/binhex.html#binhexX-tr4Xpydocr4(hhX/http://docs.python.org/library/pydoc.html#pydocX-tr4Ximageopr4(hhX3http://docs.python.org/library/imageop.html#imageopX-tr4Xrunpyr4(hhX/http://docs.python.org/library/runpy.html#runpyX-tr4Xmsilibr4(hhX1http://docs.python.org/library/msilib.html#msilibX-tr4Xshlexr4(hhX/http://docs.python.org/library/shlex.html#shlexX-tr4Xmultiprocessing.poolr4(hhXHhttp://docs.python.org/library/multiprocessing.html#multiprocessing.poolX-tr4Xmultiprocessingr4(hhXChttp://docs.python.org/library/multiprocessing.html#multiprocessingX-tr4Xdummy_threadingr4(hhXChttp://docs.python.org/library/dummy_threading.html#dummy_threadingX-tr4Xdisr4(hhX+http://docs.python.org/library/dis.html#disX-tr4Xxml.dom.minidomr4(hhXChttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidomX-tr4Xasyncorer4(hhX5http://docs.python.org/library/asyncore.html#asyncoreX-tr4X compileallr4(hhX9http://docs.python.org/library/compileall.html#compileallX-tr4Xftplibr4(hhX1http://docs.python.org/library/ftplib.html#ftplibX-tr4Xlocaler4(hhX1http://docs.python.org/library/locale.html#localeX-tr4Xpopen2r4(hhX1http://docs.python.org/library/popen2.html#popen2X-tr4Xsyslogr4(hhX1http://docs.python.org/library/syslog.html#syslogX-tr4Xxml.sax.saxutilsr4(hhXBhttp://docs.python.org/library/xml.sax.utils.html#xml.sax.saxutilsX-tr4X Carbon.OSAr4(hhX5http://docs.python.org/library/carbon.html#Carbon.OSAX-tr4Xcalendarr4(hhX5http://docs.python.org/library/calendar.html#calendarX-tr4Xmailcapr4(hhX3http://docs.python.org/library/mailcap.html#mailcapX-tr4Xtimeitr4(hhX1http://docs.python.org/library/timeit.html#timeitX-tr4Xabcr4(hhX+http://docs.python.org/library/abc.html#abcX-tr4Xplistlibr4(hhX5http://docs.python.org/library/plistlib.html#plistlibX-tr4XCarbon.Componentsr4(hhX<http://docs.python.org/library/carbon.html#Carbon.ComponentsX-tr4Xbdbr4(hhX+http://docs.python.org/library/bdb.html#bdbX-tr4Xatexitr4(hhX1http://docs.python.org/library/atexit.html#atexitX-tr4X py_compiler4(hhX9http://docs.python.org/library/py_compile.html#py_compileX-tr4Xpipesr4(hhX/http://docs.python.org/library/pipes.html#pipesX-tr4Xtarfiler4(hhX3http://docs.python.org/library/tarfile.html#tarfileX-tr4Xurllibr4(hhX1http://docs.python.org/library/urllib.html#urllibX-tr4Xfpformatr4(hhX5http://docs.python.org/library/fpformat.html#fpformatX-tr4XUserListr4(hhX5http://docs.python.org/library/userdict.html#UserListX-tr4Xmutexr4(hhX/http://docs.python.org/library/mutex.html#mutexX-tr4XCarbon.Dragconstr4(hhX;http://docs.python.org/library/carbon.html#Carbon.DragconstX-tr4XUserDictr4(hhX5http://docs.python.org/library/userdict.html#UserDictX-tr4Xnewr4(hhX+http://docs.python.org/library/new.html#newX-tr4X distutils.command.bdist_packagerr4(hhXMhttp://docs.python.org/distutils/apiref.html#distutils.command.bdist_packagerX-tr4Xemailr4(hhX/http://docs.python.org/library/email.html#emailX-tr4Xfcntlr4(hhX/http://docs.python.org/library/fcntl.html#fcntlX-tr4X PixMapWrapperr4(hhX7http://docs.python.org/library/undoc.html#PixMapWrapperX-tr4XCarbon.QuickDrawr4(hhX;http://docs.python.org/library/carbon.html#Carbon.QuickDrawX-tr4Xdistutils.command.registerr4(hhXGhttp://docs.python.org/distutils/apiref.html#distutils.command.registerX-tr4Xoptparser4(hhX5http://docs.python.org/library/optparse.html#optparseX-tr4Xmailboxr4(hhX3http://docs.python.org/library/mailbox.html#mailboxX-tr4XCarbon.Dialogsr4(hhX9http://docs.python.org/library/carbon.html#Carbon.DialogsX-tr4X exceptionsr4(hhX9http://docs.python.org/library/exceptions.html#exceptionsX-tr4X subprocessr4(hhX9http://docs.python.org/library/subprocess.html#subprocessX-tr4Xctypesr4(hhX1http://docs.python.org/library/ctypes.html#ctypesX-tr4Xcodecsr4(hhX1http://docs.python.org/library/codecs.html#codecsX-tr4Xcolorsysr4(hhX5http://docs.python.org/library/colorsys.html#colorsysX-tr4Xdistutils.ccompilerr4(hhX@http://docs.python.org/distutils/apiref.html#distutils.ccompilerX-tr4Xstructr4(hhX1http://docs.python.org/library/struct.html#structX-tr4XQueuer4(hhX/http://docs.python.org/library/queue.html#QueueX-tr4Xcommandsr4(hhX5http://docs.python.org/library/commands.html#commandsX-tr4X buildtoolsr4(hhX4http://docs.python.org/library/undoc.html#buildtoolsX-tr4X email.headerr4(hhX=http://docs.python.org/library/email.header.html#email.headerX-tr4XStringIOr4(hhX5http://docs.python.org/library/stringio.html#StringIOX-tr4XDocXMLRPCServerr4(hhXChttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServerX-tr4X Carbon.Folderr4(hhX8http://docs.python.org/library/carbon.html#Carbon.FolderX-tr4Xweakrefr4(hhX3http://docs.python.org/library/weakref.html#weakrefX-tr4X itertoolsr4(hhX7http://docs.python.org/library/itertools.html#itertoolsX-tr4Xdistutils.spawnr4(hhX<http://docs.python.org/distutils/apiref.html#distutils.spawnX-tr5Xdoctestr5(hhX3http://docs.python.org/library/doctest.html#doctestX-tr5Xaetypesr5(hhX3http://docs.python.org/library/aetypes.html#aetypesX-tr5X curses.panelr5(hhX=http://docs.python.org/library/curses.panel.html#curses.panelX-tr5Xpdbr5(hhX+http://docs.python.org/library/pdb.html#pdbX-tr5XCarbon.LaunchServicesr 5(hhX@http://docs.python.org/library/carbon.html#Carbon.LaunchServicesX-tr 5Xbase64r 5(hhX1http://docs.python.org/library/base64.html#base64X-tr 5Xdistutils.command.bdist_msir 5(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.command.bdist_msiX-tr5Xunittestr5(hhX5http://docs.python.org/library/unittest.html#unittestX-tr5Xcdr5(hhX)http://docs.python.org/library/cd.html#cdX-tr5XBastionr5(hhX3http://docs.python.org/library/bastion.html#BastionX-tr5XCarbon.Foldersr5(hhX9http://docs.python.org/library/carbon.html#Carbon.FoldersX-tr5Xcfmfiler5(hhX1http://docs.python.org/library/undoc.html#cfmfileX-tr5X email.charsetr5(hhX?http://docs.python.org/library/email.charset.html#email.charsetX-tr5Xcopy_regr5(hhX5http://docs.python.org/library/copy_reg.html#copy_regX-tr5X Carbon.Launchr5(hhX8http://docs.python.org/library/carbon.html#Carbon.LaunchX-tr5XFLr5(hhX)http://docs.python.org/library/fl.html#FLX-tr 5Xselectr!5(hhX1http://docs.python.org/library/select.html#selectX-tr"5X MiniAEFramer#5(hhX;http://docs.python.org/library/miniaeframe.html#MiniAEFrameX-tr$5Xpkgutilr%5(hhX3http://docs.python.org/library/pkgutil.html#pkgutilX-tr&5Ximpr'5(hhX+http://docs.python.org/library/imp.html#impX-tr(5Xbinasciir)5(hhX5http://docs.python.org/library/binascii.html#binasciiX-tr*5XCarbon.MacHelpr+5(hhX9http://docs.python.org/library/carbon.html#Carbon.MacHelpX-tr,5Xjsonr-5(hhX-http://docs.python.org/library/json.html#jsonX-tr.5Xtokenizer/5(hhX5http://docs.python.org/library/tokenize.html#tokenizeX-tr05Xcompiler.visitorr15(hhX=http://docs.python.org/library/compiler.html#compiler.visitorX-tr25X fractionsr35(hhX7http://docs.python.org/library/fractions.html#fractionsX-tr45X macerrorsr55(hhX3http://docs.python.org/library/undoc.html#macerrorsX-tr65XcPickler75(hhX2http://docs.python.org/library/pickle.html#cPickleX-tr85X posixfiler95(hhX7http://docs.python.org/library/posixfile.html#posixfileX-tr:5Xdistutils.command.build_pyr;5(hhXGhttp://docs.python.org/distutils/apiref.html#distutils.command.build_pyX-tr<5Ximgfiler=5(hhX3http://docs.python.org/library/imgfile.html#imgfileX-tr>5XSimpleXMLRPCServerr?5(hhXIhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServerX-tr@5X email.utilsrA5(hhX:http://docs.python.org/library/email.util.html#email.utilsX-trB5XalrC5(hhX)http://docs.python.org/library/al.html#alX-trD5X Carbon.MenusrE5(hhX7http://docs.python.org/library/carbon.html#Carbon.MenusX-trF5X webbrowserrG5(hhX9http://docs.python.org/library/webbrowser.html#webbrowserX-trH5X Carbon.QdoffsrI5(hhX8http://docs.python.org/library/carbon.html#Carbon.QdoffsX-trJ5X pickletoolsrK5(hhX;http://docs.python.org/library/pickletools.html#pickletoolsX-trL5X unicodedatarM5(hhX;http://docs.python.org/library/unicodedata.html#unicodedataX-trN5XanydbmrO5(hhX1http://docs.python.org/library/anydbm.html#anydbmX-trP5X wsgiref.utilrQ5(hhX8http://docs.python.org/library/wsgiref.html#wsgiref.utilX-trR5XflprS5(hhX*http://docs.python.org/library/fl.html#flpX-trT5XzlibrU5(hhX-http://docs.python.org/library/zlib.html#zlibX-trV5X modulefinderrW5(hhX=http://docs.python.org/library/modulefinder.html#modulefinderX-trX5Xxml.saxrY5(hhX3http://docs.python.org/library/xml.sax.html#xml.saxX-trZ5Xshelver[5(hhX1http://docs.python.org/library/shelve.html#shelveX-tr\5Xfnmatchr]5(hhX3http://docs.python.org/library/fnmatch.html#fnmatchX-tr^5Xwsgiref.headersr_5(hhX;http://docs.python.org/library/wsgiref.html#wsgiref.headersX-tr`5Xpicklera5(hhX1http://docs.python.org/library/pickle.html#pickleX-trb5XCarbon.CoreFounationrc5(hhX?http://docs.python.org/library/carbon.html#Carbon.CoreFounationX-trd5XTixre5(hhX+http://docs.python.org/library/tix.html#TixX-trf5Xiorg5(hhX)http://docs.python.org/library/io.html#ioX-trh5X CGIHTTPServerri5(hhX?http://docs.python.org/library/cgihttpserver.html#CGIHTTPServerX-trj5Xdistutils.command.build_extrk5(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.command.build_extX-trl5X Carbon.Listrm5(hhX6http://docs.python.org/library/carbon.html#Carbon.ListX-trn5Xsitero5(hhX-http://docs.python.org/library/site.html#siteX-trp5Xaepackrq5(hhX1http://docs.python.org/library/aepack.html#aepackX-trr5Ximputilrs5(hhX3http://docs.python.org/library/imputil.html#imputilX-trt5XNavru5(hhX-http://docs.python.org/library/undoc.html#NavX-trv5Xnumbersrw5(hhX3http://docs.python.org/library/numbers.html#numbersX-trx5X Carbon.Scrapry5(hhX7http://docs.python.org/library/carbon.html#Carbon.ScrapX-trz5XCarbon.CarbonEvtr{5(hhX;http://docs.python.org/library/carbon.html#Carbon.CarbonEvtX-tr|5Xicr}5(hhX)http://docs.python.org/library/ic.html#icX-tr~5Xsndhdrr5(hhX1http://docs.python.org/library/sndhdr.html#sndhdrX-tr5X Carbon.Icnsr5(hhX6http://docs.python.org/library/carbon.html#Carbon.IcnsX-tr5X email.messager5(hhX?http://docs.python.org/library/email.message.html#email.messageX-tr5Xdistutils.command.sdistr5(hhXDhttp://docs.python.org/distutils/apiref.html#distutils.command.sdistX-tr5Xshutilr5(hhX1http://docs.python.org/library/shutil.html#shutilX-tr5Xwsgiref.validater5(hhX<http://docs.python.org/library/wsgiref.html#wsgiref.validateX-tr5X videoreaderr5(hhX5http://docs.python.org/library/undoc.html#videoreaderX-tr5Xdumbdbmr5(hhX3http://docs.python.org/library/dumbdbm.html#dumbdbmX-tr5X Carbon.Appr5(hhX5http://docs.python.org/library/carbon.html#Carbon.AppX-tr5X Carbon.Sndr5(hhX5http://docs.python.org/library/carbon.html#Carbon.SndX-tr5X MimeWriterr5(hhX9http://docs.python.org/library/mimewriter.html#MimeWriterX-tr5Xsqlite3r5(hhX3http://docs.python.org/library/sqlite3.html#sqlite3X-tr5X ossaudiodevr5(hhX;http://docs.python.org/library/ossaudiodev.html#ossaudiodevX-tr5Xdistutils.versionr5(hhX>http://docs.python.org/distutils/apiref.html#distutils.versionX-tr5Xcsvr5(hhX+http://docs.python.org/library/csv.html#csvX-tr5XCarbon.OSAconstr5(hhX:http://docs.python.org/library/carbon.html#Carbon.OSAconstX-tr5Xtabnannyr5(hhX5http://docs.python.org/library/tabnanny.html#tabnannyX-tr5Xschedr5(hhX/http://docs.python.org/library/sched.html#schedX-tr5Xstatvfsr5(hhX3http://docs.python.org/library/statvfs.html#statvfsX-tr5Xrfc822r5(hhX1http://docs.python.org/library/rfc822.html#rfc822X-tr5Xgensuitemoduler5(hhXAhttp://docs.python.org/library/gensuitemodule.html#gensuitemoduleX-tr5Xpstatsr5(hhX2http://docs.python.org/library/profile.html#pstatsX-tr5Xhtmlentitydefsr5(hhX:http://docs.python.org/library/htmllib.html#htmlentitydefsX-tr5Xsysr5(hhX+http://docs.python.org/library/sys.html#sysX-tr5Xuserr5(hhX-http://docs.python.org/library/user.html#userX-tr5Xcodeopr5(hhX1http://docs.python.org/library/codeop.html#codeopX-tr5Xnisr5(hhX+http://docs.python.org/library/nis.html#nisX-tr5X email.parserr5(hhX=http://docs.python.org/library/email.parser.html#email.parserX-tr5X Carbon.Soundr5(hhX7http://docs.python.org/library/carbon.html#Carbon.SoundX-tr5X Carbon.Eventsr5(hhX8http://docs.python.org/library/carbon.html#Carbon.EventsX-tr5Xtypesr5(hhX/http://docs.python.org/library/types.html#typesX-tr5XCarbon.ControlAccessorr5(hhXAhttp://docs.python.org/library/carbon.html#Carbon.ControlAccessorX-tr5Xargparser5(hhX5http://docs.python.org/library/argparse.html#argparseX-tr5Xgrpr5(hhX+http://docs.python.org/library/grp.html#grpX-tr5Xsslr5(hhX+http://docs.python.org/library/ssl.html#sslX-tr5Xdistutils.corer5(hhX;http://docs.python.org/distutils/apiref.html#distutils.coreX-tr5Xdifflibr5(hhX3http://docs.python.org/library/difflib.html#difflibX-tr5Xdistutils.errorsr5(hhX=http://docs.python.org/distutils/apiref.html#distutils.errorsX-tr5Xurlparser5(hhX5http://docs.python.org/library/urlparse.html#urlparseX-tr5Xencodings.idnar5(hhX9http://docs.python.org/library/codecs.html#encodings.idnaX-tr5Xdistutils.msvccompilerr5(hhXChttp://docs.python.org/distutils/apiref.html#distutils.msvccompilerX-tr5Xsetsr5(hhX-http://docs.python.org/library/sets.html#setsX-tr5Xgzipr5(hhX-http://docs.python.org/library/gzip.html#gzipX-tr5Xmhlibr5(hhX/http://docs.python.org/library/mhlib.html#mhlibX-tr5X rlcompleterr5(hhX;http://docs.python.org/library/rlcompleter.html#rlcompleterX-tr5Xttyr5(hhX+http://docs.python.org/library/tty.html#ttyX-tr5XCarbon.CarbonEventsr5(hhX>http://docs.python.org/library/carbon.html#Carbon.CarbonEventsX-tr5X distutilsr5(hhX7http://docs.python.org/library/distutils.html#distutilsX-tr5Xaudioopr5(hhX3http://docs.python.org/library/audioop.html#audioopX-tr5Xdistutils.command.configr5(hhXEhttp://docs.python.org/distutils/apiref.html#distutils.command.configX-tr5XCarbon.CoreGraphicsr5(hhX>http://docs.python.org/library/carbon.html#Carbon.CoreGraphicsX-tr5Xaifcr5(hhX-http://docs.python.org/library/aifc.html#aifcX-tr5X sysconfigr5(hhX7http://docs.python.org/library/sysconfig.html#sysconfigX-tr5Xwhichdbr5(hhX3http://docs.python.org/library/whichdb.html#whichdbX-tr5Xtest.test_supportr5(hhX:http://docs.python.org/library/test.html#test.test_supportX-tr5Xdistutils.fancy_getoptr5(hhXChttp://docs.python.org/distutils/apiref.html#distutils.fancy_getoptX-tr5XCarbon.IBCarbonRuntimer5(hhXAhttp://docs.python.org/library/carbon.html#Carbon.IBCarbonRuntimeX-tr5X ColorPickerr5(hhX;http://docs.python.org/library/colorpicker.html#ColorPickerX-tr5X Carbon.Iconsr5(hhX7http://docs.python.org/library/carbon.html#Carbon.IconsX-tr5X email.mimer5(hhX9http://docs.python.org/library/email.mime.html#email.mimeX-tr5Xmsvcrtr5(hhX1http://docs.python.org/library/msvcrt.html#msvcrtX-tr5Xdistutils.command.buildr5(hhXDhttp://docs.python.org/distutils/apiref.html#distutils.command.buildX-tr5Xsgmllibr5(hhX3http://docs.python.org/library/sgmllib.html#sgmllibX-tr5Xdistutils.dep_utilr5(hhX?http://docs.python.org/distutils/apiref.html#distutils.dep_utilX-tr5Xuuidr5(hhX-http://docs.python.org/library/uuid.html#uuidX-tr6Xtempfiler6(hhX5http://docs.python.org/library/tempfile.html#tempfileX-tr6Xmmapr6(hhX-http://docs.python.org/library/mmap.html#mmapX-tr6XCarbon.Appearancer6(hhX<http://docs.python.org/library/carbon.html#Carbon.AppearanceX-tr6Xmultiprocessing.sharedctypesr6(hhXPhttp://docs.python.org/library/multiprocessing.html#multiprocessing.sharedctypesX-tr6X Carbon.Menur 6(hhX6http://docs.python.org/library/carbon.html#Carbon.MenuX-tr 6XMacOSr 6(hhX/http://docs.python.org/library/macos.html#MacOSX-tr 6Xlogging.configr 6(hhXAhttp://docs.python.org/library/logging.config.html#logging.configX-tr6X collectionsr6(hhX;http://docs.python.org/library/collections.html#collectionsX-tr6X cookielibr6(hhX7http://docs.python.org/library/cookielib.html#cookielibX-tr6X multifiler6(hhX7http://docs.python.org/library/multifile.html#multifileX-tr6XCarbon.Resourcesr6(hhX;http://docs.python.org/library/carbon.html#Carbon.ResourcesX-tr6Xcompilerr6(hhX5http://docs.python.org/library/compiler.html#compilerX-tr6Xdistutils.cygwinccompilerr6(hhXFhttp://docs.python.org/distutils/apiref.html#distutils.cygwinccompilerX-tr6X zipimportr6(hhX7http://docs.python.org/library/zipimport.html#zipimportX-tr6X!distutils.command.install_scriptsr6(hhXNhttp://docs.python.org/distutils/apiref.html#distutils.command.install_scriptsX-tr6Xmultiprocessing.dummyr6(hhXIhttp://docs.python.org/library/multiprocessing.html#multiprocessing.dummyX-tr 6X Carbon.TEr!6(hhX4http://docs.python.org/library/carbon.html#Carbon.TEX-tr"6Xtextwrapr#6(hhX5http://docs.python.org/library/textwrap.html#textwrapX-tr$6X Carbon.Helpr%6(hhX6http://docs.python.org/library/carbon.html#Carbon.HelpX-tr&6X ScrolledTextr'6(hhX=http://docs.python.org/library/scrolledtext.html#ScrolledTextX-tr(6XCarbon.QDOffscreenr)6(hhX=http://docs.python.org/library/carbon.html#Carbon.QDOffscreenX-tr*6X ConfigParserr+6(hhX=http://docs.python.org/library/configparser.html#ConfigParserX-tr,6Xhttplibr-6(hhX3http://docs.python.org/library/httplib.html#httplibX-tr.6Xdistutils.dir_utilr/6(hhX?http://docs.python.org/distutils/apiref.html#distutils.dir_utilX-tr06Xdecimalr16(hhX3http://docs.python.org/library/decimal.html#decimalX-tr26Xsunaur36(hhX/http://docs.python.org/library/sunau.html#sunauX-tr46Xlogging.handlersr56(hhXEhttp://docs.python.org/library/logging.handlers.html#logging.handlersX-tr66XCarbon.MediaDescrr76(hhX<http://docs.python.org/library/carbon.html#Carbon.MediaDescrX-tr86Xtokenr96(hhX/http://docs.python.org/library/token.html#tokenX-tr:6Xemail.encodersr;6(hhXAhttp://docs.python.org/library/email.encoders.html#email.encodersX-tr<6Xdistutils.command.build_clibr=6(hhXIhttp://docs.python.org/distutils/apiref.html#distutils.command.build_clibX-tr>6Xxml.sax.xmlreaderr?6(hhXDhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreaderX-tr@6XquoprirA6(hhX1http://docs.python.org/library/quopri.html#quopriX-trB6X distutils.logrC6(hhX:http://docs.python.org/distutils/apiref.html#distutils.logX-trD6X macostoolsrE6(hhX9http://docs.python.org/library/macostools.html#macostoolsX-trF6XturtlerG6(hhX1http://docs.python.org/library/turtle.html#turtleX-trH6X cStringIOrI6(hhX6http://docs.python.org/library/stringio.html#cStringIOX-trJ6XplatformrK6(hhX5http://docs.python.org/library/platform.html#platformX-trL6XSimpleHTTPServerrM6(hhXEhttp://docs.python.org/library/simplehttpserver.html#SimpleHTTPServerX-trN6XchunkrO6(hhX/http://docs.python.org/library/chunk.html#chunkX-trP6XmacpathrQ6(hhX3http://docs.python.org/library/macpath.html#macpathX-trR6XstatrS6(hhX-http://docs.python.org/library/stat.html#statX-trT6Xxml.parsers.expatrU6(hhX=http://docs.python.org/library/pyexpat.html#xml.parsers.expatX-trV6Xdistutils.distrW6(hhX;http://docs.python.org/distutils/apiref.html#distutils.distX-trX6X_winregrY6(hhX3http://docs.python.org/library/_winreg.html#_winregX-trZ6XBaseHTTPServerr[6(hhXAhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServerX-tr\6X findertoolsr]6(hhX:http://docs.python.org/library/macostools.html#findertoolsX-tr^6X Carbon.Qdr_6(hhX4http://docs.python.org/library/carbon.html#Carbon.QdX-tr`6Xdistutils.command.installra6(hhXFhttp://docs.python.org/distutils/apiref.html#distutils.command.installX-trb6XCarbon.IBCarbonrc6(hhX:http://docs.python.org/library/carbon.html#Carbon.IBCarbonX-trd6Xasynchatre6(hhX5http://docs.python.org/library/asynchat.html#asynchatX-trf6X Carbon.AErg6(hhX4http://docs.python.org/library/carbon.html#Carbon.AEX-trh6X Carbon.Dragri6(hhX6http://docs.python.org/library/carbon.html#Carbon.DragX-trj6Ximaplibrk6(hhX3http://docs.python.org/library/imaplib.html#imaplibX-trl6X Carbon.AHrm6(hhX4http://docs.python.org/library/carbon.html#Carbon.AHX-trn6Xdistutils.command.bdist_wininstro6(hhXLhttp://docs.python.org/distutils/apiref.html#distutils.command.bdist_wininstX-trp6Xrerq6(hhX)http://docs.python.org/library/re.html#reX-trr6XCarbon.Windowsrs6(hhX9http://docs.python.org/library/carbon.html#Carbon.WindowsX-trt6X robotparserru6(hhX;http://docs.python.org/library/robotparser.html#robotparserX-trv6Xencodings.utf_8_sigrw6(hhX>http://docs.python.org/library/codecs.html#encodings.utf_8_sigX-trx6X UserStringry6(hhX7http://docs.python.org/library/userdict.html#UserStringX-trz6X!distutils.command.install_headersr{6(hhXNhttp://docs.python.org/distutils/apiref.html#distutils.command.install_headersX-tr|6Xmultiprocessing.managersr}6(hhXLhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managersX-tr~6Xsymbolr6(hhX1http://docs.python.org/library/symbol.html#symbolX-tr6Xmathr6(hhX-http://docs.python.org/library/math.html#mathX-tr6Xcgir6(hhX+http://docs.python.org/library/cgi.html#cgiX-tr6XTkinterr6(hhX3http://docs.python.org/library/tkinter.html#TkinterX-tr6X Carbon.Qtr6(hhX4http://docs.python.org/library/carbon.html#Carbon.QtX-tr6Xastr6(hhX+http://docs.python.org/library/ast.html#astX-tr6Xdistutils.archive_utilr6(hhXChttp://docs.python.org/distutils/apiref.html#distutils.archive_utilX-tr6Xinspectr6(hhX3http://docs.python.org/library/inspect.html#inspectX-tr6Xurllib2r6(hhX3http://docs.python.org/library/urllib2.html#urllib2X-tr6X Carbon.Resr6(hhX5http://docs.python.org/library/carbon.html#Carbon.ResX-tr6XW(hhX+http://docs.python.org/library/undoc.html#WX-tr6X Carbon.Fmr6(hhX4http://docs.python.org/library/carbon.html#Carbon.FmX-tr6Xmd5r6(hhX+http://docs.python.org/library/md5.html#md5X-tr6Xloggingr6(hhX3http://docs.python.org/library/logging.html#loggingX-tr6Xsocketr6(hhX1http://docs.python.org/library/socket.html#socketX-tr6Xthreadr6(hhX1http://docs.python.org/library/thread.html#threadX-tr6Ximghdrr6(hhX1http://docs.python.org/library/imghdr.html#imghdrX-tr6X tracebackr6(hhX7http://docs.python.org/library/traceback.html#tracebackX-tr6Xnetrcr6(hhX/http://docs.python.org/library/netrc.html#netrcX-tr6X telnetlibr6(hhX7http://docs.python.org/library/telnetlib.html#telnetlibX-tr6X curses.asciir6(hhX=http://docs.python.org/library/curses.ascii.html#curses.asciiX-tr6Xerrnor6(hhX/http://docs.python.org/library/errno.html#errnoX-tr6Xsmtpdr6(hhX/http://docs.python.org/library/smtpd.html#smtpdX-tr6Xosr6(hhX)http://docs.python.org/library/os.html#osX-tr6Xmarshalr6(hhX3http://docs.python.org/library/marshal.html#marshalX-tr6X hotshot.statsr6(hhX9http://docs.python.org/library/hotshot.html#hotshot.statsX-tr6Xdistutils.command.bdistr6(hhXDhttp://docs.python.org/distutils/apiref.html#distutils.command.bdistX-tr6X __future__r6(hhX9http://docs.python.org/library/__future__.html#__future__X-tr6Xdistutils.command.install_libr6(hhXJhttp://docs.python.org/distutils/apiref.html#distutils.command.install_libX-tr6Xcursesr6(hhX1http://docs.python.org/library/curses.html#cursesX-tr6X Carbon.Cmr6(hhX4http://docs.python.org/library/carbon.html#Carbon.CmX-tr6X __builtin__r6(hhX;http://docs.python.org/library/__builtin__.html#__builtin__X-tr6XDEVICEr6(hhX-http://docs.python.org/library/gl.html#DEVICEX-tr6Xdistutils.commandr6(hhX>http://docs.python.org/distutils/apiref.html#distutils.commandX-tr6Xfpectlr6(hhX1http://docs.python.org/library/fpectl.html#fpectlX-tr6X fileinputr6(hhX7http://docs.python.org/library/fileinput.html#fileinputX-tr6Xoperatorr6(hhX5http://docs.python.org/library/operator.html#operatorX-tr6Xdistutils.utilr6(hhX;http://docs.python.org/distutils/apiref.html#distutils.utilX-tr6Xarrayr6(hhX/http://docs.python.org/library/array.html#arrayX-tr6Xxml.dom.pulldomr6(hhXChttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldomX-tr6X applesingler6(hhX5http://docs.python.org/library/undoc.html#applesingleX-tr6X Carbon.CGr6(hhX4http://docs.python.org/library/carbon.html#Carbon.CGX-tr6X Carbon.CFr6(hhX4http://docs.python.org/library/carbon.html#Carbon.CFX-tr6Xdistutils.command.install_datar6(hhXKhttp://docs.python.org/distutils/apiref.html#distutils.command.install_dataX-tr6Xdistutils.emxccompilerr6(hhXChttp://docs.python.org/distutils/apiref.html#distutils.emxccompilerX-tr6Xshar6(hhX+http://docs.python.org/library/sha.html#shaX-tr6Xflr6(hhX)http://docs.python.org/library/fl.html#flX-tr6Xmultiprocessing.connectionr6(hhXNhttp://docs.python.org/library/multiprocessing.html#multiprocessing.connectionX-tr6X EasyDialogsr6(hhX;http://docs.python.org/library/easydialogs.html#EasyDialogsX-tr6Xfmr6(hhX)http://docs.python.org/library/fm.html#fmX-tr6XCookier6(hhX1http://docs.python.org/library/cookie.html#CookieX-tr6Xos.pathr6(hhX3http://docs.python.org/library/os.path.html#os.pathX-tr6Xdistutils.command.build_scriptsr6(hhXLhttp://docs.python.org/distutils/apiref.html#distutils.command.build_scriptsX-tr6Xxml.sax.handlerr6(hhXChttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handlerX-tr6X SUNAUDIODEVr6(hhX8http://docs.python.org/library/sunaudio.html#SUNAUDIODEVX-tr6X Carbon.Winr6(hhX5http://docs.python.org/library/carbon.html#Carbon.WinX-tr6XCarbon.Controlsr6(hhX:http://docs.python.org/library/carbon.html#Carbon.ControlsX-tr6Xpwdr6(hhX+http://docs.python.org/library/pwd.html#pwdX-tr6Xprofiler6(hhX3http://docs.python.org/library/profile.html#profileX-tr6Xicopenr6(hhX0http://docs.python.org/library/undoc.html#icopenX-tr6Xcopyr6(hhX-http://docs.python.org/library/copy.html#copyX-tr6Xtestr6(hhX-http://docs.python.org/library/test.html#testX-tr6X Carbon.Filer6(hhX6http://docs.python.org/library/carbon.html#Carbon.FileX-tr6Xhashlibr6(hhX3http://docs.python.org/library/hashlib.html#hashlibX-tr6X email.errorsr6(hhX=http://docs.python.org/library/email.errors.html#email.errorsX-tr6Xkeywordr7(hhX3http://docs.python.org/library/keyword.html#keywordX-tr7X FrameWorkr7(hhX7http://docs.python.org/library/framework.html#FrameWorkX-tr7Xuur7(hhX)http://docs.python.org/library/uu.html#uuX-tr7Xdistutils.command.bdist_rpmr7(hhXHhttp://docs.python.org/distutils/apiref.html#distutils.command.bdist_rpmX-tr7XCarbon.TextEditr7(hhX:http://docs.python.org/library/carbon.html#Carbon.TextEditX-tr 7X stringprepr 7(hhX9http://docs.python.org/library/stringprep.html#stringprepX-tr 7Xdistutils.extensionr 7(hhX@http://docs.python.org/distutils/apiref.html#distutils.extensionX-tr 7Xposixr7(hhX/http://docs.python.org/library/posix.html#posixX-tr7Xwinsoundr7(hhX5http://docs.python.org/library/winsound.html#winsoundX-tr7X Carbon.Evtr7(hhX5http://docs.python.org/library/carbon.html#Carbon.EvtX-tr7X HTMLParserr7(hhX9http://docs.python.org/library/htmlparser.html#HTMLParserX-tr7Xdistutils.command.cleanr7(hhXDhttp://docs.python.org/distutils/apiref.html#distutils.command.cleanX-tr7X mimetoolsr7(hhX7http://docs.python.org/library/mimetools.html#mimetoolsX-tr7X Carbon.Filesr7(hhX7http://docs.python.org/library/carbon.html#Carbon.FilesX-tr7Xwsgiref.simple_serverr7(hhXAhttp://docs.python.org/library/wsgiref.html#wsgiref.simple_serverX-tr7Xparserr7(hhX1http://docs.python.org/library/parser.html#parserX-tr7X Carbon.Mlter 7(hhX6http://docs.python.org/library/carbon.html#Carbon.MlteX-tr!7Xgetpassr"7(hhX3http://docs.python.org/library/getpass.html#getpassX-tr#7Xdistutils.command.checkr$7(hhXDhttp://docs.python.org/distutils/apiref.html#distutils.command.checkX-tr%7X contextlibr&7(hhX9http://docs.python.org/library/contextlib.html#contextlibX-tr'7X__main__r(7(hhX5http://docs.python.org/library/__main__.html#__main__X-tr)7Xsymtabler*7(hhX5http://docs.python.org/library/symtable.html#symtableX-tr+7Xpyclbrr,7(hhX1http://docs.python.org/library/pyclbr.html#pyclbrX-tr-7Xdircacher.7(hhX5http://docs.python.org/library/dircache.html#dircacheX-tr/7Xbz2r07(hhX+http://docs.python.org/library/bz2.html#bz2X-tr17Xlib2to3r27(hhX0http://docs.python.org/library/2to3.html#lib2to3X-tr37X threadingr47(hhX7http://docs.python.org/library/threading.html#threadingX-tr57X Carbon.Ctlr67(hhX5http://docs.python.org/library/carbon.html#Carbon.CtlX-tr77Xcryptr87(hhX/http://docs.python.org/library/crypt.html#cryptX-tr97Xwsgiref.handlersr:7(hhX<http://docs.python.org/library/wsgiref.html#wsgiref.handlersX-tr;7Xdistutils.unixccompilerr<7(hhXDhttp://docs.python.org/distutils/apiref.html#distutils.unixccompilerX-tr=7Xgettextr>7(hhX3http://docs.python.org/library/gettext.html#gettextX-tr?7Xhtmllibr@7(hhX3http://docs.python.org/library/htmllib.html#htmllibX-trA7XbsddbrB7(hhX/http://docs.python.org/library/bsddb.html#bsddbX-trC7XgetoptrD7(hhX1http://docs.python.org/library/getopt.html#getoptX-trE7Xemail.generatorrF7(hhXChttp://docs.python.org/library/email.generator.html#email.generatorX-trG7X Carbon.DlgrH7(hhX5http://docs.python.org/library/carbon.html#Carbon.DlgX-trI7X compiler.astrJ7(hhX9http://docs.python.org/library/compiler.html#compiler.astX-trK7X mimetypesrL7(hhX7http://docs.python.org/library/mimetypes.html#mimetypesX-trM7XspwdrN7(hhX-http://docs.python.org/library/spwd.html#spwdX-trO7Xdistutils.command.bdist_dumbrP7(hhXIhttp://docs.python.org/distutils/apiref.html#distutils.command.bdist_dumbX-trQ7XtracerR7(hhX/http://docs.python.org/library/trace.html#traceX-trS7XwarningsrT7(hhX5http://docs.python.org/library/warnings.html#warningsX-trU7XglobrV7(hhX-http://docs.python.org/library/glob.html#globX-trW7XALrX7(hhX)http://docs.python.org/library/al.html#ALX-trY7XxdrlibrZ7(hhX1http://docs.python.org/library/xdrlib.html#xdrlibX-tr[7Xcgitbr\7(hhX/http://docs.python.org/library/cgitb.html#cgitbX-tr]7Xwsgirefr^7(hhX3http://docs.python.org/library/wsgiref.html#wsgirefX-tr_7Xtermiosr`7(hhX3http://docs.python.org/library/termios.html#termiosX-tra7Xdistutils.file_utilrb7(hhX@http://docs.python.org/distutils/apiref.html#distutils.file_utilX-trc7Xreadlinerd7(hhX5http://docs.python.org/library/readline.html#readlineX-tre7Xcmathrf7(hhX/http://docs.python.org/library/cmath.html#cmathX-trg7Xxml.domrh7(hhX3http://docs.python.org/library/xml.dom.html#xml.domX-tri7Xfuture_builtinsrj7(hhXChttp://docs.python.org/library/future_builtins.html#future_builtinsX-trk7X dummy_threadrl7(hhX=http://docs.python.org/library/dummy_thread.html#dummy_threadX-trm7Xpoplibrn7(hhX1http://docs.python.org/library/poplib.html#poplibX-tro7X xmlrpclibrp7(hhX7http://docs.python.org/library/xmlrpclib.html#xmlrpclibX-trq7X linecacherr7(hhX7http://docs.python.org/library/linecache.html#linecacheX-trs7X Carbon.Fontsrt7(hhX7http://docs.python.org/library/carbon.html#Carbon.FontsX-tru7Xtimerv7(hhX-http://docs.python.org/library/time.html#timeX-trw7Xdistutils.text_filerx7(hhX@http://docs.python.org/distutils/apiref.html#distutils.text_fileX-try7Xdbhashrz7(hhX1http://docs.python.org/library/dbhash.html#dbhashX-tr{7Xhmacr|7(hhX-http://docs.python.org/library/hmac.html#hmacX-tr}7uXc:typer~7}r7(X PyMethodDefr7(hhX8http://docs.python.org/c-api/structures.html#PyMethodDefX-tr7Xreadbufferprocr7(hhX8http://docs.python.org/c-api/typeobj.html#readbufferprocX-tr7X PySetObjectr7(hhX1http://docs.python.org/c-api/set.html#PySetObjectX-tr7X PyThreadStater7(hhX4http://docs.python.org/c-api/init.html#PyThreadStateX-tr7X_inittabr7(hhX1http://docs.python.org/c-api/import.html#_inittabX-tr7X PyIntObjectr7(hhX1http://docs.python.org/c-api/int.html#PyIntObjectX-tr7X segcountprocr7(hhX6http://docs.python.org/c-api/typeobj.html#segcountprocX-tr7XPyInterpreterStater7(hhX9http://docs.python.org/c-api/init.html#PyInterpreterStateX-tr7XPySequenceMethodsr7(hhX;http://docs.python.org/c-api/typeobj.html#PySequenceMethodsX-tr7X PyGenObjectr7(hhX1http://docs.python.org/c-api/gen.html#PyGenObjectX-tr7X PyCFunctionr7(hhX8http://docs.python.org/c-api/structures.html#PyCFunctionX-tr7X PyTupleObjectr7(hhX5http://docs.python.org/c-api/tuple.html#PyTupleObjectX-tr7X PyCellObjectr7(hhX3http://docs.python.org/c-api/cell.html#PyCellObjectX-tr7X PyTypeObjectr7(hhX3http://docs.python.org/c-api/type.html#PyTypeObjectX-tr7Xinquiryr7(hhX3http://docs.python.org/c-api/gcsupport.html#inquiryX-tr7XPyNumberMethodsr7(hhX9http://docs.python.org/c-api/typeobj.html#PyNumberMethodsX-tr7XPyCompilerFlagsr7(hhX:http://docs.python.org/c-api/veryhigh.html#PyCompilerFlagsX-tr7XPyComplexObjectr7(hhX9http://docs.python.org/c-api/complex.html#PyComplexObjectX-tr7XPyFunctionObjectr7(hhX;http://docs.python.org/c-api/function.html#PyFunctionObjectX-tr7XPyStringObjectr7(hhX7http://docs.python.org/c-api/string.html#PyStringObjectX-tr7X PyCapsuler7(hhX3http://docs.python.org/c-api/capsule.html#PyCapsuleX-tr7XPyCapsule_Destructorr7(hhX>http://docs.python.org/c-api/capsule.html#PyCapsule_DestructorX-tr7X PyVarObjectr7(hhX8http://docs.python.org/c-api/structures.html#PyVarObjectX-tr7XPyObjectr7(hhX5http://docs.python.org/c-api/structures.html#PyObjectX-tr7X PyDictObjectr7(hhX3http://docs.python.org/c-api/dict.html#PyDictObjectX-tr7X PyClassObjectr7(hhX5http://docs.python.org/c-api/class.html#PyClassObjectX-tr7X PyCObjectr7(hhX3http://docs.python.org/c-api/cobject.html#PyCObjectX-tr7XPyMappingMethodsr7(hhX:http://docs.python.org/c-api/typeobj.html#PyMappingMethodsX-tr7X PyCodeObjectr7(hhX3http://docs.python.org/c-api/code.html#PyCodeObjectX-tr7X PyFileObjectr7(hhX3http://docs.python.org/c-api/file.html#PyFileObjectX-tr7Xwritebufferprocr7(hhX9http://docs.python.org/c-api/typeobj.html#writebufferprocX-tr7X Py_tracefuncr7(hhX3http://docs.python.org/c-api/init.html#Py_tracefuncX-tr7X PyFloatObjectr7(hhX5http://docs.python.org/c-api/float.html#PyFloatObjectX-tr7X Py_complexr7(hhX4http://docs.python.org/c-api/complex.html#Py_complexX-tr7X_frozenr7(hhX0http://docs.python.org/c-api/import.html#_frozenX-tr7X Py_UNICODEr7(hhX4http://docs.python.org/c-api/unicode.html#Py_UNICODEX-tr7XPyUnicodeObjectr7(hhX9http://docs.python.org/c-api/unicode.html#PyUnicodeObjectX-tr7X PyLongObjectr7(hhX3http://docs.python.org/c-api/long.html#PyLongObjectX-tr7X Py_bufferr7(hhX2http://docs.python.org/c-api/buffer.html#Py_bufferX-tr7X PyListObjectr7(hhX3http://docs.python.org/c-api/list.html#PyListObjectX-tr7X visitprocr7(hhX5http://docs.python.org/c-api/gcsupport.html#visitprocX-tr7X PyMemberDefr7(hhX8http://docs.python.org/c-api/structures.html#PyMemberDefX-tr7X PyBufferProcsr7(hhX7http://docs.python.org/c-api/typeobj.html#PyBufferProcsX-tr7Xcharbufferprocr7(hhX8http://docs.python.org/c-api/typeobj.html#charbufferprocX-tr7XPyByteArrayObjectr7(hhX=http://docs.python.org/c-api/bytearray.html#PyByteArrayObjectX-tr7XPyBufferObjectr7(hhX7http://docs.python.org/c-api/buffer.html#PyBufferObjectX-tr7X traverseprocr7(hhX8http://docs.python.org/c-api/gcsupport.html#traverseprocX-tr7uXpy:classmethodr7}r7(Xdatetime.datetime.fromtimestampr7(hhXLhttp://docs.python.org/library/datetime.html#datetime.datetime.fromtimestampX-tr7Xdatetime.date.todayr7(hhX@http://docs.python.org/library/datetime.html#datetime.date.todayX-tr7Xdatetime.datetime.nowr7(hhXBhttp://docs.python.org/library/datetime.html#datetime.datetime.nowX-tr7Xdatetime.datetime.combiner7(hhXFhttp://docs.python.org/library/datetime.html#datetime.datetime.combineX-tr7Xdatetime.datetime.todayr7(hhXDhttp://docs.python.org/library/datetime.html#datetime.datetime.todayX-tr7Xdatetime.date.fromordinalr7(hhXFhttp://docs.python.org/library/datetime.html#datetime.date.fromordinalX-tr7Xitertools.chain.from_iterabler7(hhXKhttp://docs.python.org/library/itertools.html#itertools.chain.from_iterableX-tr7X"datetime.datetime.utcfromtimestampr7(hhXOhttp://docs.python.org/library/datetime.html#datetime.datetime.utcfromtimestampX-tr7X collections.somenamedtuple._maker7(hhXPhttp://docs.python.org/library/collections.html#collections.somenamedtuple._makeX-tr7Xdatetime.datetime.fromordinalr7(hhXJhttp://docs.python.org/library/datetime.html#datetime.datetime.fromordinalX-tr7Xdatetime.datetime.utcnowr7(hhXEhttp://docs.python.org/library/datetime.html#datetime.datetime.utcnowX-tr7Xdatetime.datetime.strptimer7(hhXGhttp://docs.python.org/library/datetime.html#datetime.datetime.strptimeX-tr7Xdatetime.date.fromtimestampr7(hhXHhttp://docs.python.org/library/datetime.html#datetime.date.fromtimestampX-tr7uX py:methodr7}r7(Xchunk.Chunk.isattyr7(hhX<http://docs.python.org/library/chunk.html#chunk.Chunk.isattyX-tr7X!HTMLParser.HTMLParser.handle_declr7(hhXPhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_declX-tr7Xmsilib.Dialog.controlr8(hhX@http://docs.python.org/library/msilib.html#msilib.Dialog.controlX-tr8X.xml.parsers.expat.xmlparser.ElementDeclHandlerr8(hhXZhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ElementDeclHandlerX-tr8Xdatetime.tzinfo.utcoffsetr8(hhXFhttp://docs.python.org/library/datetime.html#datetime.tzinfo.utcoffsetX-tr8Xcurses.panel.Panel.userptrr8(hhXKhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.userptrX-tr8X#difflib.SequenceMatcher.quick_ratior8(hhXOhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.quick_ratioX-tr 8Xmailbox.Mailbox.clearr 8(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.clearX-tr 8Xcurses.window.hliner 8(hhX>http://docs.python.org/library/curses.html#curses.window.hlineX-tr 8Xlogging.Handler.releaser8(hhXChttp://docs.python.org/library/logging.html#logging.Handler.releaseX-tr8Xftplib.FTP.loginr8(hhX;http://docs.python.org/library/ftplib.html#ftplib.FTP.loginX-tr8Xmhlib.MH.listfoldersr8(hhX>http://docs.python.org/library/mhlib.html#mhlib.MH.listfoldersX-tr8Xdatetime.date.isoweekdayr8(hhXEhttp://docs.python.org/library/datetime.html#datetime.date.isoweekdayX-tr8Xpipes.Template.copyr8(hhX=http://docs.python.org/library/pipes.html#pipes.Template.copyX-tr8X$FrameWork.ScrolledWindow.do_activater8(hhXRhttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.do_activateX-tr8Xasynchat.fifo.popr8(hhX>http://docs.python.org/library/asynchat.html#asynchat.fifo.popX-tr8Xttk.Progressbar.startr8(hhX=http://docs.python.org/library/ttk.html#ttk.Progressbar.startX-tr8X!decimal.Context.compare_total_magr8(hhXMhttp://docs.python.org/library/decimal.html#decimal.Context.compare_total_magX-tr8Xshlex.shlex.get_tokenr 8(hhX?http://docs.python.org/library/shlex.html#shlex.shlex.get_tokenX-tr!8Xcollections.deque.countr"8(hhXGhttp://docs.python.org/library/collections.html#collections.deque.countX-tr#8Xttk.Treeview.bboxr$8(hhX9http://docs.python.org/library/ttk.html#ttk.Treeview.bboxX-tr%8Ximaplib.IMAP4.loginr&8(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.loginX-tr'8X smtpd.SMTPServer.process_messager(8(hhXJhttp://docs.python.org/library/smtpd.html#smtpd.SMTPServer.process_messageX-tr)8Xsocket.socket.connectr*8(hhX@http://docs.python.org/library/socket.html#socket.socket.connectX-tr+8X#ConfigParser.RawConfigParser.readfpr,8(hhXThttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.readfpX-tr-8Xbsddb.bsddbobject.keysr.8(hhX@http://docs.python.org/library/bsddb.html#bsddb.bsddbobject.keysX-tr/8Xtelnetlib.Telnet.read_eagerr08(hhXIhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_eagerX-tr18Xemail.generator.Generator.writer28(hhXShttp://docs.python.org/library/email.generator.html#email.generator.Generator.writeX-tr38XFSimpleXMLRPCServer.SimpleXMLRPCServer.register_introspection_functionsr48(hhX}http://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCServer.register_introspection_functionsX-tr58X dl.dl.closer68(hhX2http://docs.python.org/library/dl.html#dl.dl.closeX-tr78Xsched.scheduler.enterr88(hhX?http://docs.python.org/library/sched.html#sched.scheduler.enterX-tr98Xdecimal.Context.divide_intr:8(hhXFhttp://docs.python.org/library/decimal.html#decimal.Context.divide_intX-tr;8Xbdb.Bdb.clear_bpbynumberr<8(hhX@http://docs.python.org/library/bdb.html#bdb.Bdb.clear_bpbynumberX-tr=8Xtarfile.TarFile.getmemberr>8(hhXEhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.getmemberX-tr?8Xdecimal.Context.maxr@8(hhX?http://docs.python.org/library/decimal.html#decimal.Context.maxX-trA8X!gettext.NullTranslations.lgettextrB8(hhXMhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.lgettextX-trC8Xarray.array.fromstringrD8(hhX@http://docs.python.org/library/array.html#array.array.fromstringX-trE8Xurllib2.Request.get_selectorrF8(hhXHhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_selectorX-trG8Xrfc822.Message.getaddrlistrH8(hhXEhttp://docs.python.org/library/rfc822.html#rfc822.Message.getaddrlistX-trI8Xmailbox.mbox.lockrJ8(hhX=http://docs.python.org/library/mailbox.html#mailbox.mbox.lockX-trK8Xio.BytesIO.getvaluerL8(hhX:http://docs.python.org/library/io.html#io.BytesIO.getvalueX-trM8Xrlcompleter.Completer.completerN8(hhXNhttp://docs.python.org/library/rlcompleter.html#rlcompleter.Completer.completeX-trO8Xoptparse.OptionParser.get_usagerP8(hhXLhttp://docs.python.org/library/optparse.html#optparse.OptionParser.get_usageX-trQ8X%ossaudiodev.oss_audio_device.channelsrR8(hhXUhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.channelsX-trS8Xttk.Treeview.selection_togglerT8(hhXEhttp://docs.python.org/library/ttk.html#ttk.Treeview.selection_toggleX-trU8Xrfc822.Message.getdate_tzrV8(hhXDhttp://docs.python.org/library/rfc822.html#rfc822.Message.getdate_tzX-trW8X'xml.sax.handler.ErrorHandler.fatalErrorrX8(hhX[http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ErrorHandler.fatalErrorX-trY8X,multiprocessing.managers.BaseProxy._getvaluerZ8(hhX`http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseProxy._getvalueX-tr[8Ximaplib.IMAP4.getaclr\8(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.getaclX-tr]8Xclass.__subclasses__r^8(hhXAhttp://docs.python.org/library/stdtypes.html#class.__subclasses__X-tr_8Xshlex.shlex.push_sourcer`8(hhXAhttp://docs.python.org/library/shlex.html#shlex.shlex.push_sourceX-tra8Xurllib2.Request.header_itemsrb8(hhXHhttp://docs.python.org/library/urllib2.html#urllib2.Request.header_itemsX-trc8Xbz2.BZ2File.readlinesrd8(hhX=http://docs.python.org/library/bz2.html#bz2.BZ2File.readlinesX-tre8X multiprocessing.Queue.put_nowaitrf8(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.put_nowaitX-trg8Xint.bit_lengthrh8(hhX;http://docs.python.org/library/stdtypes.html#int.bit_lengthX-tri8X#wsgiref.handlers.BaseHandler._flushrj8(hhXOhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler._flushX-trk8Xmailbox.Maildir.get_filerl8(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.get_fileX-trm8X str.formatrn8(hhX7http://docs.python.org/library/stdtypes.html#str.formatX-tro8Xxdrlib.Packer.pack_floatrp8(hhXChttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_floatX-trq8Xdecimal.Decimal.normalizerr8(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.normalizeX-trs8X str.isalnumrt8(hhX8http://docs.python.org/library/stdtypes.html#str.isalnumX-tru8Xcurses.window.getmaxyxrv8(hhXAhttp://docs.python.org/library/curses.html#curses.window.getmaxyxX-trw8X calendar.Calendar.itermonthdays2rx8(hhXMhttp://docs.python.org/library/calendar.html#calendar.Calendar.itermonthdays2X-try8Xsocket.socket.setblockingrz8(hhXDhttp://docs.python.org/library/socket.html#socket.socket.setblockingX-tr{8Xzlib.Decompress.flushr|8(hhX>http://docs.python.org/library/zlib.html#zlib.Decompress.flushX-tr}8X)urllib2.HTTPErrorProcessor.https_responser~8(hhXUhttp://docs.python.org/library/urllib2.html#urllib2.HTTPErrorProcessor.https_responseX-tr8X code.InteractiveConsole.interactr8(hhXIhttp://docs.python.org/library/code.html#code.InteractiveConsole.interactX-tr8X3multiprocessing.pool.multiprocessing.Pool.terminater8(hhXghttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.terminateX-tr8Xftplib.FTP.set_debuglevelr8(hhXDhttp://docs.python.org/library/ftplib.html#ftplib.FTP.set_debuglevelX-tr8Xcurses.window.clrtobotr8(hhXAhttp://docs.python.org/library/curses.html#curses.window.clrtobotX-tr8Xxdrlib.Unpacker.unpack_floatr8(hhXGhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_floatX-tr8Xmd5.md5.updater8(hhX6http://docs.python.org/library/md5.html#md5.md5.updateX-tr8X!xml.etree.ElementTree.Element.setr8(hhX[http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.setX-tr8Xobject.__ilshift__r8(hhXBhttp://docs.python.org/reference/datamodel.html#object.__ilshift__X-tr8Xsubprocess.Popen.pollr8(hhXDhttp://docs.python.org/library/subprocess.html#subprocess.Popen.pollX-tr8Xttk.Style.configurer8(hhX;http://docs.python.org/library/ttk.html#ttk.Style.configureX-tr8Xfilecmp.dircmp.reportr8(hhXAhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.reportX-tr8Xnntplib.NNTP.set_debuglevelr8(hhXGhttp://docs.python.org/library/nntplib.html#nntplib.NNTP.set_debuglevelX-tr8Xdecimal.Decimal.logical_andr8(hhXGhttp://docs.python.org/library/decimal.html#decimal.Decimal.logical_andX-tr8X$rfc822.Message.getallmatchingheadersr8(hhXOhttp://docs.python.org/library/rfc822.html#rfc822.Message.getallmatchingheadersX-tr8Xemail.charset.Charset.__str__r8(hhXOhttp://docs.python.org/library/email.charset.html#email.charset.Charset.__str__X-tr8Xtarfile.TarFile.addfiler8(hhXChttp://docs.python.org/library/tarfile.html#tarfile.TarFile.addfileX-tr8Xsymtable.Function.get_localsr8(hhXIhttp://docs.python.org/library/symtable.html#symtable.Function.get_localsX-tr8X1xml.parsers.expat.xmlparser.EndDoctypeDeclHandlerr8(hhX]http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.EndDoctypeDeclHandlerX-tr8Xthreading.Thread.is_aliver8(hhXGhttp://docs.python.org/library/threading.html#threading.Thread.is_aliveX-tr8Xobject.__setitem__r8(hhXBhttp://docs.python.org/reference/datamodel.html#object.__setitem__X-tr8Xcodecs.IncrementalDecoder.resetr8(hhXJhttp://docs.python.org/library/codecs.html#codecs.IncrementalDecoder.resetX-tr8Xfile.writelinesr8(hhX<http://docs.python.org/library/stdtypes.html#file.writelinesX-tr8X file.readr8(hhX6http://docs.python.org/library/stdtypes.html#file.readX-tr8X-distutils.ccompiler.CCompiler.link_executabler8(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.link_executableX-tr8Xfl.form.find_lastr8(hhX8http://docs.python.org/library/fl.html#fl.form.find_lastX-tr8Xset.popr8(hhX4http://docs.python.org/library/stdtypes.html#set.popX-tr8X&unittest.TestResult.addExpectedFailurer8(hhXShttp://docs.python.org/library/unittest.html#unittest.TestResult.addExpectedFailureX-tr8Xsched.scheduler.emptyr8(hhX?http://docs.python.org/library/sched.html#sched.scheduler.emptyX-tr8Xobject.__rsub__r8(hhX?http://docs.python.org/reference/datamodel.html#object.__rsub__X-tr8Xpickle.Pickler.dumpr8(hhX>http://docs.python.org/library/pickle.html#pickle.Pickler.dumpX-tr8X%xml.sax.xmlreader.XMLReader.setLocaler8(hhXXhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setLocaleX-tr8Xcurses.textpad.Textbox.gatherr8(hhXHhttp://docs.python.org/library/curses.html#curses.textpad.Textbox.gatherX-tr8X(email.charset.Charset.encoded_header_lenr8(hhXZhttp://docs.python.org/library/email.charset.html#email.charset.Charset.encoded_header_lenX-tr8XCDocXMLRPCServer.DocCGIXMLRPCRequestHandler.set_server_documentationr8(hhXwhttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocCGIXMLRPCRequestHandler.set_server_documentationX-tr8Xmemoryview.tolistr8(hhX>http://docs.python.org/library/stdtypes.html#memoryview.tolistX-tr8Xbsddb.bsddbobject.firstr8(hhXAhttp://docs.python.org/library/bsddb.html#bsddb.bsddbobject.firstX-tr8Xftplib.FTP.abortr8(hhX;http://docs.python.org/library/ftplib.html#ftplib.FTP.abortX-tr8Xhttplib.HTTPConnection.connectr8(hhXJhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.connectX-tr8Xchunk.Chunk.readr8(hhX:http://docs.python.org/library/chunk.html#chunk.Chunk.readX-tr8Xobject.__int__r8(hhX>http://docs.python.org/reference/datamodel.html#object.__int__X-tr8Xre.RegexObject.subr8(hhX9http://docs.python.org/library/re.html#re.RegexObject.subX-tr8Xcurses.window.immedokr8(hhX@http://docs.python.org/library/curses.html#curses.window.immedokX-tr8XMimeWriter.MimeWriter.startbodyr8(hhXNhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriter.startbodyX-tr8X-distutils.ccompiler.CCompiler.add_link_objectr8(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.add_link_objectX-tr8Xmailbox.MHMessage.get_sequencesr8(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MHMessage.get_sequencesX-tr8X2xml.sax.handler.ContentHandler.ignorableWhitespacer8(hhXfhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.ignorableWhitespaceX-tr8XCookie.BaseCookie.loadr8(hhXAhttp://docs.python.org/library/cookie.html#Cookie.BaseCookie.loadX-tr8Xmailbox.Mailbox.iterkeysr8(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.iterkeysX-tr8Xsqlite3.Cursor.fetchallr8(hhXChttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.fetchallX-tr8Xmailbox.Mailbox.getr8(hhX?http://docs.python.org/library/mailbox.html#mailbox.Mailbox.getX-tr8X"ConfigParser.RawConfigParser.writer8(hhXShttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.writeX-tr8X.distutils.ccompiler.CCompiler.set_link_objectsr8(hhX[http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.set_link_objectsX-tr8Xprofile.Profile.runcallr8(hhXChttp://docs.python.org/library/profile.html#profile.Profile.runcallX-tr8Ximaplib.IMAP4.expunger8(hhXAhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.expungeX-tr8Xthread.lock.acquirer8(hhX>http://docs.python.org/library/thread.html#thread.lock.acquireX-tr8X(wsgiref.simple_server.WSGIServer.set_appr8(hhXThttp://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIServer.set_appX-tr8Xmsilib.Record.GetFieldCountr8(hhXFhttp://docs.python.org/library/msilib.html#msilib.Record.GetFieldCountX-tr8Xlong.bit_lengthr8(hhX<http://docs.python.org/library/stdtypes.html#long.bit_lengthX-tr8Xdecimal.Decimal.logical_orr8(hhXFhttp://docs.python.org/library/decimal.html#decimal.Decimal.logical_orX-tr8Xtrace.CoverageResults.updater8(hhXFhttp://docs.python.org/library/trace.html#trace.CoverageResults.updateX-tr8Xemail.message.Message.as_stringr8(hhXQhttp://docs.python.org/library/email.message.html#email.message.Message.as_stringX-tr8Xarray.array.fromunicoder8(hhXAhttp://docs.python.org/library/array.html#array.array.fromunicodeX-tr8X$xml.sax.handler.ErrorHandler.warningr8(hhXXhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ErrorHandler.warningX-tr8Xsocket.socket.bindr8(hhX=http://docs.python.org/library/socket.html#socket.socket.bindX-tr8X$xml.dom.Element.getElementsByTagNamer9(hhXPhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.getElementsByTagNameX-tr9Xcurses.window.touchliner9(hhXBhttp://docs.python.org/library/curses.html#curses.window.touchlineX-tr9X'unittest.TestLoader.loadTestsFromModuler9(hhXThttp://docs.python.org/library/unittest.html#unittest.TestLoader.loadTestsFromModuleX-tr9X!mhlib.Folder.getsequencesfilenamer9(hhXKhttp://docs.python.org/library/mhlib.html#mhlib.Folder.getsequencesfilenameX-tr9X"urllib2.CacheFTPHandler.setTimeoutr9(hhXNhttp://docs.python.org/library/urllib2.html#urllib2.CacheFTPHandler.setTimeoutX-tr 9Xmsilib.Directory.add_filer 9(hhXDhttp://docs.python.org/library/msilib.html#msilib.Directory.add_fileX-tr 9Xformatter.writer.new_spacingr 9(hhXJhttp://docs.python.org/library/formatter.html#formatter.writer.new_spacingX-tr 9Xrfc822.AddressList.__sub__r9(hhXEhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.__sub__X-tr9X3xml.parsers.expat.xmlparser.EndNamespaceDeclHandlerr9(hhX_http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.EndNamespaceDeclHandlerX-tr9Xobject.__abs__r9(hhX>http://docs.python.org/reference/datamodel.html#object.__abs__X-tr9Xpipes.Template.appendr9(hhX?http://docs.python.org/library/pipes.html#pipes.Template.appendX-tr9Xdecimal.Context.to_sci_stringr9(hhXIhttp://docs.python.org/library/decimal.html#decimal.Context.to_sci_stringX-tr9X(unittest.TestCase.assertNotRegexpMatchesr9(hhXUhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertNotRegexpMatchesX-tr9Xcurses.panel.Panel.hiddenr9(hhXJhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.hiddenX-tr9X&xml.sax.xmlreader.XMLReader.getFeaturer9(hhXYhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.getFeatureX-tr9Xaifc.aifc.getmarkersr9(hhX=http://docs.python.org/library/aifc.html#aifc.aifc.getmarkersX-tr9X#xml.etree.ElementTree.Element.clearr 9(hhX]http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.clearX-tr!9Xset.isdisjointr"9(hhX;http://docs.python.org/library/stdtypes.html#set.isdisjointX-tr#9Ximaplib.IMAP4.listr$9(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.listX-tr%9Xdecimal.Context.quantizer&9(hhXDhttp://docs.python.org/library/decimal.html#decimal.Context.quantizeX-tr'9X mmap.writer(9(hhX3http://docs.python.org/library/mmap.html#mmap.writeX-tr)9Xsocket.socket.getsockoptr*9(hhXChttp://docs.python.org/library/socket.html#socket.socket.getsockoptX-tr+9Xobject.__complex__r,9(hhXBhttp://docs.python.org/reference/datamodel.html#object.__complex__X-tr-9Xdict.viewitemsr.9(hhX;http://docs.python.org/library/stdtypes.html#dict.viewitemsX-tr/9X9SimpleXMLRPCServer.CGIXMLRPCRequestHandler.handle_requestr09(hhXphttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.CGIXMLRPCRequestHandler.handle_requestX-tr19Xdecimal.Decimal.conjugater29(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.conjugateX-tr39Xobject.__delslice__r49(hhXChttp://docs.python.org/reference/datamodel.html#object.__delslice__X-tr59Xpprint.PrettyPrinter.isreadabler69(hhXJhttp://docs.python.org/library/pprint.html#pprint.PrettyPrinter.isreadableX-tr79Xmutex.mutex.unlockr89(hhX<http://docs.python.org/library/mutex.html#mutex.mutex.unlockX-tr99X-distutils.ccompiler.CCompiler.link_shared_libr:9(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.link_shared_libX-tr;9Xmailbox.Mailbox.keysr<9(hhX@http://docs.python.org/library/mailbox.html#mailbox.Mailbox.keysX-tr=9Xobject.__mod__r>9(hhX>http://docs.python.org/reference/datamodel.html#object.__mod__X-tr?9X-xml.parsers.expat.xmlparser.EntityDeclHandlerr@9(hhXYhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.EntityDeclHandlerX-trA9X)multiprocessing.managers.SyncManager.listrB9(hhX]http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.listX-trC9Xdatetime.datetime.daterD9(hhXChttp://docs.python.org/library/datetime.html#datetime.datetime.dateX-trE9Xcodecs.StreamReader.resetrF9(hhXDhttp://docs.python.org/library/codecs.html#codecs.StreamReader.resetX-trG9Xemail.charset.Charset.__ne__rH9(hhXNhttp://docs.python.org/library/email.charset.html#email.charset.Charset.__ne__X-trI9Xlogging.Logger.getChildrJ9(hhXChttp://docs.python.org/library/logging.html#logging.Logger.getChildX-trK9Xdecimal.Context.logical_andrL9(hhXGhttp://docs.python.org/library/decimal.html#decimal.Context.logical_andX-trM9X"urllib2.BaseHandler.http_error_nnnrN9(hhXNhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.http_error_nnnX-trO9Xttk.Style.theme_settingsrP9(hhX@http://docs.python.org/library/ttk.html#ttk.Style.theme_settingsX-trQ9Xtrace.Trace.runfuncrR9(hhX=http://docs.python.org/library/trace.html#trace.Trace.runfuncX-trS9X*xml.etree.ElementTree.ElementTree.findtextrT9(hhXdhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.findtextX-trU9Xtarfile.TarInfo.ischrrV9(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.ischrX-trW9Xio.RawIOBase.readintorX9(hhX<http://docs.python.org/library/io.html#io.RawIOBase.readintoX-trY9X$logging.handlers.SysLogHandler.closerZ9(hhXYhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SysLogHandler.closeX-tr[9X.distutils.ccompiler.CCompiler.set_include_dirsr\9(hhX[http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.set_include_dirsX-tr]9Xsmtplib.SMTP.helor^9(hhX=http://docs.python.org/library/smtplib.html#smtplib.SMTP.heloX-tr_9X'xml.dom.pulldom.DOMEventStream.getEventr`9(hhX[http://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStream.getEventX-tra9X$calendar.HTMLCalendar.formatyearpagerb9(hhXQhttp://docs.python.org/library/calendar.html#calendar.HTMLCalendar.formatyearpageX-trc9Xstring.Formatter.convert_fieldrd9(hhXIhttp://docs.python.org/library/string.html#string.Formatter.convert_fieldX-tre9Xdecimal.Context.min_magrf9(hhXChttp://docs.python.org/library/decimal.html#decimal.Context.min_magX-trg9Xmultiprocessing.Process.startrh9(hhXQhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.startX-tri9X#SocketServer.BaseServer.server_bindrj9(hhXThttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.server_bindX-trk9Xcompiler.ast.Node.getChildrenrl9(hhXJhttp://docs.python.org/library/compiler.html#compiler.ast.Node.getChildrenX-trm9Xxdrlib.Unpacker.unpack_opaquern9(hhXHhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_opaqueX-tro9X xml.dom.Element.getAttributeNoderp9(hhXLhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.getAttributeNodeX-trq9Xmultifile.MultiFile.readlinesrr9(hhXKhttp://docs.python.org/library/multifile.html#multifile.MultiFile.readlinesX-trs9X!curses.textpad.Textbox.do_commandrt9(hhXLhttp://docs.python.org/library/curses.html#curses.textpad.Textbox.do_commandX-tru9Ximaplib.IMAP4.setquotarv9(hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.setquotaX-trw9Xio.BufferedIOBase.read1rx9(hhX>http://docs.python.org/library/io.html#io.BufferedIOBase.read1X-try9Xsmtplib.SMTP.verifyrz9(hhX?http://docs.python.org/library/smtplib.html#smtplib.SMTP.verifyX-tr{9Xttk.Treeview.tag_configurer|9(hhXBhttp://docs.python.org/library/ttk.html#ttk.Treeview.tag_configureX-tr}9Xmailbox.Maildir.addr~9(hhX?http://docs.python.org/library/mailbox.html#mailbox.Maildir.addX-tr9Xmutex.mutex.lockr9(hhX:http://docs.python.org/library/mutex.html#mutex.mutex.lockX-tr9Xthreading.Timer.cancelr9(hhXDhttp://docs.python.org/library/threading.html#threading.Timer.cancelX-tr9Xmultiprocessing.Queue.qsizer9(hhXOhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.qsizeX-tr9Xrexec.RExec.s_unloadr9(hhX>http://docs.python.org/library/rexec.html#rexec.RExec.s_unloadX-tr9X)logging.handlers.RotatingFileHandler.emitr9(hhX^http://docs.python.org/library/logging.handlers.html#logging.handlers.RotatingFileHandler.emitX-tr9Ximaplib.IMAP4.namespacer9(hhXChttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.namespaceX-tr9X$calendar.Calendar.monthdatescalendarr9(hhXQhttp://docs.python.org/library/calendar.html#calendar.Calendar.monthdatescalendarX-tr9X/logging.handlers.NTEventLogHandler.getMessageIDr9(hhXdhttp://docs.python.org/library/logging.handlers.html#logging.handlers.NTEventLogHandler.getMessageIDX-tr9XCookie.Morsel.isReservedKeyr9(hhXFhttp://docs.python.org/library/cookie.html#Cookie.Morsel.isReservedKeyX-tr9X set.updater9(hhX7http://docs.python.org/library/stdtypes.html#set.updateX-tr9Xcurses.window.derwinr9(hhX?http://docs.python.org/library/curses.html#curses.window.derwinX-tr9Xhttplib.HTTPResponse.readr9(hhXEhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.readX-tr9Xdecimal.Context.is_nanr9(hhXBhttp://docs.python.org/library/decimal.html#decimal.Context.is_nanX-tr9X!httplib.HTTPConnection.putrequestr9(hhXMhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.putrequestX-tr9Xfile.xreadlinesr9(hhX<http://docs.python.org/library/stdtypes.html#file.xreadlinesX-tr9X#sgmllib.SGMLParser.unknown_starttagr9(hhXOhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.unknown_starttagX-tr9Xcurses.window.bkgdsetr9(hhX@http://docs.python.org/library/curses.html#curses.window.bkgdsetX-tr9Xdecimal.Context.compare_totalr9(hhXIhttp://docs.python.org/library/decimal.html#decimal.Context.compare_totalX-tr9Xpprint.PrettyPrinter.pprintr9(hhXFhttp://docs.python.org/library/pprint.html#pprint.PrettyPrinter.pprintX-tr9Xobject.__getattribute__r9(hhXGhttp://docs.python.org/reference/datamodel.html#object.__getattribute__X-tr9Xmailbox.MMDFMessage.get_flagsr9(hhXIhttp://docs.python.org/library/mailbox.html#mailbox.MMDFMessage.get_flagsX-tr9Xurllib2.Request.get_headerr9(hhXFhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_headerX-tr9Xthreading.Semaphore.releaser9(hhXIhttp://docs.python.org/library/threading.html#threading.Semaphore.releaseX-tr9X8BaseHTTPServer.BaseHTTPRequestHandler.handle_one_requestr9(hhXkhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.handle_one_requestX-tr9Xformatter.formatter.push_marginr9(hhXMhttp://docs.python.org/library/formatter.html#formatter.formatter.push_marginX-tr9Xnntplib.NNTP.nextr9(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.nextX-tr9Xobject.__delete__r9(hhXAhttp://docs.python.org/reference/datamodel.html#object.__delete__X-tr9Xfl.form.unfreeze_formr9(hhX<http://docs.python.org/library/fl.html#fl.form.unfreeze_formX-tr9Xgenerator.nextr9(hhX@http://docs.python.org/reference/expressions.html#generator.nextX-tr9X"formatter.formatter.add_line_breakr9(hhXPhttp://docs.python.org/library/formatter.html#formatter.formatter.add_line_breakX-tr9Xmailbox.mboxMessage.add_flagr9(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.mboxMessage.add_flagX-tr9Xcontextmanager.__enter__r9(hhXEhttp://docs.python.org/library/stdtypes.html#contextmanager.__enter__X-tr9X-multiprocessing.managers.BaseManager.shutdownr9(hhXahttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManager.shutdownX-tr9Xobject.__invert__r9(hhXAhttp://docs.python.org/reference/datamodel.html#object.__invert__X-tr9Xmailbox.Babyl.get_labelsr9(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.Babyl.get_labelsX-tr9Xemail.header.Header.__eq__r9(hhXKhttp://docs.python.org/library/email.header.html#email.header.Header.__eq__X-tr9X)wsgiref.handlers.BaseHandler.add_cgi_varsr9(hhXUhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.add_cgi_varsX-tr9X"distutils.ccompiler.CCompiler.linkr9(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.linkX-tr9X"sgmllib.SGMLParser.unknown_charrefr9(hhXNhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.unknown_charrefX-tr9Xlogging.NullHandler.createLockr9(hhXShttp://docs.python.org/library/logging.handlers.html#logging.NullHandler.createLockX-tr9Xmhlib.Folder.getfullnamer9(hhXBhttp://docs.python.org/library/mhlib.html#mhlib.Folder.getfullnameX-tr9Xmimetypes.MimeTypes.readfpr9(hhXHhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.readfpX-tr9Xttk.Notebook.identifyr9(hhX=http://docs.python.org/library/ttk.html#ttk.Notebook.identifyX-tr9X'ConfigParser.RawConfigParser.getbooleanr9(hhXXhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.getbooleanX-tr9Xzipfile.ZipFile.getinfor9(hhXChttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.getinfoX-tr9X!logging.Formatter.formatExceptionr9(hhXMhttp://docs.python.org/library/logging.html#logging.Formatter.formatExceptionX-tr9Xstruct.Struct.unpack_fromr9(hhXDhttp://docs.python.org/library/struct.html#struct.Struct.unpack_fromX-tr9X unittest.TestResult.startTestRunr9(hhXMhttp://docs.python.org/library/unittest.html#unittest.TestResult.startTestRunX-tr9X$xml.dom.pulldom.DOMEventStream.resetr9(hhXXhttp://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStream.resetX-tr9Xlogging.Logger.makeRecordr9(hhXEhttp://docs.python.org/library/logging.html#logging.Logger.makeRecordX-tr9Xtarfile.TarFile.openr9(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarFile.openX-tr9Xrepr.Repr.reprr9(hhX7http://docs.python.org/library/repr.html#repr.Repr.reprX-tr9Ximaplib.IMAP4.partialr9(hhXAhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.partialX-tr9Xpstats.Stats.print_calleesr9(hhXFhttp://docs.python.org/library/profile.html#pstats.Stats.print_calleesX-tr9Ximaplib.IMAP4_SSL.sslr9(hhXAhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4_SSL.sslX-tr9Xselect.epoll.closer9(hhX=http://docs.python.org/library/select.html#select.epoll.closeX-tr9Xbdb.Bdb.canonicr9(hhX7http://docs.python.org/library/bdb.html#bdb.Bdb.canonicX-tr9X*multiprocessing.managers.SyncManager.Eventr9(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.EventX-tr9Xobject.__rxor__r9(hhX?http://docs.python.org/reference/datamodel.html#object.__rxor__X-tr9XFrameWork.Window.do_updater9(hhXHhttp://docs.python.org/library/framework.html#FrameWork.Window.do_updateX-tr9XTix.tixCommand.tix_getbitmapr9(hhXDhttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_getbitmapX-tr9X.multiprocessing.pool.multiprocessing.Pool.imapr9(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.imapX-tr9X modulefinder.ModuleFinder.reportr9(hhXQhttp://docs.python.org/library/modulefinder.html#modulefinder.ModuleFinder.reportX-tr9X)FrameWork.ScrolledWindow.updatescrollbarsr9(hhXWhttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.updatescrollbarsX-tr9X.multiprocessing.managers.SyncManager.Conditionr:(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.ConditionX-tr:Xtarfile.TarFile.listr:(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarFile.listX-tr:X.xml.sax.xmlreader.AttributesNS.getValueByQNamer:(hhXahttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.AttributesNS.getValueByQNameX-tr:Xio.IOBase.closer:(hhX6http://docs.python.org/library/io.html#io.IOBase.closeX-tr:Xftplib.FTP.deleter:(hhX<http://docs.python.org/library/ftplib.html#ftplib.FTP.deleteX-tr :Xlogging.Handler.flushr :(hhXAhttp://docs.python.org/library/logging.html#logging.Handler.flushX-tr :Xftplib.FTP.quitr :(hhX:http://docs.python.org/library/ftplib.html#ftplib.FTP.quitX-tr :X)xml.sax.xmlreader.XMLReader.setDTDHandlerr:(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setDTDHandlerX-tr:X mmap.mover:(hhX2http://docs.python.org/library/mmap.html#mmap.moveX-tr:Xdifflib.SequenceMatcher.ratior:(hhXIhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.ratioX-tr:X cookielib.CookieJar.make_cookiesr:(hhXNhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.make_cookiesX-tr:Xre.MatchObject.expandr:(hhX<http://docs.python.org/library/re.html#re.MatchObject.expandX-tr:Xttk.Treeview.detachr:(hhX;http://docs.python.org/library/ttk.html#ttk.Treeview.detachX-tr:Xdecimal.Context.normalizer:(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.normalizeX-tr:Xlogging.NullHandler.handler:(hhXOhttp://docs.python.org/library/logging.handlers.html#logging.NullHandler.handleX-tr:Xmsilib.Control.eventr:(hhX?http://docs.python.org/library/msilib.html#msilib.Control.eventX-tr:X&SocketServer.BaseServer.finish_requestr :(hhXWhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.finish_requestX-tr!:X#mimetypes.MimeTypes.guess_extensionr":(hhXQhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.guess_extensionX-tr#:XHTMLParser.HTMLParser.closer$:(hhXJhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.closeX-tr%:Xdecimal.Context.divmodr&:(hhXBhttp://docs.python.org/library/decimal.html#decimal.Context.divmodX-tr':Xbdb.Bdb.set_tracer(:(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.set_traceX-tr):X'xml.sax.handler.DTDHandler.notationDeclr*:(hhX[http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.DTDHandler.notationDeclX-tr+:Xxmlrpclib.DateTime.decoder,:(hhXGhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.DateTime.decodeX-tr-:Xmailbox.Mailbox.discardr.:(hhXChttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.discardX-tr/:Xaifc.aifc.rewindr0:(hhX9http://docs.python.org/library/aifc.html#aifc.aifc.rewindX-tr1:X float.hexr2:(hhX6http://docs.python.org/library/stdtypes.html#float.hexX-tr3:X$doctest.DocTestRunner.report_failurer4:(hhXPhttp://docs.python.org/library/doctest.html#doctest.DocTestRunner.report_failureX-tr5:Ximaplib.IMAP4.statusr6:(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.statusX-tr7:Xttk.Treeview.mover8:(hhX9http://docs.python.org/library/ttk.html#ttk.Treeview.moveX-tr9:Xpprint.PrettyPrinter.formatr::(hhXFhttp://docs.python.org/library/pprint.html#pprint.PrettyPrinter.formatX-tr;:Xobject.__pow__r<:(hhX>http://docs.python.org/reference/datamodel.html#object.__pow__X-tr=:Xbz2.BZ2File.readliner>:(hhX<http://docs.python.org/library/bz2.html#bz2.BZ2File.readlineX-tr?:Ximaplib.IMAP4.xatomr@:(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.xatomX-trA:Xttk.Treeview.existsrB:(hhX;http://docs.python.org/library/ttk.html#ttk.Treeview.existsX-trC:X_winreg.PyHKEY.CloserD:(hhX@http://docs.python.org/library/_winreg.html#_winreg.PyHKEY.CloseX-trE:Xsunau.AU_read.getnframesrF:(hhXBhttp://docs.python.org/library/sunau.html#sunau.AU_read.getnframesX-trG:X(distutils.ccompiler.CCompiler.preprocessrH:(hhXUhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.preprocessX-trI:X(logging.handlers.MemoryHandler.setTargetrJ:(hhX]http://docs.python.org/library/logging.handlers.html#logging.handlers.MemoryHandler.setTargetX-trK:X calendar.HTMLCalendar.formatyearrL:(hhXMhttp://docs.python.org/library/calendar.html#calendar.HTMLCalendar.formatyearX-trM:X&SocketServer.BaseServer.verify_requestrN:(hhXWhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.verify_requestX-trO:Xurllib.URLopener.open_unknownrP:(hhXHhttp://docs.python.org/library/urllib.html#urllib.URLopener.open_unknownX-trQ:Xbdb.Bdb.clear_breakrR:(hhX;http://docs.python.org/library/bdb.html#bdb.Bdb.clear_breakX-trS:XStringIO.StringIO.getvaluerT:(hhXGhttp://docs.python.org/library/stringio.html#StringIO.StringIO.getvalueX-trU:X1BaseHTTPServer.BaseHTTPRequestHandler.log_requestrV:(hhXdhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.log_requestX-trW:Xttk.Combobox.getrX:(hhX8http://docs.python.org/library/ttk.html#ttk.Combobox.getX-trY:Xemail.parser.Parser.parserZ:(hhXJhttp://docs.python.org/library/email.parser.html#email.parser.Parser.parseX-tr[:X#code.InteractiveInterpreter.runcoder\:(hhXLhttp://docs.python.org/library/code.html#code.InteractiveInterpreter.runcodeX-tr]:Xdatetime.date.toordinalr^:(hhXDhttp://docs.python.org/library/datetime.html#datetime.date.toordinalX-tr_:X"xml.etree.ElementTree.Element.iterr`:(hhX\http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.iterX-tra:Xnntplib.NNTP.listrb:(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.listX-trc:Xcurses.panel.Panel.bottomrd:(hhXJhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.bottomX-tre:Xmailbox.BabylMessage.set_labelsrf:(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.set_labelsX-trg:Xsocket.socket.connect_exrh:(hhXChttp://docs.python.org/library/socket.html#socket.socket.connect_exX-tri:Xbdb.Bdb.set_nextrj:(hhX8http://docs.python.org/library/bdb.html#bdb.Bdb.set_nextX-trk:Xpoplib.POP3.uidlrl:(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.uidlX-trm:Xobject.__pos__rn:(hhX>http://docs.python.org/reference/datamodel.html#object.__pos__X-tro:X!multiprocessing.Process.terminaterp:(hhXUhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.terminateX-trq:X dict.valuesrr:(hhX8http://docs.python.org/library/stdtypes.html#dict.valuesX-trs:Xttk.Widget.statert:(hhX8http://docs.python.org/library/ttk.html#ttk.Widget.stateX-tru:Xargparse.ArgumentParser.exitrv:(hhXIhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.exitX-trw:X difflib.SequenceMatcher.set_seq2rx:(hhXLhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.set_seq2X-try:X difflib.SequenceMatcher.set_seq1rz:(hhXLhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.set_seq1X-tr{:Xselect.epoll.unregisterr|:(hhXBhttp://docs.python.org/library/select.html#select.epoll.unregisterX-tr}:Xdistutils.cmd.Command.runr~:(hhXFhttp://docs.python.org/distutils/apiref.html#distutils.cmd.Command.runX-tr:X dict.clearr:(hhX7http://docs.python.org/library/stdtypes.html#dict.clearX-tr:Xzipfile.ZipFile.namelistr:(hhXDhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.namelistX-tr:Xurllib2.OpenerDirector.errorr:(hhXHhttp://docs.python.org/library/urllib2.html#urllib2.OpenerDirector.errorX-tr:Xmailbox.MMDFMessage.add_flagr:(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.MMDFMessage.add_flagX-tr:Xobject.__idiv__r:(hhX?http://docs.python.org/reference/datamodel.html#object.__idiv__X-tr:Xxdrlib.Packer.pack_listr:(hhXBhttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_listX-tr:Xwave.Wave_write.setparamsr:(hhXBhttp://docs.python.org/library/wave.html#wave.Wave_write.setparamsX-tr:Xmailbox.mbox.get_filer:(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.mbox.get_fileX-tr:Xzipfile.ZipFile.setpasswordr:(hhXGhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.setpasswordX-tr:X gettext.GNUTranslations.lgettextr:(hhXLhttp://docs.python.org/library/gettext.html#gettext.GNUTranslations.lgettextX-tr:X%robotparser.RobotFileParser.can_fetchr:(hhXUhttp://docs.python.org/library/robotparser.html#robotparser.RobotFileParser.can_fetchX-tr:Xmultifile.MultiFile.popr:(hhXEhttp://docs.python.org/library/multifile.html#multifile.MultiFile.popX-tr:Xfile.readlinesr:(hhX;http://docs.python.org/library/stdtypes.html#file.readlinesX-tr:Xdatetime.date.timetupler:(hhXDhttp://docs.python.org/library/datetime.html#datetime.date.timetupleX-tr:Xtelnetlib.Telnet.filenor:(hhXEhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.filenoX-tr:X#ConfigParser.RawConfigParser.getintr:(hhXThttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.getintX-tr:Xformatter.writer.send_paragraphr:(hhXMhttp://docs.python.org/library/formatter.html#formatter.writer.send_paragraphX-tr:X*argparse.ArgumentParser.add_argument_groupr:(hhXWhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.add_argument_groupX-tr:X difflib.SequenceMatcher.set_seqsr:(hhXLhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.set_seqsX-tr:Xurllib2.Request.get_datar:(hhXDhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_dataX-tr:Xobject.__exit__r:(hhX?http://docs.python.org/reference/datamodel.html#object.__exit__X-tr:Xdecimal.Context.clear_flagsr:(hhXGhttp://docs.python.org/library/decimal.html#decimal.Context.clear_flagsX-tr:Xrexec.RExec.s_reloadr:(hhX>http://docs.python.org/library/rexec.html#rexec.RExec.s_reloadX-tr:Xmsilib.Record.SetStringr:(hhXBhttp://docs.python.org/library/msilib.html#msilib.Record.SetStringX-tr:Xcurses.window.insertlnr:(hhXAhttp://docs.python.org/library/curses.html#curses.window.insertlnX-tr:X"asynchat.async_chat.get_terminatorr:(hhXOhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.get_terminatorX-tr:X#ossaudiodev.oss_mixer_device.filenor:(hhXShttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.filenoX-tr:Xnetrc.netrc.__repr__r:(hhX>http://docs.python.org/library/netrc.html#netrc.netrc.__repr__X-tr:Xrfc822.Message.rewindbodyr:(hhXDhttp://docs.python.org/library/rfc822.html#rfc822.Message.rewindbodyX-tr:Xmultifile.MultiFile.pushr:(hhXFhttp://docs.python.org/library/multifile.html#multifile.MultiFile.pushX-tr:Xdecimal.Decimal.compare_signalr:(hhXJhttp://docs.python.org/library/decimal.html#decimal.Decimal.compare_signalX-tr:Xlogging.NullHandler.emitr:(hhXMhttp://docs.python.org/library/logging.handlers.html#logging.NullHandler.emitX-tr:Xwave.Wave_write.setnchannelsr:(hhXEhttp://docs.python.org/library/wave.html#wave.Wave_write.setnchannelsX-tr:X,xml.sax.handler.ContentHandler.skippedEntityr:(hhX`http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.skippedEntityX-tr:X'ossaudiodev.oss_mixer_device.set_recsrcr:(hhXWhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.set_recsrcX-tr:Ximputil.ImportManager.installr:(hhXIhttp://docs.python.org/library/imputil.html#imputil.ImportManager.installX-tr:X)xml.sax.xmlreader.InputSource.setEncodingr:(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.setEncodingX-tr:X&distutils.cmd.Command.finalize_optionsr:(hhXShttp://docs.python.org/distutils/apiref.html#distutils.cmd.Command.finalize_optionsX-tr:X#xml.parsers.expat.xmlparser.SetBaser:(hhXOhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.SetBaseX-tr:X optparse.OptionParser.has_optionr:(hhXMhttp://docs.python.org/library/optparse.html#optparse.OptionParser.has_optionX-tr:Xstr.joinr:(hhX5http://docs.python.org/library/stdtypes.html#str.joinX-tr:X1BaseHTTPServer.BaseHTTPRequestHandler.log_messager:(hhXdhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.log_messageX-tr:X.optparse.OptionParser.enable_interspersed_argsr:(hhX[http://docs.python.org/library/optparse.html#optparse.OptionParser.enable_interspersed_argsX-tr:X0xml.parsers.expat.xmlparser.DefaultHandlerExpandr:(hhX\http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.DefaultHandlerExpandX-tr:Xpickle.Unpickler.loadr:(hhX@http://docs.python.org/library/pickle.html#pickle.Unpickler.loadX-tr:X$formatter.formatter.assert_line_datar:(hhXRhttp://docs.python.org/library/formatter.html#formatter.formatter.assert_line_dataX-tr:Xmailbox.MH.add_folderr:(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.MH.add_folderX-tr:Xurllib2.HTTPHandler.http_openr:(hhXIhttp://docs.python.org/library/urllib2.html#urllib2.HTTPHandler.http_openX-tr:Xtelnetlib.Telnet.set_debuglevelr:(hhXMhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.set_debuglevelX-tr:Xttk.Treeview.nextr:(hhX9http://docs.python.org/library/ttk.html#ttk.Treeview.nextX-tr:X3wsgiref.simple_server.WSGIRequestHandler.get_stderrr:(hhX_http://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIRequestHandler.get_stderrX-tr:Xmsilib.Database.OpenViewr:(hhXChttp://docs.python.org/library/msilib.html#msilib.Database.OpenViewX-tr:Xcookielib.CookieJar.set_cookier:(hhXLhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.set_cookieX-tr:X"string.Formatter.check_unused_argsr:(hhXMhttp://docs.python.org/library/string.html#string.Formatter.check_unused_argsX-tr:Xdatetime.tzinfo.dstr:(hhX@http://docs.python.org/library/datetime.html#datetime.tzinfo.dstX-tr:Xarray.array.tofiler:(hhX<http://docs.python.org/library/array.html#array.array.tofileX-tr:Xarray.array.remover:(hhX<http://docs.python.org/library/array.html#array.array.removeX-tr:X!xml.sax.xmlreader.XMLReader.parser:(hhXThttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.parseX-tr:Xwave.Wave_read.getsampwidthr:(hhXDhttp://docs.python.org/library/wave.html#wave.Wave_read.getsampwidthX-tr:X$ossaudiodev.oss_audio_device.bufsizer:(hhXThttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.bufsizeX-tr:Xlogging.Logger.exceptionr:(hhXDhttp://docs.python.org/library/logging.html#logging.Logger.exceptionX-tr:Xttk.Progressbar.stepr:(hhX<http://docs.python.org/library/ttk.html#ttk.Progressbar.stepX-tr:Xssl.SSLSocket.do_handshaker:(hhXBhttp://docs.python.org/library/ssl.html#ssl.SSLSocket.do_handshakeX-tr:Xio.RawIOBase.writer:(hhX9http://docs.python.org/library/io.html#io.RawIOBase.writeX-tr:Xunicode.isdecimalr;(hhX>http://docs.python.org/library/stdtypes.html#unicode.isdecimalX-tr;X!code.InteractiveConsole.raw_inputr;(hhXJhttp://docs.python.org/library/code.html#code.InteractiveConsole.raw_inputX-tr;Xnntplib.NNTP.groupr;(hhX>http://docs.python.org/library/nntplib.html#nntplib.NNTP.groupX-tr;Xaifc.aifc.closer;(hhX8http://docs.python.org/library/aifc.html#aifc.aifc.closeX-tr;Xmailbox.BabylMessage.get_labelsr;(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.get_labelsX-tr ;Xfl.form.find_firstr ;(hhX9http://docs.python.org/library/fl.html#fl.form.find_firstX-tr ;Xwave.Wave_read.tellr ;(hhX<http://docs.python.org/library/wave.html#wave.Wave_read.tellX-tr ;X!unittest.TestCase.assertDictEqualr;(hhXNhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertDictEqualX-tr;X!unittest.TestCase.assertListEqualr;(hhXNhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertListEqualX-tr;Xtelnetlib.Telnet.mt_interactr;(hhXJhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.mt_interactX-tr;Xclass.__subclasscheck__r;(hhXGhttp://docs.python.org/reference/datamodel.html#class.__subclasscheck__X-tr;X$sgmllib.SGMLParser.unknown_entityrefr;(hhXPhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.unknown_entityrefX-tr;XEasyDialogs.ProgressBar.titler;(hhXMhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBar.titleX-tr;Xftplib.FTP.closer;(hhX;http://docs.python.org/library/ftplib.html#ftplib.FTP.closeX-tr;Xlogging.StreamHandler.emitr;(hhXOhttp://docs.python.org/library/logging.handlers.html#logging.StreamHandler.emitX-tr;X'sqlite3.Connection.set_progress_handlerr;(hhXShttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.set_progress_handlerX-tr;Xcurses.panel.Panel.windowr ;(hhXJhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.windowX-tr!;Xdatetime.datetime.isocalendarr";(hhXJhttp://docs.python.org/library/datetime.html#datetime.datetime.isocalendarX-tr#;X mailbox.BabylMessage.set_visibler$;(hhXLhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.set_visibleX-tr%;Xfl.form.add_lightbuttonr&;(hhX>http://docs.python.org/library/fl.html#fl.form.add_lightbuttonX-tr';X(mimetypes.MimeTypes.guess_all_extensionsr(;(hhXVhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.guess_all_extensionsX-tr);Xdecimal.Decimal.to_integralr*;(hhXGhttp://docs.python.org/library/decimal.html#decimal.Decimal.to_integralX-tr+;Xcurses.window.mvwinr,;(hhX>http://docs.python.org/library/curses.html#curses.window.mvwinX-tr-;Xio.RawIOBase.readr.;(hhX8http://docs.python.org/library/io.html#io.RawIOBase.readX-tr/;Xsmtplib.SMTP.set_debuglevelr0;(hhXGhttp://docs.python.org/library/smtplib.html#smtplib.SMTP.set_debuglevelX-tr1;X)mimetypes.MimeTypes.read_windows_registryr2;(hhXWhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.read_windows_registryX-tr3;X#ossaudiodev.oss_audio_device.filenor4;(hhXShttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.filenoX-tr5;Xmsilib.Record.GetStringr6;(hhXBhttp://docs.python.org/library/msilib.html#msilib.Record.GetStringX-tr7;Xcollections.deque.extendr8;(hhXHhttp://docs.python.org/library/collections.html#collections.deque.extendX-tr9;Xbz2.BZ2Compressor.compressr:;(hhXBhttp://docs.python.org/library/bz2.html#bz2.BZ2Compressor.compressX-tr;;Xselect.poll.unregisterr<;(hhXAhttp://docs.python.org/library/select.html#select.poll.unregisterX-tr=;Xobject.__call__r>;(hhX?http://docs.python.org/reference/datamodel.html#object.__call__X-tr?;X+CGIHTTPServer.CGIHTTPRequestHandler.do_POSTr@;(hhX]http://docs.python.org/library/cgihttpserver.html#CGIHTTPServer.CGIHTTPRequestHandler.do_POSTX-trA;Xfl.form.freeze_formrB;(hhX:http://docs.python.org/library/fl.html#fl.form.freeze_formX-trC;X"calendar.Calendar.yeardayscalendarrD;(hhXOhttp://docs.python.org/library/calendar.html#calendar.Calendar.yeardayscalendarX-trE;Xstring.Template.substituterF;(hhXEhttp://docs.python.org/library/string.html#string.Template.substituteX-trG;Xmultifile.MultiFile.is_datarH;(hhXIhttp://docs.python.org/library/multifile.html#multifile.MultiFile.is_dataX-trI;X0distutils.ccompiler.CCompiler.link_shared_objectrJ;(hhX]http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.link_shared_objectX-trK;X_winreg.PyHKEY.__enter__rL;(hhXDhttp://docs.python.org/library/_winreg.html#_winreg.PyHKEY.__enter__X-trM;Xemail.message.Message.keysrN;(hhXLhttp://docs.python.org/library/email.message.html#email.message.Message.keysX-trO;X email.message.Message.add_headerrP;(hhXRhttp://docs.python.org/library/email.message.html#email.message.Message.add_headerX-trQ;X6multiprocessing.multiprocessing.queues.SimpleQueue.getrR;(hhXjhttp://docs.python.org/library/multiprocessing.html#multiprocessing.multiprocessing.queues.SimpleQueue.getX-trS;Ximaplib.IMAP4.proxyauthrT;(hhXChttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.proxyauthX-trU;Xformatter.writer.new_fontrV;(hhXGhttp://docs.python.org/library/formatter.html#formatter.writer.new_fontX-trW;Xmhlib.Folder.movemessagerX;(hhXBhttp://docs.python.org/library/mhlib.html#mhlib.Folder.movemessageX-trY;X!robotparser.RobotFileParser.parserZ;(hhXQhttp://docs.python.org/library/robotparser.html#robotparser.RobotFileParser.parseX-tr[;X mmap.rfindr\;(hhX3http://docs.python.org/library/mmap.html#mmap.rfindX-tr];Xttk.Notebook.selectr^;(hhX;http://docs.python.org/library/ttk.html#ttk.Notebook.selectX-tr_;Xselect.kqueue.filenor`;(hhX?http://docs.python.org/library/select.html#select.kqueue.filenoX-tra;Xhmac.HMAC.hexdigestrb;(hhX<http://docs.python.org/library/hmac.html#hmac.HMAC.hexdigestX-trc;Xaifc.aifc.setparamsrd;(hhX<http://docs.python.org/library/aifc.html#aifc.aifc.setparamsX-tre;Xsqlite3.Cursor.fetchonerf;(hhXChttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.fetchoneX-trg;X xml.dom.Element.setAttributeNoderh;(hhXLhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.setAttributeNodeX-tri;Xdecimal.Decimal.next_plusrj;(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.next_plusX-trk;Xtarfile.TarFile.extractfilerl;(hhXGhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.extractfileX-trm;X#SocketServer.BaseServer.get_requestrn;(hhXThttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.get_requestX-tro;X+ossaudiodev.oss_mixer_device.stereocontrolsrp;(hhX[http://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.stereocontrolsX-trq;Xobject.__imul__rr;(hhX?http://docs.python.org/reference/datamodel.html#object.__imul__X-trs;X%httplib.HTTPConnection.set_debuglevelrt;(hhXQhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.set_debuglevelX-tru;Ximaplib.IMAP4.sortrv;(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.sortX-trw;Xhotshot.Profile.stoprx;(hhX@http://docs.python.org/library/hotshot.html#hotshot.Profile.stopX-try;Xdecimal.Context.is_normalrz;(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.is_normalX-tr{;X'FrameWork.ScrolledWindow.scalebarvaluesr|;(hhXUhttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.scalebarvaluesX-tr};Xcurses.window.clearokr~;(hhX@http://docs.python.org/library/curses.html#curses.window.clearokX-tr;X!msilib.SummaryInformation.Persistr;(hhXLhttp://docs.python.org/library/msilib.html#msilib.SummaryInformation.PersistX-tr;X*ossaudiodev.oss_audio_device.setparametersr;(hhXZhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.setparametersX-tr;Xmsilib.Feature.set_currentr;(hhXEhttp://docs.python.org/library/msilib.html#msilib.Feature.set_currentX-tr;Xcurses.window.noutrefreshr;(hhXDhttp://docs.python.org/library/curses.html#curses.window.noutrefreshX-tr;Xxml.dom.Element.getAttributer;(hhXHhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.getAttributeX-tr;X"formatter.formatter.push_alignmentr;(hhXPhttp://docs.python.org/library/formatter.html#formatter.formatter.push_alignmentX-tr;Xmd5.md5.digestr;(hhX6http://docs.python.org/library/md5.html#md5.md5.digestX-tr;Xcontextmanager.__exit__r;(hhXDhttp://docs.python.org/library/stdtypes.html#contextmanager.__exit__X-tr;Xshlex.shlex.read_tokenr;(hhX@http://docs.python.org/library/shlex.html#shlex.shlex.read_tokenX-tr;Xmsilib.Control.mappingr;(hhXAhttp://docs.python.org/library/msilib.html#msilib.Control.mappingX-tr;Xnumbers.Complex.conjugater;(hhXEhttp://docs.python.org/library/numbers.html#numbers.Complex.conjugateX-tr;X$asynchat.async_chat.found_terminatorr;(hhXQhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.found_terminatorX-tr;Xcurses.window.redrawlnr;(hhXAhttp://docs.python.org/library/curses.html#curses.window.redrawlnX-tr;X"ossaudiodev.oss_audio_device.speedr;(hhXRhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.speedX-tr;Xstruct.Struct.pack_intor;(hhXBhttp://docs.python.org/library/struct.html#struct.Struct.pack_intoX-tr;Xsymtable.Symbol.is_parameterr;(hhXIhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_parameterX-tr;X$calendar.Calendar.monthdays2calendarr;(hhXQhttp://docs.python.org/library/calendar.html#calendar.Calendar.monthdays2calendarX-tr;X%code.InteractiveInterpreter.runsourcer;(hhXNhttp://docs.python.org/library/code.html#code.InteractiveInterpreter.runsourceX-tr;Xic.IC.launchurlr;(hhX6http://docs.python.org/library/ic.html#ic.IC.launchurlX-tr;X imputil.ImportManager.add_suffixr;(hhXLhttp://docs.python.org/library/imputil.html#imputil.ImportManager.add_suffixX-tr;X&multiprocessing.pool.AsyncResult.readyr;(hhXZhttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.AsyncResult.readyX-tr;X file.flushr;(hhX7http://docs.python.org/library/stdtypes.html#file.flushX-tr;XSocketServer.BaseServer.filenor;(hhXOhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.filenoX-tr;Xcmd.Cmd.cmdloopr;(hhX7http://docs.python.org/library/cmd.html#cmd.Cmd.cmdloopX-tr;Xsunau.AU_read.getmarkr;(hhX?http://docs.python.org/library/sunau.html#sunau.AU_read.getmarkX-tr;Xttk.Combobox.setr;(hhX8http://docs.python.org/library/ttk.html#ttk.Combobox.setX-tr;Xcookielib.FileCookieJar.revertr;(hhXLhttp://docs.python.org/library/cookielib.html#cookielib.FileCookieJar.revertX-tr;Xcurses.window.delchr;(hhX>http://docs.python.org/library/curses.html#curses.window.delchX-tr;X,xml.sax.handler.ContentHandler.startDocumentr;(hhX`http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.startDocumentX-tr;X$ConfigParser.RawConfigParser.optionsr;(hhXUhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.optionsX-tr;Xzipfile.PyZipFile.writepyr;(hhXEhttp://docs.python.org/library/zipfile.html#zipfile.PyZipFile.writepyX-tr;Xrfc822.Message.isheaderr;(hhXBhttp://docs.python.org/library/rfc822.html#rfc822.Message.isheaderX-tr;Xmailbox.Maildir.updater;(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.updateX-tr;X'wsgiref.handlers.BaseHandler.get_schemer;(hhXShttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.get_schemeX-tr;X*multiprocessing.managers.BaseManager.startr;(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManager.startX-tr;Xmailbox.Maildir.add_folderr;(hhXFhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.add_folderX-tr;Xftplib.FTP.retrlinesr;(hhX?http://docs.python.org/library/ftplib.html#ftplib.FTP.retrlinesX-tr;Xxdrlib.Unpacker.set_positionr;(hhXGhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.set_positionX-tr;X*distutils.ccompiler.CCompiler.has_functionr;(hhXWhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.has_functionX-tr;Xstring.Formatter.get_valuer;(hhXEhttp://docs.python.org/library/string.html#string.Formatter.get_valueX-tr;Ximaplib.IMAP4.deleter;(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.deleteX-tr;Xcurses.window.idlokr;(hhX>http://docs.python.org/library/curses.html#curses.window.idlokX-tr;Xhtmllib.HTMLParser.save_bgnr;(hhXGhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.save_bgnX-tr;Xdatetime.datetime.strftimer;(hhXGhttp://docs.python.org/library/datetime.html#datetime.datetime.strftimeX-tr;X!ossaudiodev.oss_audio_device.readr;(hhXQhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.readX-tr;Xbdb.Bdb.break_herer;(hhX:http://docs.python.org/library/bdb.html#bdb.Bdb.break_hereX-tr;Xdecimal.Decimal.next_minusr;(hhXFhttp://docs.python.org/library/decimal.html#decimal.Decimal.next_minusX-tr;Xlogging.Logger.errorr;(hhX@http://docs.python.org/library/logging.html#logging.Logger.errorX-tr;X,BaseHTTPServer.BaseHTTPRequestHandler.handler;(hhX_http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.handleX-tr;X#multifile.MultiFile.section_dividerr;(hhXQhttp://docs.python.org/library/multifile.html#multifile.MultiFile.section_dividerX-tr;Ximaplib.IMAP4.storer;(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.storeX-tr;Xformatter.writer.new_alignmentr;(hhXLhttp://docs.python.org/library/formatter.html#formatter.writer.new_alignmentX-tr;X"doctest.OutputChecker.check_outputr;(hhXNhttp://docs.python.org/library/doctest.html#doctest.OutputChecker.check_outputX-tr;Xsymtable.Symbol.is_globalr;(hhXFhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_globalX-tr;X!email.message.Message.get_payloadr;(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.get_payloadX-tr;Xsmtplib.SMTP.loginr;(hhX>http://docs.python.org/library/smtplib.html#smtplib.SMTP.loginX-tr;Xunittest.TestSuite.__iter__r;(hhXHhttp://docs.python.org/library/unittest.html#unittest.TestSuite.__iter__X-tr;Ximaplib.IMAP4.renamer;(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.renameX-tr;X)email.message.Message.get_content_charsetr;(hhX[http://docs.python.org/library/email.message.html#email.message.Message.get_content_charsetX-tr;Xarray.array.fromfiler;(hhX>http://docs.python.org/library/array.html#array.array.fromfileX-tr;Xdecimal.Decimal.is_finiter;(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_finiteX-tr;Xxdrlib.Unpacker.unpack_listr;(hhXFhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_listX-tr;X+multiprocessing.pool.AsyncResult.successfulr;(hhX_http://docs.python.org/library/multiprocessing.html#multiprocessing.pool.AsyncResult.successfulX-tr;X&unittest.TestCase.assertNotAlmostEqualr;(hhXShttp://docs.python.org/library/unittest.html#unittest.TestCase.assertNotAlmostEqualX-tr;X$logging.handlers.SocketHandler.closer<(hhXYhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.closeX-tr<X unittest.TestCase.countTestCasesr<(hhXMhttp://docs.python.org/library/unittest.html#unittest.TestCase.countTestCasesX-tr<X%SocketServer.BaseServer.serve_foreverr<(hhXVhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.serve_foreverX-tr<Xhotshot.Profile.startr<(hhXAhttp://docs.python.org/library/hotshot.html#hotshot.Profile.startX-tr<X<SimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_instancer<(hhXshttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_instanceX-tr <Xtrace.Trace.runr <(hhX9http://docs.python.org/library/trace.html#trace.Trace.runX-tr <X"email.message.Message.get_unixfromr <(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.get_unixfromX-tr <Xmultiprocessing.Process.joinr<(hhXPhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.joinX-tr<X bdb.Bdb.runr<(hhX3http://docs.python.org/library/bdb.html#bdb.Bdb.runX-tr<Xcurses.window.refreshr<(hhX@http://docs.python.org/library/curses.html#curses.window.refreshX-tr<X7SimpleXMLRPCServer.SimpleXMLRPCServer.register_functionr<(hhXnhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCServer.register_functionX-tr<Xdecimal.Context.shiftr<(hhXAhttp://docs.python.org/library/decimal.html#decimal.Context.shiftX-tr<X$distutils.ccompiler.CCompiler.mkpathr<(hhXQhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.mkpathX-tr<Xpickle.Pickler.clear_memor<(hhXDhttp://docs.python.org/library/pickle.html#pickle.Pickler.clear_memoX-tr<XFrameWork.Window.do_activater<(hhXJhttp://docs.python.org/library/framework.html#FrameWork.Window.do_activateX-tr<Xxml.dom.Document.createCommentr<(hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createCommentX-tr<Xsymtable.Symbol.is_freer <(hhXDhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_freeX-tr!<Xctypes._CData.in_dllr"<(hhX?http://docs.python.org/library/ctypes.html#ctypes._CData.in_dllX-tr#<Xio.TextIOBase.seekr$<(hhX9http://docs.python.org/library/io.html#io.TextIOBase.seekX-tr%<Xxml.dom.Element.getAttributeNSr&<(hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.getAttributeNSX-tr'<Xaifc.aifc.setframerater(<(hhX?http://docs.python.org/library/aifc.html#aifc.aifc.setframerateX-tr)<Xmsilib.Record.SetStreamr*<(hhXBhttp://docs.python.org/library/msilib.html#msilib.Record.SetStreamX-tr+<Xctypes._CData.from_bufferr,<(hhXDhttp://docs.python.org/library/ctypes.html#ctypes._CData.from_bufferX-tr-<Xcodecs.StreamWriter.resetr.<(hhXDhttp://docs.python.org/library/codecs.html#codecs.StreamWriter.resetX-tr/<Xlogging.Handler.handler0<(hhXBhttp://docs.python.org/library/logging.html#logging.Handler.handleX-tr1<Xftplib.FTP.set_pasvr2<(hhX>http://docs.python.org/library/ftplib.html#ftplib.FTP.set_pasvX-tr3<Xmemoryview.tobytesr4<(hhX?http://docs.python.org/library/stdtypes.html#memoryview.tobytesX-tr5<Xbdb.Bdb.get_breaksr6<(hhX:http://docs.python.org/library/bdb.html#bdb.Bdb.get_breaksX-tr7<X!xml.sax.SAXException.getExceptionr8<(hhXMhttp://docs.python.org/library/xml.sax.html#xml.sax.SAXException.getExceptionX-tr9<X gettext.NullTranslations.installr:<(hhXLhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.installX-tr;<X str.stripr<<(hhX6http://docs.python.org/library/stdtypes.html#str.stripX-tr=<Xcurses.window.clrtoeolr><(hhXAhttp://docs.python.org/library/curses.html#curses.window.clrtoeolX-tr?<Xcalendar.Calendar.iterweekdaysr@<(hhXKhttp://docs.python.org/library/calendar.html#calendar.Calendar.iterweekdaysX-trA<Xdatetime.date.weekdayrB<(hhXBhttp://docs.python.org/library/datetime.html#datetime.date.weekdayX-trC<Xtarfile.TarInfo.issymrD<(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.issymX-trE<Xobject.__neg__rF<(hhX>http://docs.python.org/reference/datamodel.html#object.__neg__X-trG<Xselect.epoll.filenorH<(hhX>http://docs.python.org/library/select.html#select.epoll.filenoX-trI<Xobject.__ror__rJ<(hhX>http://docs.python.org/reference/datamodel.html#object.__ror__X-trK<Xwave.Wave_read.getparamsrL<(hhXAhttp://docs.python.org/library/wave.html#wave.Wave_read.getparamsX-trM<Xdecimal.Decimal.max_magrN<(hhXChttp://docs.python.org/library/decimal.html#decimal.Decimal.max_magX-trO<Xmultifile.MultiFile.tellrP<(hhXFhttp://docs.python.org/library/multifile.html#multifile.MultiFile.tellX-trQ<Xunittest.TestCase.setUprR<(hhXDhttp://docs.python.org/library/unittest.html#unittest.TestCase.setUpX-trS<X xml.dom.Document.createElementNSrT<(hhXLhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createElementNSX-trU<X+xml.sax.handler.ContentHandler.startElementrV<(hhX_http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.startElementX-trW<Xwave.Wave_read.getnframesrX<(hhXBhttp://docs.python.org/library/wave.html#wave.Wave_read.getnframesX-trY<Xsunau.AU_read.getsampwidthrZ<(hhXDhttp://docs.python.org/library/sunau.html#sunau.AU_read.getsampwidthX-tr[<Xsqlite3.Connection.commitr\<(hhXEhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.commitX-tr]<X"xml.dom.Element.setAttributeNodeNSr^<(hhXNhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.setAttributeNodeNSX-tr_<Xpoplib.POP3.apopr`<(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.apopX-tra<Xsymtable.SymbolTable.lookuprb<(hhXHhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.lookupX-trc<XQueue.Queue.fullrd<(hhX:http://docs.python.org/library/queue.html#Queue.Queue.fullX-tre<Xtimeit.Timer.repeatrf<(hhX>http://docs.python.org/library/timeit.html#timeit.Timer.repeatX-trg<Xaifc.aifc.setsampwidthrh<(hhX?http://docs.python.org/library/aifc.html#aifc.aifc.setsampwidthX-tri<Xmailbox.BabylMessage.add_labelrj<(hhXJhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.add_labelX-trk<Xttk.Treeview.identify_rowrl<(hhXAhttp://docs.python.org/library/ttk.html#ttk.Treeview.identify_rowX-trm<Xset.difference_updatern<(hhXBhttp://docs.python.org/library/stdtypes.html#set.difference_updateX-tro<Xobject.__rdiv__rp<(hhX?http://docs.python.org/reference/datamodel.html#object.__rdiv__X-trq<Xmailbox.Mailbox.removerr<(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.removeX-trs<X!sgmllib.SGMLParser.handle_charrefrt<(hhXMhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_charrefX-tru<X0distutils.ccompiler.CCompiler.library_dir_optionrv<(hhX]http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.library_dir_optionX-trw<X'cookielib.CookiePolicy.domain_return_okrx<(hhXUhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.domain_return_okX-try<Xbdb.Bdb.user_linerz<(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.user_lineX-tr{<X5multiprocessing.pool.multiprocessing.Pool.apply_asyncr|<(hhXihttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.apply_asyncX-tr}<Xcurses.window.leaveokr~<(hhX@http://docs.python.org/library/curses.html#curses.window.leaveokX-tr<Xfl.form.add_sliderr<(hhX9http://docs.python.org/library/fl.html#fl.form.add_sliderX-tr<Xmsilib.Dialog.textr<(hhX=http://docs.python.org/library/msilib.html#msilib.Dialog.textX-tr<Xnetrc.netrc.authenticatorsr<(hhXDhttp://docs.python.org/library/netrc.html#netrc.netrc.authenticatorsX-tr<X+FrameWork.ScrolledWindow.getscrollbarvaluesr<(hhXYhttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.getscrollbarvaluesX-tr<Xcurses.window.boxr<(hhX<http://docs.python.org/library/curses.html#curses.window.boxX-tr<XTix.tixCommand.tix_option_getr<(hhXEhttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_option_getX-tr<X&xml.etree.ElementTree.Element.itertextr<(hhX`http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.itertextX-tr<Xcmd.Cmd.postloopr<(hhX8http://docs.python.org/library/cmd.html#cmd.Cmd.postloopX-tr<Xcodecs.Codec.encoder<(hhX>http://docs.python.org/library/codecs.html#codecs.Codec.encodeX-tr<Xmailbox.MMDFMessage.set_flagsr<(hhXIhttp://docs.python.org/library/mailbox.html#mailbox.MMDFMessage.set_flagsX-tr<X*urllib2.HTTPRedirectHandler.http_error_307r<(hhXVhttp://docs.python.org/library/urllib2.html#urllib2.HTTPRedirectHandler.http_error_307X-tr<X*urllib2.HTTPRedirectHandler.http_error_301r<(hhXVhttp://docs.python.org/library/urllib2.html#urllib2.HTTPRedirectHandler.http_error_301X-tr<Xselect.poll.modifyr<(hhX=http://docs.python.org/library/select.html#select.poll.modifyX-tr<X*urllib2.HTTPRedirectHandler.http_error_303r<(hhXVhttp://docs.python.org/library/urllib2.html#urllib2.HTTPRedirectHandler.http_error_303X-tr<X*urllib2.HTTPRedirectHandler.http_error_302r<(hhXVhttp://docs.python.org/library/urllib2.html#urllib2.HTTPRedirectHandler.http_error_302X-tr<X!email.message.Message.set_payloadr<(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.set_payloadX-tr<X#robotparser.RobotFileParser.set_urlr<(hhXShttp://docs.python.org/library/robotparser.html#robotparser.RobotFileParser.set_urlX-tr<X1xml.sax.handler.ContentHandler.setDocumentLocatorr<(hhXehttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.setDocumentLocatorX-tr<Xsha.sha.hexdigestr<(hhX9http://docs.python.org/library/sha.html#sha.sha.hexdigestX-tr<X4logging.handlers.TimedRotatingFileHandler.doRolloverr<(hhXihttp://docs.python.org/library/logging.handlers.html#logging.handlers.TimedRotatingFileHandler.doRolloverX-tr<X zipimport.zipimporter.is_packager<(hhXNhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.is_packageX-tr<X$unittest.TestLoader.getTestCaseNamesr<(hhXQhttp://docs.python.org/library/unittest.html#unittest.TestLoader.getTestCaseNamesX-tr<X)test.test_support.EnvironmentVarGuard.setr<(hhXRhttp://docs.python.org/library/test.html#test.test_support.EnvironmentVarGuard.setX-tr<Xprofile.Profile.create_statsr<(hhXHhttp://docs.python.org/library/profile.html#profile.Profile.create_statsX-tr<Xsocket.socket.recv_intor<(hhXBhttp://docs.python.org/library/socket.html#socket.socket.recv_intoX-tr<X)xml.sax.xmlreader.XMLReader.getDTDHandlerr<(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.getDTDHandlerX-tr<Xlogging.Handler.__init__r<(hhXDhttp://docs.python.org/library/logging.html#logging.Handler.__init__X-tr<Xcodecs.IncrementalEncoder.resetr<(hhXJhttp://docs.python.org/library/codecs.html#codecs.IncrementalEncoder.resetX-tr<X$HTMLParser.HTMLParser.handle_charrefr<(hhXShttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_charrefX-tr<Xftplib.FTP.getwelcomer<(hhX@http://docs.python.org/library/ftplib.html#ftplib.FTP.getwelcomeX-tr<Xasyncore.dispatcher.writabler<(hhXIhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.writableX-tr<Xmhlib.Folder.setcurrentr<(hhXAhttp://docs.python.org/library/mhlib.html#mhlib.Folder.setcurrentX-tr<Xobject.__getstate__r<(hhX>http://docs.python.org/library/pickle.html#object.__getstate__X-tr<Xobject.__reduce_ex__r<(hhX?http://docs.python.org/library/pickle.html#object.__reduce_ex__X-tr<Xmailbox.Mailbox.popr<(hhX?http://docs.python.org/library/mailbox.html#mailbox.Mailbox.popX-tr<X"xml.dom.Element.getAttributeNodeNSr<(hhXNhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.getAttributeNodeNSX-tr<Xarray.array.insertr<(hhX<http://docs.python.org/library/array.html#array.array.insertX-tr<X&distutils.ccompiler.CCompiler.announcer<(hhXShttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.announceX-tr<Xwave.Wave_write.setsampwidthr<(hhXEhttp://docs.python.org/library/wave.html#wave.Wave_write.setsampwidthX-tr<X-urllib2.ProxyDigestAuthHandler.http_error_407r<(hhXYhttp://docs.python.org/library/urllib2.html#urllib2.ProxyDigestAuthHandler.http_error_407X-tr<Xmultifile.MultiFile.readliner<(hhXJhttp://docs.python.org/library/multifile.html#multifile.MultiFile.readlineX-tr<Xdecimal.Context.same_quantumr<(hhXHhttp://docs.python.org/library/decimal.html#decimal.Context.same_quantumX-tr<Xxdrlib.Unpacker.unpack_fopaquer<(hhXIhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_fopaqueX-tr<Xpstats.Stats.addr<(hhX<http://docs.python.org/library/profile.html#pstats.Stats.addX-tr<Xcurses.panel.Panel.abover<(hhXIhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.aboveX-tr<X%unittest.TestCase.assertRegexpMatchesr<(hhXRhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertRegexpMatchesX-tr<Xstruct.Struct.unpackr<(hhX?http://docs.python.org/library/struct.html#struct.Struct.unpackX-tr<Xdecimal.Context.copy_signr<(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.copy_signX-tr<X*multiprocessing.managers.BaseProxy.__str__r<(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseProxy.__str__X-tr<Xnntplib.NNTP.newgroupsr<(hhXBhttp://docs.python.org/library/nntplib.html#nntplib.NNTP.newgroupsX-tr<Xnntplib.NNTP.xoverr<(hhX>http://docs.python.org/library/nntplib.html#nntplib.NNTP.xoverX-tr<X mmap.resizer<(hhX4http://docs.python.org/library/mmap.html#mmap.resizeX-tr<Xre.MatchObject.endr<(hhX9http://docs.python.org/library/re.html#re.MatchObject.endX-tr<XBSimpleXMLRPCServer.SimpleXMLRPCServer.register_multicall_functionsr<(hhXyhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCServer.register_multicall_functionsX-tr<X sgmllib.SGMLParser.handle_endtagr<(hhXLhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_endtagX-tr<Xobject.__mul__r<(hhX>http://docs.python.org/reference/datamodel.html#object.__mul__X-tr<X dl.dl.symr<(hhX0http://docs.python.org/library/dl.html#dl.dl.symX-tr<Xobject.__del__r<(hhX>http://docs.python.org/reference/datamodel.html#object.__del__X-tr<Xmsilib.Record.GetIntegerr<(hhXChttp://docs.python.org/library/msilib.html#msilib.Record.GetIntegerX-tr<Xaifc.aifc.writeframesr<(hhX>http://docs.python.org/library/aifc.html#aifc.aifc.writeframesX-tr<X"formatter.writer.send_flowing_datar<(hhXPhttp://docs.python.org/library/formatter.html#formatter.writer.send_flowing_dataX-tr<Xmhlib.MH.listallfoldersr<(hhXAhttp://docs.python.org/library/mhlib.html#mhlib.MH.listallfoldersX-tr<X4xml.parsers.expat.xmlparser.StartCdataSectionHandlerr<(hhX`http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.StartCdataSectionHandlerX-tr<Xchunk.Chunk.seekr<(hhX:http://docs.python.org/library/chunk.html#chunk.Chunk.seekX-tr<Xmultifile.MultiFile.nextr=(hhXFhttp://docs.python.org/library/multifile.html#multifile.MultiFile.nextX-tr=Xmailbox.Maildir.get_folderr=(hhXFhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.get_folderX-tr=Xmultiprocessing.Queue.putr=(hhXMhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.putX-tr=Xmhlib.Folder.refilemessagesr=(hhXEhttp://docs.python.org/library/mhlib.html#mhlib.Folder.refilemessagesX-tr=Xpipes.Template.debugr=(hhX>http://docs.python.org/library/pipes.html#pipes.Template.debugX-tr =X"xml.sax.handler.ErrorHandler.errorr =(hhXVhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ErrorHandler.errorX-tr =X+logging.handlers.DatagramHandler.makeSocketr =(hhX`http://docs.python.org/library/logging.handlers.html#logging.handlers.DatagramHandler.makeSocketX-tr =X'logging.handlers.NTEventLogHandler.emitr=(hhX\http://docs.python.org/library/logging.handlers.html#logging.handlers.NTEventLogHandler.emitX-tr=Xdecimal.Context.powerr=(hhXAhttp://docs.python.org/library/decimal.html#decimal.Context.powerX-tr=X md5.md5.copyr=(hhX4http://docs.python.org/library/md5.html#md5.md5.copyX-tr=X"argparse.ArgumentParser.print_helpr=(hhXOhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.print_helpX-tr=Xsqlite3.Row.keysr=(hhX<http://docs.python.org/library/sqlite3.html#sqlite3.Row.keysX-tr=Xobject.__rshift__r=(hhXAhttp://docs.python.org/reference/datamodel.html#object.__rshift__X-tr=Xurllib2.Request.is_unverifiabler=(hhXKhttp://docs.python.org/library/urllib2.html#urllib2.Request.is_unverifiableX-tr=Xnntplib.NNTP.quitr=(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.quitX-tr=X0telnetlib.Telnet.set_option_negotiation_callbackr=(hhX^http://docs.python.org/library/telnetlib.html#telnetlib.Telnet.set_option_negotiation_callbackX-tr=Xsocket.socket.getpeernamer =(hhXDhttp://docs.python.org/library/socket.html#socket.socket.getpeernameX-tr!=Xftplib.FTP.nlstr"=(hhX:http://docs.python.org/library/ftplib.html#ftplib.FTP.nlstX-tr#=X'HTMLParser.HTMLParser.get_starttag_textr$=(hhXVhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.get_starttag_textX-tr%=Xftplib.FTP.sendcmdr&=(hhX=http://docs.python.org/library/ftplib.html#ftplib.FTP.sendcmdX-tr'=Xnntplib.NNTP.xhdrr(=(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.xhdrX-tr)=Xmultiprocessing.Queue.emptyr*=(hhXOhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.emptyX-tr+=Xttk.Treeview.tag_bindr,=(hhX=http://docs.python.org/library/ttk.html#ttk.Treeview.tag_bindX-tr-=Ximaplib.IMAP4.readr.=(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.readX-tr/=Xcodecs.StreamWriter.writer0=(hhXDhttp://docs.python.org/library/codecs.html#codecs.StreamWriter.writeX-tr1=X#logging.handlers.SocketHandler.emitr2=(hhXXhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.emitX-tr3=Xsmtplib.SMTP.quitr4=(hhX=http://docs.python.org/library/smtplib.html#smtplib.SMTP.quitX-tr5=Xobject.__contains__r6=(hhXChttp://docs.python.org/reference/datamodel.html#object.__contains__X-tr7=Xlogging.Logger.warningr8=(hhXBhttp://docs.python.org/library/logging.html#logging.Logger.warningX-tr9=Xbdb.Bdb.set_quitr:=(hhX8http://docs.python.org/library/bdb.html#bdb.Bdb.set_quitX-tr;=Xmailbox.Mailbox.updater<=(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.updateX-tr==Xzlib.Compress.copyr>=(hhX;http://docs.python.org/library/zlib.html#zlib.Compress.copyX-tr?=Xdecimal.Context.is_qnanr@=(hhXChttp://docs.python.org/library/decimal.html#decimal.Context.is_qnanX-trA=X)xml.etree.ElementTree.Element.makeelementrB=(hhXchttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.makeelementX-trC=Xobject.__rcmp__rD=(hhX?http://docs.python.org/reference/datamodel.html#object.__rcmp__X-trE=XFrameWork.Window.closerF=(hhXDhttp://docs.python.org/library/framework.html#FrameWork.Window.closeX-trG=X optparse.OptionParser.get_optionrH=(hhXMhttp://docs.python.org/library/optparse.html#optparse.OptionParser.get_optionX-trI=X$doctest.DocTestRunner.report_successrJ=(hhXPhttp://docs.python.org/library/doctest.html#doctest.DocTestRunner.report_successX-trK=Xdatetime.date.replacerL=(hhXBhttp://docs.python.org/library/datetime.html#datetime.date.replaceX-trM=Xcurses.window.getchrN=(hhX>http://docs.python.org/library/curses.html#curses.window.getchX-trO=Xthreading.Thread.runrP=(hhXBhttp://docs.python.org/library/threading.html#threading.Thread.runX-trQ=XStringIO.StringIO.closerR=(hhXDhttp://docs.python.org/library/stringio.html#StringIO.StringIO.closeX-trS=X#HTMLParser.HTMLParser.handle_endtagrT=(hhXRhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_endtagX-trU=Xsunau.AU_read.getcomptyperV=(hhXChttp://docs.python.org/library/sunau.html#sunau.AU_read.getcomptypeX-trW=Xmhlib.Folder.getmessagefilenamerX=(hhXIhttp://docs.python.org/library/mhlib.html#mhlib.Folder.getmessagefilenameX-trY=Xcurses.window.cursyncuprZ=(hhXBhttp://docs.python.org/library/curses.html#curses.window.cursyncupX-tr[=Xmailbox.MMDFMessage.get_fromr\=(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.MMDFMessage.get_fromX-tr]=Xrfc822.Message.getheaderr^=(hhXChttp://docs.python.org/library/rfc822.html#rfc822.Message.getheaderX-tr_=Xselect.kqueue.fromfdr`=(hhX?http://docs.python.org/library/select.html#select.kqueue.fromfdX-tra=Xbdb.Breakpoint.deleteMerb=(hhX?http://docs.python.org/library/bdb.html#bdb.Breakpoint.deleteMeX-trc=Xnntplib.NNTP.xgtitlerd=(hhX@http://docs.python.org/library/nntplib.html#nntplib.NNTP.xgtitleX-tre=Xrfc822.Message.getaddrrf=(hhXAhttp://docs.python.org/library/rfc822.html#rfc822.Message.getaddrX-trg=Xdumbdbm.dumbdbm.syncrh=(hhX@http://docs.python.org/library/dumbdbm.html#dumbdbm.dumbdbm.syncX-tri=Xmultiprocessing.Connection.pollrj=(hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.pollX-trk=X(xml.dom.DOMImplementation.createDocumentrl=(hhXThttp://docs.python.org/library/xml.dom.html#xml.dom.DOMImplementation.createDocumentX-trm=X*difflib.SequenceMatcher.find_longest_matchrn=(hhXVhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.find_longest_matchX-tro=Xselect.epoll.pollrp=(hhX<http://docs.python.org/library/select.html#select.epoll.pollX-trq=X object.__eq__rr=(hhX=http://docs.python.org/reference/datamodel.html#object.__eq__X-trs=Xdecimal.Decimal.canonicalrt=(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.canonicalX-tru=Xaetools.TalkTo._startrv=(hhXAhttp://docs.python.org/library/aetools.html#aetools.TalkTo._startX-trw=Xtelnetlib.Telnet.read_lazyrx=(hhXHhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_lazyX-try=X(difflib.SequenceMatcher.real_quick_ratiorz=(hhXThttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.real_quick_ratioX-tr{=Xxml.dom.Node.isSameNoder|=(hhXChttp://docs.python.org/library/xml.dom.html#xml.dom.Node.isSameNodeX-tr}=Xoptparse.OptionParser.set_usager~=(hhXLhttp://docs.python.org/library/optparse.html#optparse.OptionParser.set_usageX-tr=Xdecimal.Context.sqrtr=(hhX@http://docs.python.org/library/decimal.html#decimal.Context.sqrtX-tr=X!sgmllib.SGMLParser.handle_commentr=(hhXMhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_commentX-tr=Ximputil.Importer.get_coder=(hhXEhttp://docs.python.org/library/imputil.html#imputil.Importer.get_codeX-tr=Xunittest.TestResult.addSkipr=(hhXHhttp://docs.python.org/library/unittest.html#unittest.TestResult.addSkipX-tr=X+xml.sax.xmlreader.InputSource.getByteStreamr=(hhX^http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.getByteStreamX-tr=Xaifc.aifc.getcompnamer=(hhX>http://docs.python.org/library/aifc.html#aifc.aifc.getcompnameX-tr=X(cookielib.DefaultCookiePolicy.is_blockedr=(hhXVhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.is_blockedX-tr=X!email.message.Message.__setitem__r=(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.__setitem__X-tr=X"SocketServer.RequestHandler.finishr=(hhXShttp://docs.python.org/library/socketserver.html#SocketServer.RequestHandler.finishX-tr=Xhashlib.hash.copyr=(hhX=http://docs.python.org/library/hashlib.html#hashlib.hash.copyX-tr=X set.unionr=(hhX6http://docs.python.org/library/stdtypes.html#set.unionX-tr=X codecs.IncrementalDecoder.decoder=(hhXKhttp://docs.python.org/library/codecs.html#codecs.IncrementalDecoder.decodeX-tr=XHTMLParser.HTMLParser.handle_pir=(hhXNhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_piX-tr=Xttk.Treeview.columnr=(hhX;http://docs.python.org/library/ttk.html#ttk.Treeview.columnX-tr=X!unittest.TestCase.assertIsNotNoner=(hhXNhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertIsNotNoneX-tr=Xobject.__isub__r=(hhX?http://docs.python.org/reference/datamodel.html#object.__isub__X-tr=Xemail.header.Header.appendr=(hhXKhttp://docs.python.org/library/email.header.html#email.header.Header.appendX-tr=Xzlib.Decompress.decompressr=(hhXChttp://docs.python.org/library/zlib.html#zlib.Decompress.decompressX-tr=Xdecimal.Context.canonicalr=(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.canonicalX-tr=Xposixfile.posixfile.filer=(hhXFhttp://docs.python.org/library/posixfile.html#posixfile.posixfile.fileX-tr=Xlogging.LoggerAdapter.processr=(hhXIhttp://docs.python.org/library/logging.html#logging.LoggerAdapter.processX-tr=Xobject.__get__r=(hhX>http://docs.python.org/reference/datamodel.html#object.__get__X-tr=Xbdb.Bdb.get_stackr=(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.get_stackX-tr=X+difflib.SequenceMatcher.get_matching_blocksr=(hhXWhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.get_matching_blocksX-tr=Xttk.Notebook.tabr=(hhX8http://docs.python.org/library/ttk.html#ttk.Notebook.tabX-tr=Xfl.form.add_buttonr=(hhX9http://docs.python.org/library/fl.html#fl.form.add_buttonX-tr=Xaifc.aifc.writeframesrawr=(hhXAhttp://docs.python.org/library/aifc.html#aifc.aifc.writeframesrawX-tr=Xobject.__enter__r=(hhX@http://docs.python.org/reference/datamodel.html#object.__enter__X-tr=Xmsilib.View.Fetchr=(hhX<http://docs.python.org/library/msilib.html#msilib.View.FetchX-tr=Xshelve.Shelf.syncr=(hhX<http://docs.python.org/library/shelve.html#shelve.Shelf.syncX-tr=X0xml.parsers.expat.xmlparser.NotStandaloneHandlerr=(hhX\http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.NotStandaloneHandlerX-tr=Xmailbox.mboxMessage.set_flagsr=(hhXIhttp://docs.python.org/library/mailbox.html#mailbox.mboxMessage.set_flagsX-tr=X str.lowerr=(hhX6http://docs.python.org/library/stdtypes.html#str.lowerX-tr=X dict.keysr=(hhX6http://docs.python.org/library/stdtypes.html#dict.keysX-tr=X&xml.etree.ElementTree.ElementTree.findr=(hhX`http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.findX-tr=Xobject.__new__r=(hhX>http://docs.python.org/reference/datamodel.html#object.__new__X-tr=X"unittest.TestCase.assertIsInstancer=(hhXOhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertIsInstanceX-tr=X$xml.etree.ElementTree.Element.insertr=(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.insertX-tr=X$modulefinder.ModuleFinder.run_scriptr=(hhXUhttp://docs.python.org/library/modulefinder.html#modulefinder.ModuleFinder.run_scriptX-tr=Xsymtable.SymbolTable.get_idr=(hhXHhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_idX-tr=Xmsilib.RadioButtonGroup.addr=(hhXFhttp://docs.python.org/library/msilib.html#msilib.RadioButtonGroup.addX-tr=Xdecimal.Decimal.log10r=(hhXAhttp://docs.python.org/library/decimal.html#decimal.Decimal.log10X-tr=Xttk.Style.theme_creater=(hhX>http://docs.python.org/library/ttk.html#ttk.Style.theme_createX-tr=X"email.message.Message.set_unixfromr=(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.set_unixfromX-tr=XEasyDialogs.ProgressBar.incr=(hhXKhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBar.incX-tr=X(MimeWriter.MimeWriter.startmultipartbodyr=(hhXWhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriter.startmultipartbodyX-tr=Ximaplib.IMAP4.unsubscriber=(hhXEhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.unsubscribeX-tr=Xdecimal.Decimal.copy_signr=(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.copy_signX-tr=Xchunk.Chunk.skipr=(hhX:http://docs.python.org/library/chunk.html#chunk.Chunk.skipX-tr=Xtarfile.TarInfo.islnkr=(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.islnkX-tr=Xaifc.aifc.setposr=(hhX9http://docs.python.org/library/aifc.html#aifc.aifc.setposX-tr=Xaifc.aifc.getnframesr=(hhX=http://docs.python.org/library/aifc.html#aifc.aifc.getnframesX-tr=Xxdrlib.Unpacker.get_bufferr=(hhXEhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.get_bufferX-tr=X str.islowerr=(hhX8http://docs.python.org/library/stdtypes.html#str.islowerX-tr=Xpoplib.POP3.userr=(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.userX-tr=Xcurses.window.vliner=(hhX>http://docs.python.org/library/curses.html#curses.window.vlineX-tr=Xfl.form.activate_formr=(hhX<http://docs.python.org/library/fl.html#fl.form.activate_formX-tr=X)email.message.Message.get_content_subtyper=(hhX[http://docs.python.org/library/email.message.html#email.message.Message.get_content_subtypeX-tr=Xobject.__ior__r=(hhX>http://docs.python.org/reference/datamodel.html#object.__ior__X-tr=Xthreading.Thread.isDaemonr=(hhXGhttp://docs.python.org/library/threading.html#threading.Thread.isDaemonX-tr=X#difflib.SequenceMatcher.get_opcodesr=(hhXOhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.get_opcodesX-tr=Xdecimal.Decimal.logbr=(hhX@http://docs.python.org/library/decimal.html#decimal.Decimal.logbX-tr=Xlogging.StreamHandler.flushr=(hhXPhttp://docs.python.org/library/logging.handlers.html#logging.StreamHandler.flushX-tr=X float.fromhexr=(hhX:http://docs.python.org/library/stdtypes.html#float.fromhexX-tr=Xftplib.FTP_TLS.prot_pr>(hhX@http://docs.python.org/library/ftplib.html#ftplib.FTP_TLS.prot_pX-tr>Xpickle.Unpickler.noloadr>(hhXBhttp://docs.python.org/library/pickle.html#pickle.Unpickler.noloadX-tr>Xbz2.BZ2File.tellr>(hhX8http://docs.python.org/library/bz2.html#bz2.BZ2File.tellX-tr>X str.splitr>(hhX6http://docs.python.org/library/stdtypes.html#str.splitX-tr>Xcurses.window.timeoutr>(hhX@http://docs.python.org/library/curses.html#curses.window.timeoutX-tr >Xxml.dom.Node.normalizer >(hhXBhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.normalizeX-tr >Xasyncore.dispatcher.handle_readr >(hhXLhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_readX-tr >Xarray.array.popr>(hhX9http://docs.python.org/library/array.html#array.array.popX-tr>Xthreading.Condition.notifyAllr>(hhXKhttp://docs.python.org/library/threading.html#threading.Condition.notifyAllX-tr>Xobject.__iter__r>(hhX?http://docs.python.org/reference/datamodel.html#object.__iter__X-tr>X!distutils.text_file.TextFile.warnr>(hhXNhttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFile.warnX-tr>X$argparse.ArgumentParser.add_argumentr>(hhXQhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.add_argumentX-tr>X-distutils.ccompiler.CCompiler.add_library_dirr>(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.add_library_dirX-tr>Xobject.__rfloordiv__r>(hhXDhttp://docs.python.org/reference/datamodel.html#object.__rfloordiv__X-tr>Xdatetime.time.isoformatr>(hhXDhttp://docs.python.org/library/datetime.html#datetime.time.isoformatX-tr>Xcurses.window.getstrr>(hhX?http://docs.python.org/library/curses.html#curses.window.getstrX-tr>Xdoctest.DocTestRunner.summarizer >(hhXKhttp://docs.python.org/library/doctest.html#doctest.DocTestRunner.summarizeX-tr!>X,xml.dom.Document.createProcessingInstructionr">(hhXXhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createProcessingInstructionX-tr#>X0xml.parsers.expat.xmlparser.CharacterDataHandlerr$>(hhX\http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.CharacterDataHandlerX-tr%>Xmultifile.MultiFile.end_markerr&>(hhXLhttp://docs.python.org/library/multifile.html#multifile.MultiFile.end_markerX-tr'>Xmailbox.mbox.unlockr(>(hhX?http://docs.python.org/library/mailbox.html#mailbox.mbox.unlockX-tr)>X$sgmllib.SGMLParser.convert_entityrefr*>(hhXPhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.convert_entityrefX-tr+>Xsmtplib.SMTP.sendmailr,>(hhXAhttp://docs.python.org/library/smtplib.html#smtplib.SMTP.sendmailX-tr->Xmailbox.Babyl.lockr.>(hhX>http://docs.python.org/library/mailbox.html#mailbox.Babyl.lockX-tr/>X'xml.etree.ElementTree.XMLParser.doctyper0>(hhXahttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.XMLParser.doctypeX-tr1>X)xml.sax.handler.ContentHandler.charactersr2>(hhX]http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.charactersX-tr3>Xfl.form.show_formr4>(hhX8http://docs.python.org/library/fl.html#fl.form.show_formX-tr5>Xthreading.Condition.notifyr6>(hhXHhttp://docs.python.org/library/threading.html#threading.Condition.notifyX-tr7>XTix.tixCommand.tix_addbitmapdirr8>(hhXGhttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_addbitmapdirX-tr9>X str.isdigitr:>(hhX8http://docs.python.org/library/stdtypes.html#str.isdigitX-tr;>X%logging.handlers.DatagramHandler.sendr<>(hhXZhttp://docs.python.org/library/logging.handlers.html#logging.handlers.DatagramHandler.sendX-tr=>X-logging.handlers.BufferingHandler.shouldFlushr>>(hhXbhttp://docs.python.org/library/logging.handlers.html#logging.handlers.BufferingHandler.shouldFlushX-tr?>Xxdrlib.Packer.pack_bytesr@>(hhXChttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_bytesX-trA>X xml.dom.Document.createAttributerB>(hhXLhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createAttributeX-trC>Xre.RegexObject.splitrD>(hhX;http://docs.python.org/library/re.html#re.RegexObject.splitX-trE>Xsubprocess.Popen.waitrF>(hhXDhttp://docs.python.org/library/subprocess.html#subprocess.Popen.waitX-trG>Xsubprocess.Popen.terminaterH>(hhXIhttp://docs.python.org/library/subprocess.html#subprocess.Popen.terminateX-trI>Xzipfile.ZipFile.readrJ>(hhX@http://docs.python.org/library/zipfile.html#zipfile.ZipFile.readX-trK>Xasynchat.fifo.is_emptyrL>(hhXChttp://docs.python.org/library/asynchat.html#asynchat.fifo.is_emptyX-trM>X!code.InteractiveInterpreter.writerN>(hhXJhttp://docs.python.org/library/code.html#code.InteractiveInterpreter.writeX-trO>Xdecimal.Decimal.next_towardrP>(hhXGhttp://docs.python.org/library/decimal.html#decimal.Decimal.next_towardX-trQ>X str.translaterR>(hhX:http://docs.python.org/library/stdtypes.html#str.translateX-trS>Xprofile.Profile.runrT>(hhX?http://docs.python.org/library/profile.html#profile.Profile.runX-trU>X-xml.sax.handler.ContentHandler.startElementNSrV>(hhXahttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.startElementNSX-trW>Xio.BufferedReader.readrX>(hhX=http://docs.python.org/library/io.html#io.BufferedReader.readX-trY>Xmailbox.Mailbox.iteritemsrZ>(hhXEhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.iteritemsX-tr[>X%unittest.TestLoader.loadTestsFromNamer\>(hhXRhttp://docs.python.org/library/unittest.html#unittest.TestLoader.loadTestsFromNameX-tr]>Xlogging.Logger.removeFilterr^>(hhXGhttp://docs.python.org/library/logging.html#logging.Logger.removeFilterX-tr_>X!ossaudiodev.oss_audio_device.syncr`>(hhXQhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.syncX-tra>X"mailbox.MaildirMessage.remove_flagrb>(hhXNhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.remove_flagX-trc>Xunittest.TestResult.startTestrd>(hhXJhttp://docs.python.org/library/unittest.html#unittest.TestResult.startTestX-tre>Xthreading.Thread.setDaemonrf>(hhXHhttp://docs.python.org/library/threading.html#threading.Thread.setDaemonX-trg>X)xml.sax.xmlreader.InputSource.setPublicIdrh>(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.setPublicIdX-tri>Xttk.Treeview.get_childrenrj>(hhXAhttp://docs.python.org/library/ttk.html#ttk.Treeview.get_childrenX-trk>X-xml.sax.handler.DTDHandler.unparsedEntityDeclrl>(hhXahttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.DTDHandler.unparsedEntityDeclX-trm>Xnntplib.NNTP.headrn>(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.headX-tro>Xio.BufferedWriter.flushrp>(hhX>http://docs.python.org/library/io.html#io.BufferedWriter.flushX-trq>X#sgmllib.SGMLParser.handle_entityrefrr>(hhXOhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_entityrefX-trs>XTix.tixCommand.tix_resetoptionsrt>(hhXGhttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_resetoptionsX-tru>Xcsv.csvwriter.writerowrv>(hhX>http://docs.python.org/library/csv.html#csv.csvwriter.writerowX-trw>X$logging.handlers.MemoryHandler.flushrx>(hhXYhttp://docs.python.org/library/logging.handlers.html#logging.handlers.MemoryHandler.flushX-try>Xurllib2.Request.add_headerrz>(hhXFhttp://docs.python.org/library/urllib2.html#urllib2.Request.add_headerX-tr{>Xformatter.formatter.pop_fontr|>(hhXJhttp://docs.python.org/library/formatter.html#formatter.formatter.pop_fontX-tr}>X$compiler.visitor.ASTVisitor.dispatchr~>(hhXQhttp://docs.python.org/library/compiler.html#compiler.visitor.ASTVisitor.dispatchX-tr>X!HTMLParser.HTMLParser.handle_datar>(hhXPhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_dataX-tr>Xtarfile.TarFile.getmembersr>(hhXFhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.getmembersX-tr>X4xml.sax.handler.ContentHandler.processingInstructionr>(hhXhhttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.processingInstructionX-tr>Xthreading.Thread.getNamer>(hhXFhttp://docs.python.org/library/threading.html#threading.Thread.getNameX-tr>Xmailbox.mboxMessage.set_fromr>(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.mboxMessage.set_fromX-tr>Xaifc.aifc.aiffr>(hhX7http://docs.python.org/library/aifc.html#aifc.aifc.aiffX-tr>X!sqlite3.Connection.load_extensionr>(hhXMhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.load_extensionX-tr>Xaifc.aifc.aifcr>(hhX7http://docs.python.org/library/aifc.html#aifc.aifc.aifcX-tr>X4wsgiref.simple_server.WSGIRequestHandler.get_environr>(hhX`http://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIRequestHandler.get_environX-tr>Xdatetime.time.__format__r>(hhXEhttp://docs.python.org/library/datetime.html#datetime.time.__format__X-tr>Xfl.form.add_valsliderr>(hhX<http://docs.python.org/library/fl.html#fl.form.add_valsliderX-tr>XKSimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_introspection_functionsr>(hhXhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_introspection_functionsX-tr>Xmsilib.Dialog.checkboxr>(hhXAhttp://docs.python.org/library/msilib.html#msilib.Dialog.checkboxX-tr>X)xml.sax.xmlreader.InputSource.getEncodingr>(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.getEncodingX-tr>X*logging.handlers.SocketHandler.handleErrorr>(hhX_http://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.handleErrorX-tr>X!gettext.GNUTranslations.lngettextr>(hhXMhttp://docs.python.org/library/gettext.html#gettext.GNUTranslations.lngettextX-tr>X)xml.etree.ElementTree.TreeBuilder.doctyper>(hhXchttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.TreeBuilder.doctypeX-tr>Xsched.scheduler.runr>(hhX=http://docs.python.org/library/sched.html#sched.scheduler.runX-tr>Xselect.epoll.fromfdr>(hhX>http://docs.python.org/library/select.html#select.epoll.fromfdX-tr>Xmsilib.View.Executer>(hhX>http://docs.python.org/library/msilib.html#msilib.View.ExecuteX-tr>Xurllib2.Request.get_typer>(hhXDhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_typeX-tr>Xcurses.panel.Panel.showr>(hhXHhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.showX-tr>Xselect.poll.pollr>(hhX;http://docs.python.org/library/select.html#select.poll.pollX-tr>X/multiprocessing.pool.multiprocessing.Pool.applyr>(hhXchttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.applyX-tr>Xrexec.RExec.s_importr>(hhX>http://docs.python.org/library/rexec.html#rexec.RExec.s_importX-tr>Xctypes._CData.from_addressr>(hhXEhttp://docs.python.org/library/ctypes.html#ctypes._CData.from_addressX-tr>Xsmtplib.SMTP.docmdr>(hhX>http://docs.python.org/library/smtplib.html#smtplib.SMTP.docmdX-tr>Xcurses.window.chgatr>(hhX>http://docs.python.org/library/curses.html#curses.window.chgatX-tr>Xmhlib.MH.makefolderr>(hhX=http://docs.python.org/library/mhlib.html#mhlib.MH.makefolderX-tr>X(unittest.TestResult.addUnexpectedSuccessr>(hhXUhttp://docs.python.org/library/unittest.html#unittest.TestResult.addUnexpectedSuccessX-tr>X datetime.timedelta.total_secondsr>(hhXMhttp://docs.python.org/library/datetime.html#datetime.timedelta.total_secondsX-tr>Xsunau.AU_write.setframerater>(hhXEhttp://docs.python.org/library/sunau.html#sunau.AU_write.setframerateX-tr>Xformatter.formatter.pop_marginr>(hhXLhttp://docs.python.org/library/formatter.html#formatter.formatter.pop_marginX-tr>X#argparse.ArgumentParser.print_usager>(hhXPhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.print_usageX-tr>X(sqlite3.Connection.enable_load_extensionr>(hhXThttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.enable_load_extensionX-tr>X-distutils.ccompiler.CCompiler.set_executablesr>(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.set_executablesX-tr>Xtelnetlib.Telnet.read_allr>(hhXGhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_allX-tr>Ximaplib.IMAP4.appendr>(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.appendX-tr>Xaetools.TalkTo.sendr>(hhX?http://docs.python.org/library/aetools.html#aetools.TalkTo.sendX-tr>Xunittest.TestCase.assertRaisesr>(hhXKhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertRaisesX-tr>Xttk.Notebook.insertr>(hhX;http://docs.python.org/library/ttk.html#ttk.Notebook.insertX-tr>Xasyncore.dispatcher.sendr>(hhXEhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.sendX-tr>Xaifc.aifc.tellr>(hhX7http://docs.python.org/library/aifc.html#aifc.aifc.tellX-tr>X"asyncore.dispatcher.handle_connectr>(hhXOhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_connectX-tr>X1BaseHTTPServer.BaseHTTPRequestHandler.send_headerr>(hhXdhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.send_headerX-tr>X pdb.Pdb.runr>(hhX3http://docs.python.org/library/pdb.html#pdb.Pdb.runX-tr>X)xml.etree.ElementTree.ElementTree.getrootr>(hhXchttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.getrootX-tr>X!optparse.OptionParser.print_usager>(hhXNhttp://docs.python.org/library/optparse.html#optparse.OptionParser.print_usageX-tr>Xdecimal.Context.remainder_nearr>(hhXJhttp://docs.python.org/library/decimal.html#decimal.Context.remainder_nearX-tr>X%xml.etree.ElementTree.TreeBuilder.endr>(hhX_http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.TreeBuilder.endX-tr>Xtelnetlib.Telnet.msgr>(hhXBhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.msgX-tr>X*multiprocessing.managers.SyncManager.Queuer>(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.QueueX-tr>X"formatter.writer.send_literal_datar>(hhXPhttp://docs.python.org/library/formatter.html#formatter.writer.send_literal_dataX-tr>Xcsv.Sniffer.sniffr>(hhX9http://docs.python.org/library/csv.html#csv.Sniffer.sniffX-tr>X5multiprocessing.managers.SyncManager.BoundedSemaphorer>(hhXihttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.BoundedSemaphoreX-tr>Xmailbox.MH.closer>(hhX<http://docs.python.org/library/mailbox.html#mailbox.MH.closeX-tr>Xwave.Wave_read.closer>(hhX=http://docs.python.org/library/wave.html#wave.Wave_read.closeX-tr>Xdecimal.Decimal.lnr>(hhX>http://docs.python.org/library/decimal.html#decimal.Decimal.lnX-tr>Xxdrlib.Unpacker.get_positionr>(hhXGhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.get_positionX-tr>Xxml.dom.Node.replaceChildr>(hhXEhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.replaceChildX-tr>Xcookielib.CookieJar.set_policyr>(hhXLhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.set_policyX-tr>Xobject.__iadd__r>(hhX?http://docs.python.org/reference/datamodel.html#object.__iadd__X-tr>Xcurses.window.notimeoutr>(hhXBhttp://docs.python.org/library/curses.html#curses.window.notimeoutX-tr>X)distutils.ccompiler.CCompiler.add_libraryr>(hhXVhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.add_libraryX-tr>Xunittest.TestSuite.addTestsr?(hhXHhttp://docs.python.org/library/unittest.html#unittest.TestSuite.addTestsX-tr?Xdatetime.datetime.__format__r?(hhXIhttp://docs.python.org/library/datetime.html#datetime.datetime.__format__X-tr?Xdecimal.Decimal.is_canonicalr?(hhXHhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_canonicalX-tr?Xchunk.Chunk.getsizer?(hhX=http://docs.python.org/library/chunk.html#chunk.Chunk.getsizeX-tr?XFrameWork.Window.do_postresizer?(hhXLhttp://docs.python.org/library/framework.html#FrameWork.Window.do_postresizeX-tr ?X%filecmp.dircmp.report_partial_closurer ?(hhXQhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.report_partial_closureX-tr ?X%ConfigParser.RawConfigParser.sectionsr ?(hhXVhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.sectionsX-tr ?Xarray.array.writer?(hhX;http://docs.python.org/library/array.html#array.array.writeX-tr?Xturtle.Shape.addcomponentr?(hhXDhttp://docs.python.org/library/turtle.html#turtle.Shape.addcomponentX-tr?X urllib2.BaseHandler.default_openr?(hhXLhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.default_openX-tr?Xdatetime.datetime.isoweekdayr?(hhXIhttp://docs.python.org/library/datetime.html#datetime.datetime.isoweekdayX-tr?Xemail.parser.FeedParser.closer?(hhXNhttp://docs.python.org/library/email.parser.html#email.parser.FeedParser.closeX-tr?Xcodecs.StreamWriter.writelinesr?(hhXIhttp://docs.python.org/library/codecs.html#codecs.StreamWriter.writelinesX-tr?Xlogging.Logger.setLevelr?(hhXChttp://docs.python.org/library/logging.html#logging.Logger.setLevelX-tr?Xbdb.Breakpoint.enabler?(hhX=http://docs.python.org/library/bdb.html#bdb.Breakpoint.enableX-tr?Xaifc.aifc.setmarkr?(hhX:http://docs.python.org/library/aifc.html#aifc.aifc.setmarkX-tr?Xhotshot.Profile.runctxr ?(hhXBhttp://docs.python.org/library/hotshot.html#hotshot.Profile.runctxX-tr!?X dict.viewkeysr"?(hhX:http://docs.python.org/library/stdtypes.html#dict.viewkeysX-tr#?Xttk.Treeview.selection_remover$?(hhXEhttp://docs.python.org/library/ttk.html#ttk.Treeview.selection_removeX-tr%?Xobject.__rlshift__r&?(hhXBhttp://docs.python.org/reference/datamodel.html#object.__rlshift__X-tr'?X-xml.parsers.expat.xmlparser.EndElementHandlerr(?(hhXYhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.EndElementHandlerX-tr)?X ctypes.LibraryLoader.LoadLibraryr*?(hhXKhttp://docs.python.org/library/ctypes.html#ctypes.LibraryLoader.LoadLibraryX-tr+?X)xml.sax.xmlreader.InputSource.getPublicIdr,?(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.getPublicIdX-tr-?Ximaplib.IMAP4.searchr.?(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.searchX-tr/?Xbdb.Breakpoint.disabler0?(hhX>http://docs.python.org/library/bdb.html#bdb.Breakpoint.disableX-tr1?Xlogging.Handler.setLevelr2?(hhXDhttp://docs.python.org/library/logging.html#logging.Handler.setLevelX-tr3?X%distutils.ccompiler.CCompiler.executer4?(hhXRhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.executeX-tr5?Xdict.itervaluesr6?(hhX<http://docs.python.org/library/stdtypes.html#dict.itervaluesX-tr7?Xzipfile.ZipFile.extractr8?(hhXChttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.extractX-tr9?Xio.TextIOBase.detachr:?(hhX;http://docs.python.org/library/io.html#io.TextIOBase.detachX-tr;?X)xml.etree.ElementTree.ElementTree.findallr?(hhXLhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.get_codeX-tr??Xxdrlib.Packer.pack_doubler@?(hhXDhttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_doubleX-trA?Xparser.ST.compilerB?(hhX<http://docs.python.org/library/parser.html#parser.ST.compileX-trC?Xmimetools.Message.getsubtyperD?(hhXJhttp://docs.python.org/library/mimetools.html#mimetools.Message.getsubtypeX-trE?X3xml.parsers.expat.xmlparser.StartDoctypeDeclHandlerrF?(hhX_http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.StartDoctypeDeclHandlerX-trG?Xdatetime.datetime.utctimetuplerH?(hhXKhttp://docs.python.org/library/datetime.html#datetime.datetime.utctimetupleX-trI?X!sgmllib.SGMLParser.unknown_endtagrJ?(hhXMhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.unknown_endtagX-trK?X)xml.parsers.expat.xmlparser.UseForeignDTDrL?(hhXUhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.UseForeignDTDX-trM?Xaifc.aifc.getframeraterN?(hhX?http://docs.python.org/library/aifc.html#aifc.aifc.getframerateX-trO?X*multiprocessing.connection.Listener.acceptrP?(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.connection.Listener.acceptX-trQ?X&SocketServer.BaseServer.handle_timeoutrR?(hhXWhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.handle_timeoutX-trS?Xmailbox.MaildirMessage.set_inforT?(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.set_infoX-trU?X"email.message.Message.is_multipartrV?(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.is_multipartX-trW?Ximaplib.IMAP4.readlinerX?(hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.readlineX-trY?X"SocketServer.RequestHandler.handlerZ?(hhXShttp://docs.python.org/library/socketserver.html#SocketServer.RequestHandler.handleX-tr[?Xpipes.Template.resetr\?(hhX>http://docs.python.org/library/pipes.html#pipes.Template.resetX-tr]?X logging.Logger.getEffectiveLevelr^?(hhXLhttp://docs.python.org/library/logging.html#logging.Logger.getEffectiveLevelX-tr_?Xdecimal.Context.radixr`?(hhXAhttp://docs.python.org/library/decimal.html#decimal.Context.radixX-tra?Xunittest.TestCase.tearDownrb?(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestCase.tearDownX-trc?Xxdrlib.Packer.pack_arrayrd?(hhXChttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_arrayX-tre?X4BaseHTTPServer.BaseHTTPRequestHandler.version_stringrf?(hhXghttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.version_stringX-trg?X%cookielib.Cookie.get_nonstandard_attrrh?(hhXShttp://docs.python.org/library/cookielib.html#cookielib.Cookie.get_nonstandard_attrX-tri?Xdatetime.datetime.timetuplerj?(hhXHhttp://docs.python.org/library/datetime.html#datetime.datetime.timetupleX-trk?Xwave.Wave_write.closerl?(hhX>http://docs.python.org/library/wave.html#wave.Wave_write.closeX-trm?X!multiprocessing.Queue.join_threadrn?(hhXUhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.join_threadX-tro?X'SocketServer.BaseServer.server_activaterp?(hhXXhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.server_activateX-trq?Xmimetools.Message.getmaintyperr?(hhXKhttp://docs.python.org/library/mimetools.html#mimetools.Message.getmaintypeX-trs?Xmailbox.Maildir.closert?(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.closeX-tru?X mmap.readrv?(hhX2http://docs.python.org/library/mmap.html#mmap.readX-trw?X!decimal.Context.to_integral_exactrx?(hhXMhttp://docs.python.org/library/decimal.html#decimal.Context.to_integral_exactX-try?Xttk.Treeview.focusrz?(hhX:http://docs.python.org/library/ttk.html#ttk.Treeview.focusX-tr{?Xaifc.aifc.getnchannelsr|?(hhX?http://docs.python.org/library/aifc.html#aifc.aifc.getnchannelsX-tr}?Xzipfile.ZipFile.testzipr~?(hhXChttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.testzipX-tr?Xobject.__repr__r?(hhX?http://docs.python.org/reference/datamodel.html#object.__repr__X-tr?Xssl.SSLSocket.cipherr?(hhX<http://docs.python.org/library/ssl.html#ssl.SSLSocket.cipherX-tr?Xbdb.Bdb.user_returnr?(hhX;http://docs.python.org/library/bdb.html#bdb.Bdb.user_returnX-tr?X%MiniAEFrame.AEServer.installaehandlerr?(hhXUhttp://docs.python.org/library/miniaeframe.html#MiniAEFrame.AEServer.installaehandlerX-tr?X file.isattyr?(hhX8http://docs.python.org/library/stdtypes.html#file.isattyX-tr?Xxdrlib.Unpacker.unpack_farrayr?(hhXHhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_farrayX-tr?Xdecimal.Decimal.min_magr?(hhXChttp://docs.python.org/library/decimal.html#decimal.Decimal.min_magX-tr?Xset.symmetric_difference_updater?(hhXLhttp://docs.python.org/library/stdtypes.html#set.symmetric_difference_updateX-tr?Xdecimal.Decimal.is_subnormalr?(hhXHhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_subnormalX-tr?Xftplib.FTP_TLS.authr?(hhX>http://docs.python.org/library/ftplib.html#ftplib.FTP_TLS.authX-tr?Xxml.sax.SAXException.getMessager?(hhXKhttp://docs.python.org/library/xml.sax.html#xml.sax.SAXException.getMessageX-tr?Xftplib.FTP.retrbinaryr?(hhX@http://docs.python.org/library/ftplib.html#ftplib.FTP.retrbinaryX-tr?Xwave.Wave_read.getframerater?(hhXDhttp://docs.python.org/library/wave.html#wave.Wave_read.getframerateX-tr?Xdatetime.date.strftimer?(hhXChttp://docs.python.org/library/datetime.html#datetime.date.strftimeX-tr?X$xml.dom.DOMImplementation.hasFeaturer?(hhXPhttp://docs.python.org/library/xml.dom.html#xml.dom.DOMImplementation.hasFeatureX-tr?Ximaplib.IMAP4.selectr?(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.selectX-tr?X"unittest.TestCase.assertTupleEqualr?(hhXOhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertTupleEqualX-tr?Xhotshot.Profile.closer?(hhXAhttp://docs.python.org/library/hotshot.html#hotshot.Profile.closeX-tr?Xobject.__hex__r?(hhX>http://docs.python.org/reference/datamodel.html#object.__hex__X-tr?Xmailbox.oldmailbox.nextr?(hhXChttp://docs.python.org/library/mailbox.html#mailbox.oldmailbox.nextX-tr?X)xml.sax.xmlreader.InputSource.setSystemIdr?(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.setSystemIdX-tr?Xhtmllib.HTMLParser.handle_imager?(hhXKhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.handle_imageX-tr?X'xml.etree.ElementTree.TreeBuilder.startr?(hhXahttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.TreeBuilder.startX-tr?Xcurses.window.overlayr?(hhX@http://docs.python.org/library/curses.html#curses.window.overlayX-tr?Xsqlite3.Connection.executemanyr?(hhXJhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.executemanyX-tr?Xobject.__init__r?(hhX?http://docs.python.org/reference/datamodel.html#object.__init__X-tr?Xcollections.deque.appendr?(hhXHhttp://docs.python.org/library/collections.html#collections.deque.appendX-tr?Xxml.dom.Node.cloneNoder?(hhXBhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.cloneNodeX-tr?Xunittest.TestCase.assertIsNotr?(hhXJhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertIsNotX-tr?Xrexec.RExec.s_evalr?(hhX<http://docs.python.org/library/rexec.html#rexec.RExec.s_evalX-tr?XHTMLParser.HTMLParser.getposr?(hhXKhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.getposX-tr?Xcalendar.TextCalendar.pryearr?(hhXIhttp://docs.python.org/library/calendar.html#calendar.TextCalendar.pryearX-tr?Xsunau.AU_read.getparamsr?(hhXAhttp://docs.python.org/library/sunau.html#sunau.AU_read.getparamsX-tr?Xasynchat.fifo.firstr?(hhX@http://docs.python.org/library/asynchat.html#asynchat.fifo.firstX-tr?X%multiprocessing.pool.AsyncResult.waitr?(hhXYhttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.AsyncResult.waitX-tr?Xhotshot.Profile.filenor?(hhXBhttp://docs.python.org/library/hotshot.html#hotshot.Profile.filenoX-tr?Xnntplib.NNTP.helpr?(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.helpX-tr?X(ConfigParser.RawConfigParser.has_sectionr?(hhXYhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.has_sectionX-tr?u(X#urllib2.Request.get_origin_req_hostr?(hhXOhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_origin_req_hostX-tr?Xdecimal.Context.next_plusr?(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.next_plusX-tr?X6BaseHTTPServer.BaseHTTPRequestHandler.date_time_stringr?(hhXihttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.date_time_stringX-tr?X&FrameWork.ControlsWindow.do_controlhitr?(hhXThttp://docs.python.org/library/framework.html#FrameWork.ControlsWindow.do_controlhitX-tr?Xasyncore.dispatcher.listenr?(hhXGhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.listenX-tr?Xthreading.Event.waitr?(hhXBhttp://docs.python.org/library/threading.html#threading.Event.waitX-tr?Xio.IOBase.readlinesr?(hhX:http://docs.python.org/library/io.html#io.IOBase.readlinesX-tr?Xbdb.Bdb.dispatch_exceptionr?(hhXBhttp://docs.python.org/library/bdb.html#bdb.Bdb.dispatch_exceptionX-tr?Xdatetime.datetime.dstr?(hhXBhttp://docs.python.org/library/datetime.html#datetime.datetime.dstX-tr?X$xml.etree.ElementTree.XMLParser.feedr?(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.XMLParser.feedX-tr?XQueue.Queue.putr?(hhX9http://docs.python.org/library/queue.html#Queue.Queue.putX-tr?Xmhlib.MH.listsubfoldersr?(hhXAhttp://docs.python.org/library/mhlib.html#mhlib.MH.listsubfoldersX-tr?X+xml.sax.xmlreader.XMLReader.setErrorHandlerr?(hhX^http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setErrorHandlerX-tr?X-xml.sax.xmlreader.XMLReader.getContentHandlerr?(hhX`http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.getContentHandlerX-tr?X&email.message.Message.get_default_typer?(hhXXhttp://docs.python.org/library/email.message.html#email.message.Message.get_default_typeX-tr?Xthreading.Thread.startr?(hhXDhttp://docs.python.org/library/threading.html#threading.Thread.startX-tr?Xgenerator.sendr?(hhX@http://docs.python.org/reference/expressions.html#generator.sendX-tr?Xdecimal.Decimal.compare_totalr?(hhXIhttp://docs.python.org/library/decimal.html#decimal.Decimal.compare_totalX-tr?Xmailbox.Mailbox.__iter__r?(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.__iter__X-tr?Xdict.iteritemsr?(hhX;http://docs.python.org/library/stdtypes.html#dict.iteritemsX-tr?X%unittest.TestCase.assertSequenceEqualr?(hhXRhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertSequenceEqualX-tr?Xformatter.writer.new_stylesr?(hhXIhttp://docs.python.org/library/formatter.html#formatter.writer.new_stylesX-tr?Xpstats.Stats.strip_dirsr?(hhXChttp://docs.python.org/library/profile.html#pstats.Stats.strip_dirsX-tr?X!httplib.HTTPConnection.endheadersr?(hhXMhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.endheadersX-tr?Ximaplib.IMAP4.getquotarootr?(hhXFhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.getquotarootX-tr?Xrexec.RExec.s_execfiler?(hhX@http://docs.python.org/library/rexec.html#rexec.RExec.s_execfileX-tr?Ximaplib.IMAP4.login_cram_md5r@(hhXHhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.login_cram_md5X-tr@Xmailbox.MHMessage.add_sequencer@(hhXJhttp://docs.python.org/library/mailbox.html#mailbox.MHMessage.add_sequenceX-tr@Xthreading.Semaphore.acquirer@(hhXIhttp://docs.python.org/library/threading.html#threading.Semaphore.acquireX-tr@Xsunau.AU_read.readframesr@(hhXBhttp://docs.python.org/library/sunau.html#sunau.AU_read.readframesX-tr@Xdecimal.Context.copy_absr@(hhXDhttp://docs.python.org/library/decimal.html#decimal.Context.copy_absX-tr @Xsgmllib.SGMLParser.setliteralr @(hhXIhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.setliteralX-tr @X1xml.parsers.expat.xmlparser.SetParamEntityParsingr @(hhX]http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.SetParamEntityParsingX-tr @Xdict.popr@(hhX5http://docs.python.org/library/stdtypes.html#dict.popX-tr@Xbdb.Bdb.set_stepr@(hhX8http://docs.python.org/library/bdb.html#bdb.Bdb.set_stepX-tr@X str.endswithr@(hhX9http://docs.python.org/library/stdtypes.html#str.endswithX-tr@Xio.IOBase.truncater@(hhX9http://docs.python.org/library/io.html#io.IOBase.truncateX-tr@Xsqlite3.Connection.interruptr@(hhXHhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.interruptX-tr@X#urllib2.CacheFTPHandler.setMaxConnsr@(hhXOhttp://docs.python.org/library/urllib2.html#urllib2.CacheFTPHandler.setMaxConnsX-tr@X str.istitler@(hhX8http://docs.python.org/library/stdtypes.html#str.istitleX-tr@Xdecimal.Context.minusr@(hhXAhttp://docs.python.org/library/decimal.html#decimal.Context.minusX-tr@Xftplib.FTP.pwdr@(hhX9http://docs.python.org/library/ftplib.html#ftplib.FTP.pwdX-tr@Xmailbox.MH.lockr @(hhX;http://docs.python.org/library/mailbox.html#mailbox.MH.lockX-tr!@Xxdrlib.Packer.get_bufferr"@(hhXChttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.get_bufferX-tr#@Xcurses.window.subwinr$@(hhX?http://docs.python.org/library/curses.html#curses.window.subwinX-tr%@Xcurses.window.eraser&@(hhX>http://docs.python.org/library/curses.html#curses.window.eraseX-tr'@X%gettext.NullTranslations.add_fallbackr(@(hhXQhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.add_fallbackX-tr)@Xstr.splitlinesr*@(hhX;http://docs.python.org/library/stdtypes.html#str.splitlinesX-tr+@Xdatetime.time.strftimer,@(hhXChttp://docs.python.org/library/datetime.html#datetime.time.strftimeX-tr-@X&xml.etree.ElementTree.TreeBuilder.datar.@(hhX`http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.TreeBuilder.dataX-tr/@X%msilib.SummaryInformation.GetPropertyr0@(hhXPhttp://docs.python.org/library/msilib.html#msilib.SummaryInformation.GetPropertyX-tr1@XFrameWork.Window.openr2@(hhXChttp://docs.python.org/library/framework.html#FrameWork.Window.openX-tr3@X str.countr4@(hhX6http://docs.python.org/library/stdtypes.html#str.countX-tr5@X str.zfillr6@(hhX6http://docs.python.org/library/stdtypes.html#str.zfillX-tr7@Xunittest.TestSuite.addTestr8@(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestSuite.addTestX-tr9@Xdatetime.time.__str__r:@(hhXBhttp://docs.python.org/library/datetime.html#datetime.time.__str__X-tr;@Xdecimal.Context.is_subnormalr<@(hhXHhttp://docs.python.org/library/decimal.html#decimal.Context.is_subnormalX-tr=@XConfigParser.ConfigParser.getr>@(hhXNhttp://docs.python.org/library/configparser.html#ConfigParser.ConfigParser.getX-tr?@Xunittest.TestCase.debugr@@(hhXDhttp://docs.python.org/library/unittest.html#unittest.TestCase.debugX-trA@Xrfc822.AddressList.__iadd__rB@(hhXFhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.__iadd__X-trC@Xdecimal.Context.logical_invertrD@(hhXJhttp://docs.python.org/library/decimal.html#decimal.Context.logical_invertX-trE@Xsocket.socket.gettimeoutrF@(hhXChttp://docs.python.org/library/socket.html#socket.socket.gettimeoutX-trG@Xttk.Treeview.identify_elementrH@(hhXEhttp://docs.python.org/library/ttk.html#ttk.Treeview.identify_elementX-trI@Xfl.form.add_roundbuttonrJ@(hhX>http://docs.python.org/library/fl.html#fl.form.add_roundbuttonX-trK@X file.seekrL@(hhX6http://docs.python.org/library/stdtypes.html#file.seekX-trM@Xasyncore.dispatcher.bindrN@(hhXEhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.bindX-trO@Xchunk.Chunk.getnamerP@(hhX=http://docs.python.org/library/chunk.html#chunk.Chunk.getnameX-trQ@X%cookielib.Cookie.set_nonstandard_attrrR@(hhXShttp://docs.python.org/library/cookielib.html#cookielib.Cookie.set_nonstandard_attrX-trS@X1BaseHTTPServer.BaseHTTPRequestHandler.end_headersrT@(hhXdhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.end_headersX-trU@Xsgmllib.SGMLParser.feedrV@(hhXChttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.feedX-trW@Xunittest.TestResult.stopTestrX@(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestResult.stopTestX-trY@Xcompiler.ast.Node.getChildNodesrZ@(hhXLhttp://docs.python.org/library/compiler.html#compiler.ast.Node.getChildNodesX-tr[@Xdecimal.Context.logbr\@(hhX@http://docs.python.org/library/decimal.html#decimal.Context.logbX-tr]@Xsunau.AU_read.getnchannelsr^@(hhXDhttp://docs.python.org/library/sunau.html#sunau.AU_read.getnchannelsX-tr_@Xlogging.Handler.emitr`@(hhX@http://docs.python.org/library/logging.html#logging.Handler.emitX-tra@Xpipes.Template.clonerb@(hhX>http://docs.python.org/library/pipes.html#pipes.Template.cloneX-trc@Xstring.Formatter.formatrd@(hhXBhttp://docs.python.org/library/string.html#string.Formatter.formatX-tre@Xwave.Wave_read.getcompnamerf@(hhXChttp://docs.python.org/library/wave.html#wave.Wave_read.getcompnameX-trg@X%xml.etree.ElementTree.Element.findallrh@(hhX_http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.findallX-tri@X,cookielib.DefaultCookiePolicy.is_not_allowedrj@(hhXZhttp://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.is_not_allowedX-trk@X,xml.dom.DOMImplementation.createDocumentTyperl@(hhXXhttp://docs.python.org/library/xml.dom.html#xml.dom.DOMImplementation.createDocumentTypeX-trm@X(HTMLParser.HTMLParser.handle_startendtagrn@(hhXWhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_startendtagX-tro@X"logging.logging.Formatter.__init__rp@(hhXLhttp://docs.python.org/howto/logging.html#logging.logging.Formatter.__init__X-trq@Xmsilib.Record.ClearDatarr@(hhXBhttp://docs.python.org/library/msilib.html#msilib.Record.ClearDataX-trs@Xdecimal.Decimal.maxrt@(hhX?http://docs.python.org/library/decimal.html#decimal.Decimal.maxX-tru@Xdecimal.Context.to_eng_stringrv@(hhXIhttp://docs.python.org/library/decimal.html#decimal.Context.to_eng_stringX-trw@Xttk.Treeview.set_childrenrx@(hhXAhttp://docs.python.org/library/ttk.html#ttk.Treeview.set_childrenX-try@Xftplib.FTP.sizerz@(hhX:http://docs.python.org/library/ftplib.html#ftplib.FTP.sizeX-tr{@Xre.RegexObject.matchr|@(hhX;http://docs.python.org/library/re.html#re.RegexObject.matchX-tr}@Xttk.Treeview.identifyr~@(hhX=http://docs.python.org/library/ttk.html#ttk.Treeview.identifyX-tr@Xmailbox.Maildir.cleanr@(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.cleanX-tr@X-logging.handlers.SysLogHandler.encodePriorityr@(hhXbhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SysLogHandler.encodePriorityX-tr@Xbz2.BZ2File.seekr@(hhX8http://docs.python.org/library/bz2.html#bz2.BZ2File.seekX-tr@X0SimpleHTTPServer.SimpleHTTPRequestHandler.do_GETr@(hhXehttp://docs.python.org/library/simplehttpserver.html#SimpleHTTPServer.SimpleHTTPRequestHandler.do_GETX-tr@X%ossaudiodev.oss_audio_device.writeallr@(hhXUhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.writeallX-tr@X"zipimport.zipimporter.get_filenamer@(hhXPhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.get_filenameX-tr@Xwave.Wave_write.setcomptyper@(hhXDhttp://docs.python.org/library/wave.html#wave.Wave_write.setcomptypeX-tr@Xlogging.Logger.filterr@(hhXAhttp://docs.python.org/library/logging.html#logging.Logger.filterX-tr@Xsunau.AU_read.getframerater@(hhXDhttp://docs.python.org/library/sunau.html#sunau.AU_read.getframerateX-tr@Xstr.findr@(hhX5http://docs.python.org/library/stdtypes.html#str.findX-tr@X+test.test_support.EnvironmentVarGuard.unsetr@(hhXThttp://docs.python.org/library/test.html#test.test_support.EnvironmentVarGuard.unsetX-tr@Xcookielib.CookieJar.clearr@(hhXGhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.clearX-tr@Xshlex.shlex.error_leaderr@(hhXBhttp://docs.python.org/library/shlex.html#shlex.shlex.error_leaderX-tr@XFrameWork.DialogWindow.openr@(hhXIhttp://docs.python.org/library/framework.html#FrameWork.DialogWindow.openX-tr@Xbdb.Bdb.clear_all_breaksr@(hhX@http://docs.python.org/library/bdb.html#bdb.Bdb.clear_all_breaksX-tr@Xwebbrowser.controller.openr@(hhXIhttp://docs.python.org/library/webbrowser.html#webbrowser.controller.openX-tr@Xio.IOBase.readabler@(hhX9http://docs.python.org/library/io.html#io.IOBase.readableX-tr@X"gettext.NullTranslations.ungettextr@(hhXNhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.ungettextX-tr@X!decimal.Decimal.to_integral_exactr@(hhXMhttp://docs.python.org/library/decimal.html#decimal.Decimal.to_integral_exactX-tr@Xttk.Treeview.indexr@(hhX:http://docs.python.org/library/ttk.html#ttk.Treeview.indexX-tr@Xset.intersection_updater@(hhXDhttp://docs.python.org/library/stdtypes.html#set.intersection_updateX-tr@Xttk.Notebook.tabsr@(hhX9http://docs.python.org/library/ttk.html#ttk.Notebook.tabsX-tr@Xsunau.AU_write.closer@(hhX>http://docs.python.org/library/sunau.html#sunau.AU_write.closeX-tr@Xttk.Style.element_creater@(hhX@http://docs.python.org/library/ttk.html#ttk.Style.element_createX-tr@Xhttplib.HTTPConnection.sendr@(hhXGhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.sendX-tr@Xurllib2.HTTPSHandler.https_openr@(hhXKhttp://docs.python.org/library/urllib2.html#urllib2.HTTPSHandler.https_openX-tr@Xset.differencer@(hhX;http://docs.python.org/library/stdtypes.html#set.differenceX-tr@X#trace.CoverageResults.write_resultsr@(hhXMhttp://docs.python.org/library/trace.html#trace.CoverageResults.write_resultsX-tr@Xdecimal.Decimal.from_floatr@(hhXFhttp://docs.python.org/library/decimal.html#decimal.Decimal.from_floatX-tr@Xformatter.formatter.push_styler@(hhXLhttp://docs.python.org/library/formatter.html#formatter.formatter.push_styleX-tr@Xxdrlib.Unpacker.unpack_arrayr@(hhXGhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_arrayX-tr@Xmhlib.MH.getcontextr@(hhX=http://docs.python.org/library/mhlib.html#mhlib.MH.getcontextX-tr@X cookielib.CookiePolicy.return_okr@(hhXNhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.return_okX-tr@X)logging.handlers.SocketHandler.makePickler@(hhX^http://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.makePickleX-tr@Xttk.Notebook.addr@(hhX8http://docs.python.org/library/ttk.html#ttk.Notebook.addX-tr@X gettext.GNUTranslations.ugettextr@(hhXLhttp://docs.python.org/library/gettext.html#gettext.GNUTranslations.ugettextX-tr@X.xml.parsers.expat.xmlparser.AttlistDeclHandlerr@(hhXZhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.AttlistDeclHandlerX-tr@X*xml.etree.ElementTree.ElementTree.iterfindr@(hhXdhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.iterfindX-tr@Xbdb.Bdb.set_untilr@(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.set_untilX-tr@X dict.fromkeysr@(hhX:http://docs.python.org/library/stdtypes.html#dict.fromkeysX-tr@Xdecimal.Context.next_minusr@(hhXFhttp://docs.python.org/library/decimal.html#decimal.Context.next_minusX-tr@Xurllib2.Request.get_hostr@(hhXDhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_hostX-tr@Xdecimal.Decimal.fmar@(hhX?http://docs.python.org/library/decimal.html#decimal.Decimal.fmaX-tr@Xprofile.Profile.disabler@(hhXChttp://docs.python.org/library/profile.html#profile.Profile.disableX-tr@X&unittest.TestCase.assertMultiLineEqualr@(hhXShttp://docs.python.org/library/unittest.html#unittest.TestCase.assertMultiLineEqualX-tr@X$unittest.TestCase.assertGreaterEqualr@(hhXQhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertGreaterEqualX-tr@Xdecimal.Context.minr@(hhX?http://docs.python.org/library/decimal.html#decimal.Context.minX-tr@Xcsv.csvreader.nextr@(hhX:http://docs.python.org/library/csv.html#csv.csvreader.nextX-tr@Xsqlite3.Connection.cursorr@(hhXEhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.cursorX-tr@Xsymtable.Symbol.get_namespacer@(hhXJhttp://docs.python.org/library/symtable.html#symtable.Symbol.get_namespaceX-tr@X)distutils.fancy_getopt.FancyGetopt.getoptr@(hhXVhttp://docs.python.org/distutils/apiref.html#distutils.fancy_getopt.FancyGetopt.getoptX-tr@Xdecimal.Context.scalebr@(hhXBhttp://docs.python.org/library/decimal.html#decimal.Context.scalebX-tr@X'xml.etree.ElementTree.ElementTree.parser@(hhXahttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.parseX-tr@Xcollections.deque.popleftr@(hhXIhttp://docs.python.org/library/collections.html#collections.deque.popleftX-tr@Xfl.form.add_browserr@(hhX:http://docs.python.org/library/fl.html#fl.form.add_browserX-tr@X!weakref.WeakKeyDictionary.keyrefsr@(hhXMhttp://docs.python.org/library/weakref.html#weakref.WeakKeyDictionary.keyrefsX-tr@Xre.MatchObject.startr@(hhX;http://docs.python.org/library/re.html#re.MatchObject.startX-tr@X&FrameWork.ScrolledWindow.do_controlhitr@(hhXThttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.do_controlhitX-tr@Xemail.message.Message.get_paramr@(hhXQhttp://docs.python.org/library/email.message.html#email.message.Message.get_paramX-tr@Xdatetime.datetime.replacer@(hhXFhttp://docs.python.org/library/datetime.html#datetime.datetime.replaceX-tr@X!mailbox.MaildirMessage.get_subdirr@(hhXMhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.get_subdirX-tr@Xemail.parser.FeedParser.feedr@(hhXMhttp://docs.python.org/library/email.parser.html#email.parser.FeedParser.feedX-tr@Xbdb.Bdb.do_clearr@(hhX8http://docs.python.org/library/bdb.html#bdb.Bdb.do_clearX-tr@XQueue.Queue.getr@(hhX9http://docs.python.org/library/queue.html#Queue.Queue.getX-tr@Xlogging.Logger.isEnabledForrA(hhXGhttp://docs.python.org/library/logging.html#logging.Logger.isEnabledForX-trAX<SimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_functionrA(hhXshttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_functionX-trAXurllib2.Request.get_methodrA(hhXFhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_methodX-trAXmailbox.Maildir.__setitem__rA(hhXGhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.__setitem__X-trAXobject.__radd__rA(hhX?http://docs.python.org/reference/datamodel.html#object.__radd__X-tr AX"sgmllib.SGMLParser.convert_charrefr A(hhXNhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.convert_charrefX-tr AX1distutils.ccompiler.CCompiler.executable_filenamer A(hhX^http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.executable_filenameX-tr AXstr.rpartitionrA(hhX;http://docs.python.org/library/stdtypes.html#str.rpartitionX-trAXmhlib.MH.listallsubfoldersrA(hhXDhttp://docs.python.org/library/mhlib.html#mhlib.MH.listallsubfoldersX-trAX8distutils.ccompiler.CCompiler.runtime_library_dir_optionrA(hhXehttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.runtime_library_dir_optionX-trAXtextwrap.TextWrapper.wraprA(hhXFhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.wrapX-trAXCookie.Morsel.OutputStringrA(hhXEhttp://docs.python.org/library/cookie.html#Cookie.Morsel.OutputStringX-trAXcurses.window.echocharrA(hhXAhttp://docs.python.org/library/curses.html#curses.window.echocharX-trAX dict.has_keyrA(hhX9http://docs.python.org/library/stdtypes.html#dict.has_keyX-trAXio.BufferedReader.read1rA(hhX>http://docs.python.org/library/io.html#io.BufferedReader.read1X-trAXbdb.Breakpoint.pprintrA(hhX=http://docs.python.org/library/bdb.html#bdb.Breakpoint.pprintX-trAXformatter.formatter.push_fontr A(hhXKhttp://docs.python.org/library/formatter.html#formatter.formatter.push_fontX-tr!AXthreading.Condition.releaser"A(hhXIhttp://docs.python.org/library/threading.html#threading.Condition.releaseX-tr#AX,distutils.ccompiler.CCompiler.library_optionr$A(hhXYhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.library_optionX-tr%AX&optparse.OptionParser.get_option_groupr&A(hhXShttp://docs.python.org/library/optparse.html#optparse.OptionParser.get_option_groupX-tr'AX!httplib.HTTPConnection.set_tunnelr(A(hhXMhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.set_tunnelX-tr)AXic.IC.settypecreatorr*A(hhX;http://docs.python.org/library/ic.html#ic.IC.settypecreatorX-tr+AXmailbox.MH.__delitem__r,A(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.MH.__delitem__X-tr-AXmailbox.Mailbox.lockr.A(hhX@http://docs.python.org/library/mailbox.html#mailbox.Mailbox.lockX-tr/AX%ossaudiodev.oss_audio_device.obuffreer0A(hhXUhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.obuffreeX-tr1AXcurses.window.inchr2A(hhX=http://docs.python.org/library/curses.html#curses.window.inchX-tr3AXdecimal.Context.logical_orr4A(hhXFhttp://docs.python.org/library/decimal.html#decimal.Context.logical_orX-tr5AX*msilib.SummaryInformation.GetPropertyCountr6A(hhXUhttp://docs.python.org/library/msilib.html#msilib.SummaryInformation.GetPropertyCountX-tr7AX&logging.handlers.BufferingHandler.emitr8A(hhX[http://docs.python.org/library/logging.handlers.html#logging.handlers.BufferingHandler.emitX-tr9AXcurses.window.insdellnr:A(hhXAhttp://docs.python.org/library/curses.html#curses.window.insdellnX-tr;AXbdb.Bdb.stop_hererA(hhXShttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.add_subparsersX-tr?AXsocket.socket.ioctlr@A(hhX>http://docs.python.org/library/socket.html#socket.socket.ioctlX-trAAX8DocXMLRPCServer.DocXMLRPCServer.set_server_documentationrBA(hhXlhttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocXMLRPCServer.set_server_documentationX-trCAX!unittest.TestResult.wasSuccessfulrDA(hhXNhttp://docs.python.org/library/unittest.html#unittest.TestResult.wasSuccessfulX-trEAXFrameWork.Application.mainlooprFA(hhXLhttp://docs.python.org/library/framework.html#FrameWork.Application.mainloopX-trGAXmsilib.Dialog.pushbuttonrHA(hhXChttp://docs.python.org/library/msilib.html#msilib.Dialog.pushbuttonX-trIAXcollections.deque.extendleftrJA(hhXLhttp://docs.python.org/library/collections.html#collections.deque.extendleftX-trKAXdecimal.Context.is_canonicalrLA(hhXHhttp://docs.python.org/library/decimal.html#decimal.Context.is_canonicalX-trMAXrexec.RExec.r_execrNA(hhX<http://docs.python.org/library/rexec.html#rexec.RExec.r_execX-trOAXformatter.formatter.set_spacingrPA(hhXMhttp://docs.python.org/library/formatter.html#formatter.formatter.set_spacingX-trQAX'xml.sax.xmlreader.XMLReader.setPropertyrRA(hhXZhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setPropertyX-trSAX,urllib2.HTTPRedirectHandler.redirect_requestrTA(hhXXhttp://docs.python.org/library/urllib2.html#urllib2.HTTPRedirectHandler.redirect_requestX-trUAX!email.message.Message.get_charsetrVA(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.get_charsetX-trWAXdbhash.dbhash.nextrXA(hhX=http://docs.python.org/library/dbhash.html#dbhash.dbhash.nextX-trYAXbdb.Bdb.get_file_breaksrZA(hhX?http://docs.python.org/library/bdb.html#bdb.Bdb.get_file_breaksX-tr[AX ttk.Style.mapr\A(hhX5http://docs.python.org/library/ttk.html#ttk.Style.mapX-tr]AX)distutils.ccompiler.CCompiler.debug_printr^A(hhXVhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.debug_printX-tr_AXprofile.Profile.print_statsr`A(hhXGhttp://docs.python.org/library/profile.html#profile.Profile.print_statsX-traAX object.__or__rbA(hhX=http://docs.python.org/reference/datamodel.html#object.__or__X-trcAX!decimal.Decimal.to_integral_valuerdA(hhXMhttp://docs.python.org/library/decimal.html#decimal.Decimal.to_integral_valueX-treAX"HTMLParser.HTMLParser.unknown_declrfA(hhXQhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.unknown_declX-trgAXdatetime.datetime.weekdayrhA(hhXFhttp://docs.python.org/library/datetime.html#datetime.datetime.weekdayX-triAXbdb.Bdb.get_breakrjA(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.get_breakX-trkAX&email.message.Message.get_content_typerlA(hhXXhttp://docs.python.org/library/email.message.html#email.message.Message.get_content_typeX-trmAX-distutils.ccompiler.CCompiler.detect_languagernA(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.detect_languageX-troAX"email.message.Message.__contains__rpA(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.__contains__X-trqAXobject.__set__rrA(hhX>http://docs.python.org/reference/datamodel.html#object.__set__X-trsAXdatetime.time.utcoffsetrtA(hhXDhttp://docs.python.org/library/datetime.html#datetime.time.utcoffsetX-truAX*multiprocessing.managers.SyncManager.ValuervA(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.ValueX-trwAX#logging.handlers.SocketHandler.sendrxA(hhXXhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.sendX-tryAXmailbox.Mailbox.valuesrzA(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.valuesX-tr{AXdatetime.date.isocalendarr|A(hhXFhttp://docs.python.org/library/datetime.html#datetime.date.isocalendarX-tr}AXsunau.AU_read.getmarkersr~A(hhXBhttp://docs.python.org/library/sunau.html#sunau.AU_read.getmarkersX-trAX#unittest.TestCase.assertAlmostEqualrA(hhXPhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertAlmostEqualX-trAXxdrlib.Unpacker.donerA(hhX?http://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.doneX-trAXzipfile.ZipFile.writestrrA(hhXDhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.writestrX-trAX ossaudiodev.oss_mixer_device.getrA(hhXPhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.getX-trAXasyncore.dispatcher.closerA(hhXFhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.closeX-trAXunittest.TestResult.stopTestRunrA(hhXLhttp://docs.python.org/library/unittest.html#unittest.TestResult.stopTestRunX-trAXdatetime.date.ctimerA(hhX@http://docs.python.org/library/datetime.html#datetime.date.ctimeX-trAX mailbox.MaildirMessage.set_flagsrA(hhXLhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.set_flagsX-trAXxml.dom.Element.hasAttributeNSrA(hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.hasAttributeNSX-trAX*multiprocessing.Connection.recv_bytes_intorA(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.recv_bytes_intoX-trAXfloat.is_integerrA(hhX=http://docs.python.org/library/stdtypes.html#float.is_integerX-trAXcalendar.TextCalendar.prmonthrA(hhXJhttp://docs.python.org/library/calendar.html#calendar.TextCalendar.prmonthX-trAXio.BufferedIOBase.detachrA(hhX?http://docs.python.org/library/io.html#io.BufferedIOBase.detachX-trAX!calendar.TextCalendar.formatmonthrA(hhXNhttp://docs.python.org/library/calendar.html#calendar.TextCalendar.formatmonthX-trAX%msilib.SummaryInformation.SetPropertyrA(hhXPhttp://docs.python.org/library/msilib.html#msilib.SummaryInformation.SetPropertyX-trAXxdrlib.Packer.pack_opaquerA(hhXDhttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_opaqueX-trAX str.indexrA(hhX6http://docs.python.org/library/stdtypes.html#str.indexX-trAXttk.Notebook.hiderA(hhX9http://docs.python.org/library/ttk.html#ttk.Notebook.hideX-trAXmailbox.Mailbox.__setitem__rA(hhXGhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.__setitem__X-trAXthreading.Lock.acquirerA(hhXDhttp://docs.python.org/library/threading.html#threading.Lock.acquireX-trAXasyncore.dispatcher.acceptrA(hhXGhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.acceptX-trAXcurses.window.idcokrA(hhX>http://docs.python.org/library/curses.html#curses.window.idcokX-trAX&FrameWork.ScrolledWindow.do_postresizerA(hhXThttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.do_postresizeX-trAX"webbrowser.controller.open_new_tabrA(hhXQhttp://docs.python.org/library/webbrowser.html#webbrowser.controller.open_new_tabX-trAX1SimpleHTTPServer.SimpleHTTPRequestHandler.do_HEADrA(hhXfhttp://docs.python.org/library/simplehttpserver.html#SimpleHTTPServer.SimpleHTTPRequestHandler.do_HEADX-trAX set.issubsetrA(hhX9http://docs.python.org/library/stdtypes.html#set.issubsetX-trAX"sgmllib.SGMLParser.handle_starttagrA(hhXNhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_starttagX-trAXsched.scheduler.cancelrA(hhX@http://docs.python.org/library/sched.html#sched.scheduler.cancelX-trAX$xml.etree.ElementTree.Element.extendrA(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.extendX-trAXdecimal.Context.copy_negaterA(hhXGhttp://docs.python.org/library/decimal.html#decimal.Context.copy_negateX-trAX#asynchat.async_chat.close_when_donerA(hhXPhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.close_when_doneX-trAXQueue.Queue.get_nowaitrA(hhX@http://docs.python.org/library/queue.html#Queue.Queue.get_nowaitX-trAX dict.updaterA(hhX8http://docs.python.org/library/stdtypes.html#dict.updateX-trAXimaplib.IMAP4.checkrA(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.checkX-trAXsocket.socket.listenrA(hhX?http://docs.python.org/library/socket.html#socket.socket.listenX-trAXnntplib.NNTP.articlerA(hhX@http://docs.python.org/library/nntplib.html#nntplib.NNTP.articleX-trAX!optparse.OptionParser.get_versionrA(hhXNhttp://docs.python.org/library/optparse.html#optparse.OptionParser.get_versionX-trAXobject.__getslice__rA(hhXChttp://docs.python.org/reference/datamodel.html#object.__getslice__X-trAXmailbox.Mailbox.get_messagerA(hhXGhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.get_messageX-trAXdatetime.datetime.tznamerA(hhXEhttp://docs.python.org/library/datetime.html#datetime.datetime.tznameX-trAX#FrameWork.ScrolledWindow.scrollbarsrA(hhXQhttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.scrollbarsX-trAXmultifile.MultiFile.readrA(hhXFhttp://docs.python.org/library/multifile.html#multifile.MultiFile.readX-trAX(multiprocessing.Queue.cancel_join_threadrA(hhX\http://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.cancel_join_threadX-trAXxml.dom.minidom.Node.toxmlrA(hhXNhttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.Node.toxmlX-trAXhotshot.Profile.runrA(hhX?http://docs.python.org/library/hotshot.html#hotshot.Profile.runX-trAXarray.array.extendrA(hhX<http://docs.python.org/library/array.html#array.array.extendX-trAXmailbox.MH.discardrA(hhX>http://docs.python.org/library/mailbox.html#mailbox.MH.discardX-trAX"MimeWriter.MimeWriter.flushheadersrA(hhXQhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriter.flushheadersX-trAX#argparse.ArgumentParser.format_helprA(hhXPhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.format_helpX-trAX#smtplib.SMTP.ehlo_or_helo_if_neededrA(hhXOhttp://docs.python.org/library/smtplib.html#smtplib.SMTP.ehlo_or_helo_if_neededX-trAXobject.__getinitargs__rA(hhXAhttp://docs.python.org/library/pickle.html#object.__getinitargs__X-trAX)code.InteractiveInterpreter.showtracebackrA(hhXRhttp://docs.python.org/library/code.html#code.InteractiveInterpreter.showtracebackX-trAXdecimal.Decimal.logical_xorrA(hhXGhttp://docs.python.org/library/decimal.html#decimal.Decimal.logical_xorX-trAXmailbox.Babyl.get_filerA(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Babyl.get_fileX-trAXdatetime.date.isoformatrA(hhXDhttp://docs.python.org/library/datetime.html#datetime.date.isoformatX-trAX#calendar.Calendar.monthdayscalendarrA(hhXPhttp://docs.python.org/library/calendar.html#calendar.Calendar.monthdayscalendarX-trAX7urllib2.AbstractDigestAuthHandler.http_error_auth_reqedrA(hhXchttp://docs.python.org/library/urllib2.html#urllib2.AbstractDigestAuthHandler.http_error_auth_reqedX-trAXrexec.RExec.r_execfilerA(hhX@http://docs.python.org/library/rexec.html#rexec.RExec.r_execfileX-trAX!asyncore.dispatcher.create_socketrA(hhXNhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.create_socketX-trAXdecimal.Context.copyrA(hhX@http://docs.python.org/library/decimal.html#decimal.Context.copyX-trAX#collections.somenamedtuple._replacerA(hhXShttp://docs.python.org/library/collections.html#collections.somenamedtuple._replaceX-trAXobject.__divmod__rA(hhXAhttp://docs.python.org/reference/datamodel.html#object.__divmod__X-trAX#formatter.formatter.flush_softspacerA(hhXQhttp://docs.python.org/library/formatter.html#formatter.formatter.flush_softspaceX-trAXaifc.aifc.readframesrA(hhX=http://docs.python.org/library/aifc.html#aifc.aifc.readframesX-trAXthread.lock.releaserB(hhX>http://docs.python.org/library/thread.html#thread.lock.releaseX-trBX mmap.tellrB(hhX2http://docs.python.org/library/mmap.html#mmap.tellX-trBX$sgmllib.SGMLParser.report_unbalancedrB(hhXPhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.report_unbalancedX-trBXsqlite3.Connection.rollbackrB(hhXGhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.rollbackX-trBXurllib2.BaseHandler.add_parentrB(hhXJhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.add_parentX-tr BXsha.sha.digestr B(hhX6http://docs.python.org/library/sha.html#sha.sha.digestX-tr BXcsv.Sniffer.has_headerr B(hhX>http://docs.python.org/library/csv.html#csv.Sniffer.has_headerX-tr BX unittest.TestCase.assertNotEqualrB(hhXMhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertNotEqualX-trBXsymtable.SymbolTable.has_execrB(hhXJhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.has_execX-trBXcurses.window.addstrrB(hhX?http://docs.python.org/library/curses.html#curses.window.addstrX-trBXlogging.Handler.handleErrorrB(hhXGhttp://docs.python.org/library/logging.html#logging.Handler.handleErrorX-trBXMimeWriter.MimeWriter.nextpartrB(hhXMhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriter.nextpartX-trBXdecimal.Context.is_snanrB(hhXChttp://docs.python.org/library/decimal.html#decimal.Context.is_snanX-trBX&HTMLParser.HTMLParser.handle_entityrefrB(hhXUhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_entityrefX-trBX&xml.etree.ElementTree.Element.iterfindrB(hhX`http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.iterfindX-trBXmultiprocessing.Connection.recvrB(hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.recvX-trBXurllib2.FileHandler.file_openr B(hhXIhttp://docs.python.org/library/urllib2.html#urllib2.FileHandler.file_openX-tr!BXpdb.Pdb.set_tracer"B(hhX9http://docs.python.org/library/pdb.html#pdb.Pdb.set_traceX-tr#BXCookie.BaseCookie.js_outputr$B(hhXFhttp://docs.python.org/library/cookie.html#Cookie.BaseCookie.js_outputX-tr%BXcurses.window.attrsetr&B(hhX@http://docs.python.org/library/curses.html#curses.window.attrsetX-tr'BXwave.Wave_write.tellr(B(hhX=http://docs.python.org/library/wave.html#wave.Wave_write.tellX-tr)BX!asyncore.dispatcher.handle_acceptr*B(hhXNhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_acceptX-tr+BXobject.__irshift__r,B(hhXBhttp://docs.python.org/reference/datamodel.html#object.__irshift__X-tr-BXcookielib.FileCookieJar.loadr.B(hhXJhttp://docs.python.org/library/cookielib.html#cookielib.FileCookieJar.loadX-tr/BXrexec.RExec.s_execr0B(hhX<http://docs.python.org/library/rexec.html#rexec.RExec.s_execX-tr1BXcookielib.CookiePolicy.set_okr2B(hhXKhttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.set_okX-tr3BXtimeit.Timer.print_excr4B(hhXAhttp://docs.python.org/library/timeit.html#timeit.Timer.print_excX-tr5BX urllib2.BaseHandler.unknown_openr6B(hhXLhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.unknown_openX-tr7BXlogging.Handler.closer8B(hhXAhttp://docs.python.org/library/logging.html#logging.Handler.closeX-tr9BXobject.__delattr__r:B(hhXBhttp://docs.python.org/reference/datamodel.html#object.__delattr__X-tr;BXiterator.__iter__rhttp://docs.python.org/library/stdtypes.html#iterator.__iter__X-tr=BXxmlrpclib.Binary.decoder>B(hhXEhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.Binary.decodeX-tr?BX0xml.sax.xmlreader.InputSource.getCharacterStreamr@B(hhXchttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.getCharacterStreamX-trABX!ConfigParser.SafeConfigParser.setrBB(hhXRhttp://docs.python.org/library/configparser.html#ConfigParser.SafeConfigParser.setX-trCBXobject.__floordiv__rDB(hhXChttp://docs.python.org/reference/datamodel.html#object.__floordiv__X-trEBX asyncore.dispatcher.handle_closerFB(hhXMhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_closeX-trGBX-distutils.ccompiler.CCompiler.add_include_dirrHB(hhXZhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.add_include_dirX-trIBXTix.tixCommand.tix_getimagerJB(hhXChttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_getimageX-trKBXaifc.aifc.getmarkrLB(hhX:http://docs.python.org/library/aifc.html#aifc.aifc.getmarkX-trMBXemail.header.Header.__ne__rNB(hhXKhttp://docs.python.org/library/email.header.html#email.header.Header.__ne__X-trOBX&asynchat.async_chat.push_with_producerrPB(hhXShttp://docs.python.org/library/asynchat.html#asynchat.async_chat.push_with_producerX-trQBXlogging.Logger.logrRB(hhX>http://docs.python.org/library/logging.html#logging.Logger.logX-trSBX#urllib2.UnknownHandler.unknown_openrTB(hhXOhttp://docs.python.org/library/urllib2.html#urllib2.UnknownHandler.unknown_openX-trUBXemail.message.Message.get_allrVB(hhXOhttp://docs.python.org/library/email.message.html#email.message.Message.get_allX-trWBX#email.charset.Charset.header_encoderXB(hhXUhttp://docs.python.org/library/email.charset.html#email.charset.Charset.header_encodeX-trYBXtarfile.TarInfo.isfilerZB(hhXBhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.isfileX-tr[BXbdb.Bdb.format_stack_entryr\B(hhXBhttp://docs.python.org/library/bdb.html#bdb.Bdb.format_stack_entryX-tr]BX codecs.IncrementalEncoder.encoder^B(hhXKhttp://docs.python.org/library/codecs.html#codecs.IncrementalEncoder.encodeX-tr_BXGSimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_multicall_functionsr`B(hhX~http://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.CGIXMLRPCRequestHandler.register_multicall_functionsX-traBXzlib.Compress.flushrbB(hhX<http://docs.python.org/library/zlib.html#zlib.Compress.flushX-trcBXdict.getrdB(hhX5http://docs.python.org/library/stdtypes.html#dict.getX-treBXcurses.window.scrollrfB(hhX?http://docs.python.org/library/curses.html#curses.window.scrollX-trgBXdecimal.Decimal.comparerhB(hhXChttp://docs.python.org/library/decimal.html#decimal.Decimal.compareX-triBX"filecmp.dircmp.report_full_closurerjB(hhXNhttp://docs.python.org/library/filecmp.html#filecmp.dircmp.report_full_closureX-trkBXcurses.panel.Panel.replacerlB(hhXKhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.replaceX-trmBXmhlib.Folder.copymessagernB(hhXBhttp://docs.python.org/library/mhlib.html#mhlib.Folder.copymessageX-troBXcookielib.Cookie.is_expiredrpB(hhXIhttp://docs.python.org/library/cookielib.html#cookielib.Cookie.is_expiredX-trqBXobject.__and__rrB(hhX>http://docs.python.org/reference/datamodel.html#object.__and__X-trsBXasyncore.dispatcher.recvrtB(hhXEhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.recvX-truBXmailbox.MH.get_folderrvB(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.MH.get_folderX-trwBXCookie.BaseCookie.value_encoderxB(hhXIhttp://docs.python.org/library/cookie.html#Cookie.BaseCookie.value_encodeX-tryBX mmap.seekrzB(hhX2http://docs.python.org/library/mmap.html#mmap.seekX-tr{BXpoplib.POP3.listr|B(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.listX-tr}BX%cookielib.Cookie.has_nonstandard_attrr~B(hhXShttp://docs.python.org/library/cookielib.html#cookielib.Cookie.has_nonstandard_attrX-trBX*multiprocessing.managers.SyncManager.ArrayrB(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.ArrayX-trBXpstats.Stats.dump_statsrB(hhXChttp://docs.python.org/library/profile.html#pstats.Stats.dump_statsX-trBX0distutils.fancy_getopt.FancyGetopt.generate_helprB(hhX]http://docs.python.org/distutils/apiref.html#distutils.fancy_getopt.FancyGetopt.generate_helpX-trBXpipes.Template.openrB(hhX=http://docs.python.org/library/pipes.html#pipes.Template.openX-trBXcsv.DictWriter.writeheaderrB(hhXBhttp://docs.python.org/library/csv.html#csv.DictWriter.writeheaderX-trBX!gettext.GNUTranslations.ungettextrB(hhXMhttp://docs.python.org/library/gettext.html#gettext.GNUTranslations.ungettextX-trBX object.__gt__rB(hhX=http://docs.python.org/reference/datamodel.html#object.__gt__X-trBX#FrameWork.Application.makeusermenusrB(hhXQhttp://docs.python.org/library/framework.html#FrameWork.Application.makeusermenusX-trBXformatter.writer.new_marginrB(hhXIhttp://docs.python.org/library/formatter.html#formatter.writer.new_marginX-trBXpopen2.Popen3.waitrB(hhX=http://docs.python.org/library/popen2.html#popen2.Popen3.waitX-trBXunittest.TestResult.addFailurerB(hhXKhttp://docs.python.org/library/unittest.html#unittest.TestResult.addFailureX-trBXdecimal.Context.fmarB(hhX?http://docs.python.org/library/decimal.html#decimal.Context.fmaX-trBX file.nextrB(hhX6http://docs.python.org/library/stdtypes.html#file.nextX-trBXdecimal.Context.log10rB(hhXAhttp://docs.python.org/library/decimal.html#decimal.Context.log10X-trBXio.StringIO.getvaluerB(hhX;http://docs.python.org/library/io.html#io.StringIO.getvalueX-trBXaifc.aifc.getsampwidthrB(hhX?http://docs.python.org/library/aifc.html#aifc.aifc.getsampwidthX-trBXmhlib.MH.getprofilerB(hhX=http://docs.python.org/library/mhlib.html#mhlib.MH.getprofileX-trBXbz2.BZ2File.closerB(hhX9http://docs.python.org/library/bz2.html#bz2.BZ2File.closeX-trBXHTMLParser.HTMLParser.resetrB(hhXJhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.resetX-trBX$HTMLParser.HTMLParser.handle_commentrB(hhXShttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_commentX-trBXtarfile.TarInfo.fromtarfilerB(hhXGhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.fromtarfileX-trBXmailbox.Mailbox.__len__rB(hhXChttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.__len__X-trBXio.BytesIO.read1rB(hhX7http://docs.python.org/library/io.html#io.BytesIO.read1X-trBXQueue.Queue.put_nowaitrB(hhX@http://docs.python.org/library/queue.html#Queue.Queue.put_nowaitX-trBXprofile.Profile.enablerB(hhXBhttp://docs.python.org/library/profile.html#profile.Profile.enableX-trBX str.titlerB(hhX6http://docs.python.org/library/stdtypes.html#str.titleX-trBXfl.form.set_form_positionrB(hhX@http://docs.python.org/library/fl.html#fl.form.set_form_positionX-trBX!xml.parsers.expat.xmlparser.ParserB(hhXMhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ParseX-trBXmimetypes.MimeTypes.guess_typerB(hhXLhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.guess_typeX-trBXmhlib.MH.deletefolderrB(hhX?http://docs.python.org/library/mhlib.html#mhlib.MH.deletefolderX-trBX.multiprocessing.managers.SyncManager.SemaphorerB(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.SemaphoreX-trBXimaplib.IMAP4.getquotarB(hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.getquotaX-trBXarray.array.appendrB(hhX<http://docs.python.org/library/array.html#array.array.appendX-trBXsocket.socket.getsocknamerB(hhXDhttp://docs.python.org/library/socket.html#socket.socket.getsocknameX-trBX&distutils.text_file.TextFile.readlinesrB(hhXShttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFile.readlinesX-trBXhotshot.Profile.runcallrB(hhXChttp://docs.python.org/library/hotshot.html#hotshot.Profile.runcallX-trBXcurses.window.inschrB(hhX>http://docs.python.org/library/curses.html#curses.window.inschX-trBX!gettext.NullTranslations.ngettextrB(hhXMhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.ngettextX-trBX/DocXMLRPCServer.DocXMLRPCServer.set_server_namerB(hhXchttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocXMLRPCServer.set_server_nameX-trBX%xml.sax.xmlreader.Locator.getPublicIdrB(hhXXhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Locator.getPublicIdX-trBXarray.array.readrB(hhX:http://docs.python.org/library/array.html#array.array.readX-trBXxdrlib.Packer.resetrB(hhX>http://docs.python.org/library/xdrlib.html#xdrlib.Packer.resetX-trBXnntplib.NNTP.bodyrB(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.bodyX-trBXtarfile.TarInfo.isdirrB(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.isdirX-trBXpoplib.POP3.rsetrB(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.rsetX-trBXtarfile.TarInfo.frombufrB(hhXChttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.frombufX-trBXthreading.Thread.setNamerB(hhXFhttp://docs.python.org/library/threading.html#threading.Thread.setNameX-trBX xml.dom.minidom.Node.toprettyxmlrB(hhXThttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.Node.toprettyxmlX-trBX"argparse.ArgumentParser.parse_argsrB(hhXOhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.parse_argsX-trBXfl.form.add_counterrB(hhX:http://docs.python.org/library/fl.html#fl.form.add_counterX-trBXsmtplib.SMTP.connectrB(hhX@http://docs.python.org/library/smtplib.html#smtplib.SMTP.connectX-trBXunittest.TestCase.assertLessrB(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertLessX-trBX#cookielib.CookieJar.extract_cookiesrB(hhXQhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.extract_cookiesX-trBX mailbox.MaildirMessage.get_flagsrB(hhXLhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.get_flagsX-trBXparser.ST.isexprrB(hhX;http://docs.python.org/library/parser.html#parser.ST.isexprX-trBX$symtable.SymbolTable.has_import_starrB(hhXQhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.has_import_starX-trBX'urllib2.Request.add_unredirected_headerrB(hhXShttp://docs.python.org/library/urllib2.html#urllib2.Request.add_unredirected_headerX-trBXdecimal.Decimal.copy_absrB(hhXDhttp://docs.python.org/library/decimal.html#decimal.Decimal.copy_absX-trBXobject.__len__rB(hhX>http://docs.python.org/reference/datamodel.html#object.__len__X-trBXzipfile.ZipFile.extractallrB(hhXFhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.extractallX-trBXmsilib.Record.SetIntegerrB(hhXChttp://docs.python.org/library/msilib.html#msilib.Record.SetIntegerX-trBXzipfile.ZipFile.infolistrB(hhXDhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.infolistX-trBXsgmllib.SGMLParser.closerB(hhXDhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.closeX-trBX_winreg.PyHKEY.DetachrB(hhXAhttp://docs.python.org/library/_winreg.html#_winreg.PyHKEY.DetachX-trBXcode.InteractiveConsole.pushrC(hhXEhttp://docs.python.org/library/code.html#code.InteractiveConsole.pushX-trCX#optparse.OptionParser.remove_optionrC(hhXPhttp://docs.python.org/library/optparse.html#optparse.OptionParser.remove_optionX-trCX$email.message.Message.replace_headerrC(hhXVhttp://docs.python.org/library/email.message.html#email.message.Message.replace_headerX-trCXdecimal.Context.number_classrC(hhXHhttp://docs.python.org/library/decimal.html#decimal.Context.number_classX-trCXxml.dom.Element.hasAttributerC(hhXHhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.hasAttributeX-tr CXimputil.Importer.import_topr C(hhXGhttp://docs.python.org/library/imputil.html#imputil.Importer.import_topX-tr CXmailbox.MH.flushr C(hhX<http://docs.python.org/library/mailbox.html#mailbox.MH.flushX-tr CX&xml.dom.Element.getElementsByTagNameNSrC(hhXRhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.getElementsByTagNameNSX-trCXdatetime.time.dstrC(hhX>http://docs.python.org/library/datetime.html#datetime.time.dstX-trCX file.readlinerC(hhX:http://docs.python.org/library/stdtypes.html#file.readlineX-trCXcsv.csvwriter.writerowsrC(hhX?http://docs.python.org/library/csv.html#csv.csvwriter.writerowsX-trCXnntplib.NNTP.statrC(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.statX-trCXdatetime.datetime.isoformatrC(hhXHhttp://docs.python.org/library/datetime.html#datetime.datetime.isoformatX-trCXConfigParser.ConfigParser.itemsrC(hhXPhttp://docs.python.org/library/configparser.html#ConfigParser.ConfigParser.itemsX-trCX/logging.handlers.NTEventLogHandler.getEventTyperC(hhXdhttp://docs.python.org/library/logging.handlers.html#logging.handlers.NTEventLogHandler.getEventTypeX-trCX!doctest.DocTestParser.get_doctestrC(hhXMhttp://docs.python.org/library/doctest.html#doctest.DocTestParser.get_doctestX-trCX set.discardr C(hhX8http://docs.python.org/library/stdtypes.html#set.discardX-tr!CXobject.__setstate__r"C(hhX>http://docs.python.org/library/pickle.html#object.__setstate__X-tr#CXmsilib.Dialog.liner$C(hhX=http://docs.python.org/library/msilib.html#msilib.Dialog.lineX-tr%CX calendar.Calendar.itermonthdatesr&C(hhXMhttp://docs.python.org/library/calendar.html#calendar.Calendar.itermonthdatesX-tr'CXcollections.Counter.elementsr(C(hhXLhttp://docs.python.org/library/collections.html#collections.Counter.elementsX-tr)CX#collections.defaultdict.__missing__r*C(hhXShttp://docs.python.org/library/collections.html#collections.defaultdict.__missing__X-tr+CXselect.poll.registerr,C(hhX?http://docs.python.org/library/select.html#select.poll.registerX-tr-CX calendar.TextCalendar.formatyearr.C(hhXMhttp://docs.python.org/library/calendar.html#calendar.TextCalendar.formatyearX-tr/CXaifc.aifc.getcomptyper0C(hhX>http://docs.python.org/library/aifc.html#aifc.aifc.getcomptypeX-tr1CXttk.Treeview.reattachr2C(hhX=http://docs.python.org/library/ttk.html#ttk.Treeview.reattachX-tr3CXmailbox.MH.get_sequencesr4C(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.MH.get_sequencesX-tr5CXtarfile.TarInfo.tobufr6C(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.tobufX-tr7CXjson.JSONEncoder.encoder8C(hhX@http://docs.python.org/library/json.html#json.JSONEncoder.encodeX-tr9CXobject.__getnewargs__r:C(hhX@http://docs.python.org/library/pickle.html#object.__getnewargs__X-tr;CXbdb.Bdb.set_returnrC(hhXQhttp://docs.python.org/library/weakref.html#weakref.WeakValueDictionary.valuerefsX-tr?CX!FrameWork.DialogWindow.do_itemhitr@C(hhXOhttp://docs.python.org/library/framework.html#FrameWork.DialogWindow.do_itemhitX-trACXpoplib.POP3.toprBC(hhX:http://docs.python.org/library/poplib.html#poplib.POP3.topX-trCCXmailbox.Mailbox.__contains__rDC(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.__contains__X-trECXshlex.shlex.push_tokenrFC(hhX@http://docs.python.org/library/shlex.html#shlex.shlex.push_tokenX-trGCX iterator.nextrHC(hhX:http://docs.python.org/library/stdtypes.html#iterator.nextX-trICXunittest.TestCase.assertFalserJC(hhXJhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertFalseX-trKCXfl.form.redraw_formrLC(hhX:http://docs.python.org/library/fl.html#fl.form.redraw_formX-trMCXrfc822.Message.iscommentrNC(hhXChttp://docs.python.org/library/rfc822.html#rfc822.Message.iscommentX-trOCXposixfile.posixfile.duprPC(hhXEhttp://docs.python.org/library/posixfile.html#posixfile.posixfile.dupX-trQCX0BaseHTTPServer.BaseHTTPRequestHandler.send_errorrRC(hhXchttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.send_errorX-trSCX.distutils.ccompiler.CCompiler.library_filenamerTC(hhX[http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.library_filenameX-trUCXdatetime.date.__str__rVC(hhXBhttp://docs.python.org/library/datetime.html#datetime.date.__str__X-trWCX$FrameWork.Application.do_dialogeventrXC(hhXRhttp://docs.python.org/library/framework.html#FrameWork.Application.do_dialogeventX-trYCX telnetlib.Telnet.read_very_eagerrZC(hhXNhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_very_eagerX-tr[CXFrameWork.Application.idler\C(hhXHhttp://docs.python.org/library/framework.html#FrameWork.Application.idleX-tr]CXsocket.socket.filenor^C(hhX?http://docs.python.org/library/socket.html#socket.socket.filenoX-tr_CXimaplib.IMAP4.fetchr`C(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.fetchX-traCX"collections.somenamedtuple._asdictrbC(hhXRhttp://docs.python.org/library/collections.html#collections.somenamedtuple._asdictX-trcCXdecimal.Context.logical_xorrdC(hhXGhttp://docs.python.org/library/decimal.html#decimal.Context.logical_xorX-treCXsocket.socket.closerfC(hhX>http://docs.python.org/library/socket.html#socket.socket.closeX-trgCXtarfile.TarFile.extractrhC(hhXChttp://docs.python.org/library/tarfile.html#tarfile.TarFile.extractX-triCXttk.Treeview.itemrjC(hhX9http://docs.python.org/library/ttk.html#ttk.Treeview.itemX-trkCX1doctest.DocTestRunner.report_unexpected_exceptionrlC(hhX]http://docs.python.org/library/doctest.html#doctest.DocTestRunner.report_unexpected_exceptionX-trmCXcurses.window.nodelayrnC(hhX@http://docs.python.org/library/curses.html#curses.window.nodelayX-troCXsymtable.Symbol.is_assignedrpC(hhXHhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_assignedX-trqCXdecimal.Context.is_signedrrC(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.is_signedX-trsCXselect.epoll.registerrtC(hhX@http://docs.python.org/library/select.html#select.epoll.registerX-truCXlogging.Logger.debugrvC(hhX@http://docs.python.org/library/logging.html#logging.Logger.debugX-trwCXpprint.PrettyPrinter.pformatrxC(hhXGhttp://docs.python.org/library/pprint.html#pprint.PrettyPrinter.pformatX-tryCXre.RegexObject.subnrzC(hhX:http://docs.python.org/library/re.html#re.RegexObject.subnX-tr{CXbz2.BZ2File.readr|C(hhX8http://docs.python.org/library/bz2.html#bz2.BZ2File.readX-tr}CXdecimal.Context.copy_decimalr~C(hhXHhttp://docs.python.org/library/decimal.html#decimal.Context.copy_decimalX-trCXdecimal.Context.comparerC(hhXChttp://docs.python.org/library/decimal.html#decimal.Context.compareX-trCXmailbox.Mailbox.itemsrC(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.itemsX-trCXsubprocess.Popen.communicaterC(hhXKhttp://docs.python.org/library/subprocess.html#subprocess.Popen.communicateX-trCX'xmlrpclib.ServerProxy.system.methodHelprC(hhXUhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ServerProxy.system.methodHelpX-trCXlogging.Logger.inforC(hhX?http://docs.python.org/library/logging.html#logging.Logger.infoX-trCXxdrlib.Unpacker.unpack_doublerC(hhXHhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_doubleX-trCXQueue.Queue.task_donerC(hhX?http://docs.python.org/library/queue.html#Queue.Queue.task_doneX-trCX ic.IC.mapfilerC(hhX4http://docs.python.org/library/ic.html#ic.IC.mapfileX-trCXcurses.window.attronrC(hhX?http://docs.python.org/library/curses.html#curses.window.attronX-trCX3multiprocessing.pool.multiprocessing.Pool.map_asyncrC(hhXghttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.map_asyncX-trCXio.IOBase.flushrC(hhX6http://docs.python.org/library/io.html#io.IOBase.flushX-trCXmailbox.mboxMessage.remove_flagrC(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.mboxMessage.remove_flagX-trCXmsilib.View.CloserC(hhX<http://docs.python.org/library/msilib.html#msilib.View.CloseX-trCXmutex.mutex.testandsetrC(hhX@http://docs.python.org/library/mutex.html#mutex.mutex.testandsetX-trCX sqlite3.Connection.executescriptrC(hhXLhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.executescriptX-trCXmhlib.Folder.putsequencesrC(hhXChttp://docs.python.org/library/mhlib.html#mhlib.Folder.putsequencesX-trCXaifc.aifc.getparamsrC(hhX<http://docs.python.org/library/aifc.html#aifc.aifc.getparamsX-trCX str.rsplitrC(hhX7http://docs.python.org/library/stdtypes.html#str.rsplitX-trCXxml.dom.Document.createElementrC(hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createElementX-trCX'SocketServer.BaseServer.process_requestrC(hhXXhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.process_requestX-trCXdecimal.Decimal.number_classrC(hhXHhttp://docs.python.org/library/decimal.html#decimal.Decimal.number_classX-trCXmailbox.Mailbox.popitemrC(hhXChttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.popitemX-trCXfl.form.add_clockrC(hhX8http://docs.python.org/library/fl.html#fl.form.add_clockX-trCX4BaseHTTPServer.BaseHTTPRequestHandler.address_stringrC(hhXghttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.address_stringX-trCX)xml.etree.ElementTree.Element.getiteratorrC(hhXchttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.getiteratorX-trCX!calendar.HTMLCalendar.formatmonthrC(hhXNhttp://docs.python.org/library/calendar.html#calendar.HTMLCalendar.formatmonthX-trCX%ossaudiodev.oss_audio_device.nonblockrC(hhXUhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.nonblockX-trCX$formatter.formatter.add_flowing_datarC(hhXRhttp://docs.python.org/library/formatter.html#formatter.formatter.add_flowing_dataX-trCXsymtable.Class.get_methodsrC(hhXGhttp://docs.python.org/library/symtable.html#symtable.Class.get_methodsX-trCXhttplib.HTTPResponse.getheaderrC(hhXJhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.getheaderX-trCXobject.__getitem__rC(hhXBhttp://docs.python.org/reference/datamodel.html#object.__getitem__X-trCX"email.message.Message.get_boundaryrC(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.get_boundaryX-trCX!email.charset.Charset.body_encoderC(hhXShttp://docs.python.org/library/email.charset.html#email.charset.Charset.body_encodeX-trCXcurses.window.is_linetouchedrC(hhXGhttp://docs.python.org/library/curses.html#curses.window.is_linetouchedX-trCXmailbox.MH.get_filerC(hhX?http://docs.python.org/library/mailbox.html#mailbox.MH.get_fileX-trCXthreading.Event.is_setrC(hhXDhttp://docs.python.org/library/threading.html#threading.Event.is_setX-trCXxml.dom.Element.removeAttributerC(hhXKhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.removeAttributeX-trCXbdb.Bdb.break_anywhererC(hhX>http://docs.python.org/library/bdb.html#bdb.Bdb.break_anywhereX-trCX.multiprocessing.managers.BaseProxy._callmethodrC(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseProxy._callmethodX-trCXctypes._CData.from_buffer_copyrC(hhXIhttp://docs.python.org/library/ctypes.html#ctypes._CData.from_buffer_copyX-trCX"gettext.NullTranslations.lngettextrC(hhXNhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.lngettextX-trCX!symtable.SymbolTable.has_childrenrC(hhXNhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.has_childrenX-trCX,xml.sax.handler.EntityResolver.resolveEntityrC(hhX`http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.EntityResolver.resolveEntityX-trCXfl.form.hide_formrC(hhX8http://docs.python.org/library/fl.html#fl.form.hide_formX-trCXpopen2.Popen3.pollrC(hhX=http://docs.python.org/library/popen2.html#popen2.Popen3.pollX-trCXunittest.TestSuite.debugrC(hhXEhttp://docs.python.org/library/unittest.html#unittest.TestSuite.debugX-trCX(xml.sax.xmlreader.IncrementalParser.feedrC(hhX[http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParser.feedX-trCXnntplib.NNTP.daterC(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.dateX-trCXmultiprocessing.Queue.getrC(hhXMhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.getX-trCXcurses.window.mvderwinrC(hhXAhttp://docs.python.org/library/curses.html#curses.window.mvderwinX-trCXobject.__imod__rC(hhX?http://docs.python.org/reference/datamodel.html#object.__imod__X-trCXdecimal.Decimal.is_nanrC(hhXBhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_nanX-trCXcurses.window.putwinrC(hhX?http://docs.python.org/library/curses.html#curses.window.putwinX-trCX)multiprocessing.managers.SyncManager.dictrC(hhX]http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.dictX-trCX'logging.handlers.BufferingHandler.flushrC(hhX\http://docs.python.org/library/logging.handlers.html#logging.handlers.BufferingHandler.flushX-trCXobject.__getattr__rC(hhXBhttp://docs.python.org/reference/datamodel.html#object.__getattr__X-trCX!email.message.Message.__getitem__rC(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.__getitem__X-trCXmhlib.Folder.getlastrC(hhX>http://docs.python.org/library/mhlib.html#mhlib.Folder.getlastX-trCX object.__ge__rC(hhX=http://docs.python.org/reference/datamodel.html#object.__ge__X-trCXwave.Wave_read.getmarkrC(hhX?http://docs.python.org/library/wave.html#wave.Wave_read.getmarkX-trCXMimeWriter.MimeWriter.lastpartrC(hhXMhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriter.lastpartX-trCXxdrlib.Unpacker.unpack_bytesrC(hhXGhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_bytesX-trCXtarfile.TarFile.closerC(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.closeX-trCX#mailbox.BabylMessage.update_visiblerC(hhXOhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.update_visibleX-trCXlogging.Formatter.formatrD(hhXDhttp://docs.python.org/library/logging.html#logging.Formatter.formatX-trDXrfc822.Message.islastrD(hhX@http://docs.python.org/library/rfc822.html#rfc822.Message.islastX-trDXdecimal.Context.addrD(hhX?http://docs.python.org/library/decimal.html#decimal.Context.addX-trDXic.IC.maptypecreatorrD(hhX;http://docs.python.org/library/ic.html#ic.IC.maptypecreatorX-trDX3logging.handlers.NTEventLogHandler.getEventCategoryrD(hhXhhttp://docs.python.org/library/logging.handlers.html#logging.handlers.NTEventLogHandler.getEventCategoryX-tr DX str.decoder D(hhX7http://docs.python.org/library/stdtypes.html#str.decodeX-tr DX!formatter.formatter.pop_alignmentr D(hhXOhttp://docs.python.org/library/formatter.html#formatter.formatter.pop_alignmentX-tr DX8multiprocessing.pool.multiprocessing.Pool.imap_unorderedrD(hhXlhttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.imap_unorderedX-trDX mmap.readlinerD(hhX6http://docs.python.org/library/mmap.html#mmap.readlineX-trDX$multiprocessing.pool.AsyncResult.getrD(hhXXhttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.AsyncResult.getX-trDXmsilib.CAB.commitrD(hhX<http://docs.python.org/library/msilib.html#msilib.CAB.commitX-trDXdecimal.Decimal.same_quantumrD(hhXHhttp://docs.python.org/library/decimal.html#decimal.Decimal.same_quantumX-trDX*wsgiref.handlers.BaseHandler.log_exceptionrD(hhXVhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.log_exceptionX-trDX$sgmllib.SGMLParser.convert_codepointrD(hhXPhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.convert_codepointX-trDXunicode.isnumericrD(hhX>http://docs.python.org/library/stdtypes.html#unicode.isnumericX-trDX'distutils.ccompiler.CCompiler.move_filerD(hhXThttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.move_fileX-trDXsymtable.Symbol.get_namer D(hhXEhttp://docs.python.org/library/symtable.html#symtable.Symbol.get_nameX-tr!DXmailbox.MH.list_foldersr"D(hhXChttp://docs.python.org/library/mailbox.html#mailbox.MH.list_foldersX-tr#DXre.MatchObject.groupsr$D(hhX<http://docs.python.org/library/re.html#re.MatchObject.groupsX-tr%DX2xml.parsers.expat.xmlparser.EndCdataSectionHandlerr&D(hhX^http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.EndCdataSectionHandlerX-tr'DXcollections.deque.reverser(D(hhXIhttp://docs.python.org/library/collections.html#collections.deque.reverseX-tr)DXpipes.Template.prependr*D(hhX@http://docs.python.org/library/pipes.html#pipes.Template.prependX-tr+DXdecimal.Context.rotater,D(hhXBhttp://docs.python.org/library/decimal.html#decimal.Context.rotateX-tr-DXtrace.Trace.resultsr.D(hhX=http://docs.python.org/library/trace.html#trace.Trace.resultsX-tr/DXtelnetlib.Telnet.read_very_lazyr0D(hhXMhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_very_lazyX-tr1DXre.MatchObject.groupdictr2D(hhX?http://docs.python.org/library/re.html#re.MatchObject.groupdictX-tr3DX(logging.handlers.WatchedFileHandler.emitr4D(hhX]http://docs.python.org/library/logging.handlers.html#logging.handlers.WatchedFileHandler.emitX-tr5DXhmac.HMAC.digestr6D(hhX9http://docs.python.org/library/hmac.html#hmac.HMAC.digestX-tr7DX%xml.parsers.expat.xmlparser.ParseFiler8D(hhXQhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ParseFileX-tr9DXio.TextIOBase.readliner:D(hhX=http://docs.python.org/library/io.html#io.TextIOBase.readlineX-tr;DXCookie.BaseCookie.value_decoderD(hhXFhttp://docs.python.org/library/multifile.html#multifile.MultiFile.seekX-tr?DXunittest.TestResult.addSuccessr@D(hhXKhttp://docs.python.org/library/unittest.html#unittest.TestResult.addSuccessX-trADXthreading.Event.clearrBD(hhXChttp://docs.python.org/library/threading.html#threading.Event.clearX-trCDXxdrlib.Unpacker.unpack_fstringrDD(hhXIhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_fstringX-trEDXimaplib.IMAP4.getannotationrFD(hhXGhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.getannotationX-trGDXbsddb.bsddbobject.nextrHD(hhX@http://docs.python.org/library/bsddb.html#bsddb.bsddbobject.nextX-trIDX/multiprocessing.managers.BaseManager.get_serverrJD(hhXchttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManager.get_serverX-trKDX6multiprocessing.multiprocessing.queues.SimpleQueue.putrLD(hhXjhttp://docs.python.org/library/multiprocessing.html#multiprocessing.multiprocessing.queues.SimpleQueue.putX-trMDXformatter.formatter.pop_stylerND(hhXKhttp://docs.python.org/library/formatter.html#formatter.formatter.pop_styleX-trODXbdb.Bdb.user_exceptionrPD(hhX>http://docs.python.org/library/bdb.html#bdb.Bdb.user_exceptionX-trQDX$argparse.ArgumentParser.set_defaultsrRD(hhXQhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.set_defaultsX-trSDX ossaudiodev.oss_mixer_device.setrTD(hhXPhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.setX-trUDXthreading.Lock.releaserVD(hhXDhttp://docs.python.org/library/threading.html#threading.Lock.releaseX-trWDX str.partitionrXD(hhX:http://docs.python.org/library/stdtypes.html#str.partitionX-trYDXttk.Treeview.selection_addrZD(hhXBhttp://docs.python.org/library/ttk.html#ttk.Treeview.selection_addX-tr[DX sha.sha.copyr\D(hhX4http://docs.python.org/library/sha.html#sha.sha.copyX-tr]DXmimetypes.MimeTypes.readr^D(hhXFhttp://docs.python.org/library/mimetypes.html#mimetypes.MimeTypes.readX-tr_DX.multiprocessing.managers.SyncManager.Namespacer`D(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.NamespaceX-traDXsocket.socket.recvfromrbD(hhXAhttp://docs.python.org/library/socket.html#socket.socket.recvfromX-trcDXimaplib.IMAP4.openrdD(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.openX-treDXlogging.Handler.createLockrfD(hhXFhttp://docs.python.org/library/logging.html#logging.Handler.createLockX-trgDXmsilib.View.ModifyrhD(hhX=http://docs.python.org/library/msilib.html#msilib.View.ModifyX-triDXrfc822.AddressList.__add__rjD(hhXEhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.__add__X-trkDX mmap.sizerlD(hhX2http://docs.python.org/library/mmap.html#mmap.sizeX-trmDXdecimal.Context.remainderrnD(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.remainderX-troDXbz2.BZ2File.writelinesrpD(hhX>http://docs.python.org/library/bz2.html#bz2.BZ2File.writelinesX-trqDX4argparse.ArgumentParser.add_mutually_exclusive_grouprrD(hhXahttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.add_mutually_exclusive_groupX-trsDX.distutils.ccompiler.CCompiler.set_library_dirsrtD(hhX[http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.set_library_dirsX-truDX!sqlite3.Connection.set_authorizerrvD(hhXMhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.set_authorizerX-trwDXobject.__reduce__rxD(hhX<http://docs.python.org/library/pickle.html#object.__reduce__X-tryDXcurses.window.is_wintouchedrzD(hhXFhttp://docs.python.org/library/curses.html#curses.window.is_wintouchedX-tr{DX#asynchat.async_chat.discard_buffersr|D(hhXPhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.discard_buffersX-tr}DXobject.__reversed__r~D(hhXChttp://docs.python.org/reference/datamodel.html#object.__reversed__X-trDX%weakref.WeakKeyDictionary.iterkeyrefsrD(hhXQhttp://docs.python.org/library/weakref.html#weakref.WeakKeyDictionary.iterkeyrefsX-trDX+urllib2.HTTPBasicAuthHandler.http_error_401rD(hhXWhttp://docs.python.org/library/urllib2.html#urllib2.HTTPBasicAuthHandler.http_error_401X-trDX'xml.etree.ElementTree.ElementTree.writerD(hhXahttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.writeX-trDXlogging.LogRecord.getMessagerD(hhXHhttp://docs.python.org/library/logging.html#logging.LogRecord.getMessageX-trDX!mailbox.MaildirMessage.set_subdirrD(hhXMhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.set_subdirX-trDXmailbox.Maildir.lockrD(hhX@http://docs.python.org/library/mailbox.html#mailbox.Maildir.lockX-trDXsunau.AU_write.tellrD(hhX=http://docs.python.org/library/sunau.html#sunau.AU_write.tellX-trDXio.IOBase.writablerD(hhX9http://docs.python.org/library/io.html#io.IOBase.writableX-trDXsocket.socket.recvfrom_intorD(hhXFhttp://docs.python.org/library/socket.html#socket.socket.recvfrom_intoX-trDXssl.SSLSocket.getpeercertrD(hhXAhttp://docs.python.org/library/ssl.html#ssl.SSLSocket.getpeercertX-trDX5xml.parsers.expat.xmlparser.StartNamespaceDeclHandlerrD(hhXahttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.StartNamespaceDeclHandlerX-trDXFrameWork.Application._quitrD(hhXIhttp://docs.python.org/library/framework.html#FrameWork.Application._quitX-trDXfl.form.bgn_grouprD(hhX8http://docs.python.org/library/fl.html#fl.form.bgn_groupX-trDXhttplib.HTTPConnection.requestrD(hhXJhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.requestX-trDXdecimal.Context.multiplyrD(hhXDhttp://docs.python.org/library/decimal.html#decimal.Context.multiplyX-trDXsymtable.Symbol.is_localrD(hhXEhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_localX-trDXxml.dom.Node.hasChildNodesrD(hhXFhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.hasChildNodesX-trDXparser.ST.tolistrD(hhX;http://docs.python.org/library/parser.html#parser.ST.tolistX-trDXmailbox.Mailbox.has_keyrD(hhXChttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.has_keyX-trDXmmap.write_byterD(hhX8http://docs.python.org/library/mmap.html#mmap.write_byteX-trDX/optparse.OptionParser.disable_interspersed_argsrD(hhX\http://docs.python.org/library/optparse.html#optparse.OptionParser.disable_interspersed_argsX-trDX"formatter.formatter.add_label_datarD(hhXPhttp://docs.python.org/library/formatter.html#formatter.formatter.add_label_dataX-trDXchunk.Chunk.tellrD(hhX:http://docs.python.org/library/chunk.html#chunk.Chunk.tellX-trDXsubprocess.Popen.send_signalrD(hhXKhttp://docs.python.org/library/subprocess.html#subprocess.Popen.send_signalX-trDX set.removerD(hhX7http://docs.python.org/library/stdtypes.html#set.removeX-trDXcgi.FieldStorage.getlistrD(hhX@http://docs.python.org/library/cgi.html#cgi.FieldStorage.getlistX-trDXimaplib.IMAP4.subscriberD(hhXChttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.subscribeX-trDXset.symmetric_differencerD(hhXEhttp://docs.python.org/library/stdtypes.html#set.symmetric_differenceX-trDXcurses.panel.Panel.set_userptrrD(hhXOhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.set_userptrX-trDXre.MatchObject.grouprD(hhX;http://docs.python.org/library/re.html#re.MatchObject.groupX-trDX0xml.sax.xmlreader.InputSource.setCharacterStreamrD(hhXchttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.setCharacterStreamX-trDXimaplib.IMAP4.uidrD(hhX=http://docs.python.org/library/imaplib.html#imaplib.IMAP4.uidX-trDXdecimal.Context.exprD(hhX?http://docs.python.org/library/decimal.html#decimal.Context.expX-trDXmhlib.Folder.listmessagesrD(hhXChttp://docs.python.org/library/mhlib.html#mhlib.Folder.listmessagesX-trDXcurses.window.syncokrD(hhX?http://docs.python.org/library/curses.html#curses.window.syncokX-trDX,urllib2.ProxyBasicAuthHandler.http_error_407rD(hhXXhttp://docs.python.org/library/urllib2.html#urllib2.ProxyBasicAuthHandler.http_error_407X-trDX8xml.parsers.expat.xmlparser.ProcessingInstructionHandlerrD(hhXdhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ProcessingInstructionHandlerX-trDX)xml.sax.xmlreader.InputSource.getSystemIdrD(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.getSystemIdX-trDXhtmllib.HTMLParser.anchor_bgnrD(hhXIhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.anchor_bgnX-trDXxml.dom.Node.insertBeforerD(hhXEhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.insertBeforeX-trDXdecimal.Decimal.to_eng_stringrD(hhXIhttp://docs.python.org/library/decimal.html#decimal.Decimal.to_eng_stringX-trDXssl.SSLSocket.unwraprD(hhX<http://docs.python.org/library/ssl.html#ssl.SSLSocket.unwrapX-trDXio.IOBase.seekablerD(hhX9http://docs.python.org/library/io.html#io.IOBase.seekableX-trDXbdb.Bdb.trace_dispatchrD(hhX>http://docs.python.org/library/bdb.html#bdb.Bdb.trace_dispatchX-trDX"symtable.Symbol.is_declared_globalrD(hhXOhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_declared_globalX-trDX%cookielib.CookiePolicy.path_return_okrD(hhXShttp://docs.python.org/library/cookielib.html#cookielib.CookiePolicy.path_return_okX-trDXasyncore.dispatcher.readablerD(hhXIhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.readableX-trDX)xml.sax.xmlreader.IncrementalParser.closerD(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParser.closeX-trDXcurses.panel.Panel.hiderD(hhXHhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.hideX-trDXsha.sha.updaterD(hhX6http://docs.python.org/library/sha.html#sha.sha.updateX-trDXcollections.Counter.subtractrD(hhXLhttp://docs.python.org/library/collections.html#collections.Counter.subtractX-trDX email.message.Message.get_paramsrD(hhXRhttp://docs.python.org/library/email.message.html#email.message.Message.get_paramsX-trDXunittest.TestResult.stoprD(hhXEhttp://docs.python.org/library/unittest.html#unittest.TestResult.stopX-trDXclass.__instancecheck__rD(hhXGhttp://docs.python.org/reference/datamodel.html#class.__instancecheck__X-trDXlogging.Formatter.formatTimerD(hhXHhttp://docs.python.org/library/logging.html#logging.Formatter.formatTimeX-trDXxmlrpclib.Binary.encoderD(hhXEhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.Binary.encodeX-trDXobject.__rrshift__rD(hhXBhttp://docs.python.org/reference/datamodel.html#object.__rrshift__X-trDX%unittest.TestCase.assertNotIsInstancerD(hhXRhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertNotIsInstanceX-trDXxmlrpclib.DateTime.encoderD(hhXGhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.DateTime.encodeX-trDXftplib.FTP.renamerD(hhX<http://docs.python.org/library/ftplib.html#ftplib.FTP.renameX-trDXemail.header.Header.__unicode__rD(hhXPhttp://docs.python.org/library/email.header.html#email.header.Header.__unicode__X-trDXwave.Wave_read.setposrD(hhX>http://docs.python.org/library/wave.html#wave.Wave_read.setposX-trDXarray.array.countrD(hhX;http://docs.python.org/library/array.html#array.array.countX-trDXlogging.Logger.criticalrD(hhXChttp://docs.python.org/library/logging.html#logging.Logger.criticalX-trDXunittest.TestCase.runrE(hhXBhttp://docs.python.org/library/unittest.html#unittest.TestCase.runX-trEXcurses.window.addnstrrE(hhX@http://docs.python.org/library/curses.html#curses.window.addnstrX-trEXstring.Formatter.format_fieldrE(hhXHhttp://docs.python.org/library/string.html#string.Formatter.format_fieldX-trEXset.copyrE(hhX5http://docs.python.org/library/stdtypes.html#set.copyX-trEXobject.__rmul__rE(hhX?http://docs.python.org/reference/datamodel.html#object.__rmul__X-tr EXurllib2.OpenerDirector.openr E(hhXGhttp://docs.python.org/library/urllib2.html#urllib2.OpenerDirector.openX-tr EXbsddb.bsddbobject.syncr E(hhX@http://docs.python.org/library/bsddb.html#bsddb.bsddbobject.syncX-tr EXparser.ST.totuplerE(hhX<http://docs.python.org/library/parser.html#parser.ST.totupleX-trEXpstats.Stats.sort_statsrE(hhXChttp://docs.python.org/library/profile.html#pstats.Stats.sort_statsX-trEX"wsgiref.headers.Headers.add_headerrE(hhXNhttp://docs.python.org/library/wsgiref.html#wsgiref.headers.Headers.add_headerX-trEXcurses.panel.Panel.belowrE(hhXIhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.belowX-trEXbdb.Bdb.user_callrE(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.user_callX-trEX"email.message.Message.set_boundaryrE(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.set_boundaryX-trEX str.encoderE(hhX7http://docs.python.org/library/stdtypes.html#str.encodeX-trEXic.IC.parseurlrE(hhX5http://docs.python.org/library/ic.html#ic.IC.parseurlX-trEXtextwrap.TextWrapper.fillrE(hhXFhttp://docs.python.org/library/textwrap.html#textwrap.TextWrapper.fillX-trEXttk.Style.element_namesr E(hhX?http://docs.python.org/library/ttk.html#ttk.Style.element_namesX-tr!EXwave.Wave_write.writeframesrawr"E(hhXGhttp://docs.python.org/library/wave.html#wave.Wave_write.writeframesrawX-tr#EXnntplib.NNTP.ihaver$E(hhX>http://docs.python.org/library/nntplib.html#nntplib.NNTP.ihaveX-tr%EX mmap.closer&E(hhX3http://docs.python.org/library/mmap.html#mmap.closeX-tr'EX"distutils.ccompiler.CCompiler.warnr(E(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.warnX-tr)EXtarfile.TarFile.getnamesr*E(hhXDhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.getnamesX-tr+EXxdrlib.Unpacker.resetr,E(hhX@http://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.resetX-tr-EXwsgiref.headers.Headers.get_allr.E(hhXKhttp://docs.python.org/library/wsgiref.html#wsgiref.headers.Headers.get_allX-tr/EX&ossaudiodev.oss_audio_device.obufcountr0E(hhXVhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.obufcountX-tr1EXimaplib.IMAP4.setaclr2E(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.setaclX-tr3EXio.TextIOBase.readr4E(hhX9http://docs.python.org/library/io.html#io.TextIOBase.readX-tr5EX)multiprocessing.connection.Listener.closer6E(hhX]http://docs.python.org/library/multiprocessing.html#multiprocessing.connection.Listener.closeX-tr7EXemail.message.Message.__len__r8E(hhXOhttp://docs.python.org/library/email.message.html#email.message.Message.__len__X-tr9EXlogging.Logger.addHandlerr:E(hhXEhttp://docs.python.org/library/logging.html#logging.Logger.addHandlerX-tr;EXsqlite3.Connection.executerE(hhX_http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.endElementNSX-tr?EX+logging.handlers.SocketHandler.createSocketr@E(hhX`http://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.createSocketX-trAEXpstats.Stats.print_callersrBE(hhXFhttp://docs.python.org/library/profile.html#pstats.Stats.print_callersX-trCEXmhlib.Folder.setlastrDE(hhX>http://docs.python.org/library/mhlib.html#mhlib.Folder.setlastX-trEEX'gettext.NullTranslations.output_charsetrFE(hhXShttp://docs.python.org/library/gettext.html#gettext.NullTranslations.output_charsetX-trGEX&xml.sax.xmlreader.Attributes.getLengthrHE(hhXYhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Attributes.getLengthX-trIEX!multiprocessing.Connection.filenorJE(hhXUhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.filenoX-trKEXobject.__rtruediv__rLE(hhXChttp://docs.python.org/reference/datamodel.html#object.__rtruediv__X-trMEXzipimport.zipimporter.get_datarNE(hhXLhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.get_dataX-trOEXmailbox.MaildirMessage.add_flagrPE(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.add_flagX-trQEX-cookielib.DefaultCookiePolicy.blocked_domainsrRE(hhX[http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.blocked_domainsX-trSEX$formatter.formatter.add_literal_datarTE(hhXRhttp://docs.python.org/library/formatter.html#formatter.formatter.add_literal_dataX-trUEX"urllib2.OpenerDirector.add_handlerrVE(hhXNhttp://docs.python.org/library/urllib2.html#urllib2.OpenerDirector.add_handlerX-trWEX str.rjustrXE(hhX6http://docs.python.org/library/stdtypes.html#str.rjustX-trYEXxml.dom.Document.createTextNoderZE(hhXKhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createTextNodeX-tr[EXcontainer.__iter__r\E(hhX?http://docs.python.org/library/stdtypes.html#container.__iter__X-tr]EXnntplib.NNTP.newnewsr^E(hhX@http://docs.python.org/library/nntplib.html#nntplib.NNTP.newnewsX-tr_EXcurses.window.addchr`E(hhX>http://docs.python.org/library/curses.html#curses.window.addchX-traEXmailbox.Mailbox.addrbE(hhX?http://docs.python.org/library/mailbox.html#mailbox.Mailbox.addX-trcEXpoplib.POP3.statrdE(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.statX-treEXobject.__float__rfE(hhX@http://docs.python.org/reference/datamodel.html#object.__float__X-trgEXdecimal.Decimal.is_snanrhE(hhXChttp://docs.python.org/library/decimal.html#decimal.Decimal.is_snanX-triEX$logging.handlers.MemoryHandler.closerjE(hhXYhttp://docs.python.org/library/logging.handlers.html#logging.handlers.MemoryHandler.closeX-trkEXthreading.Condition.acquirerlE(hhXIhttp://docs.python.org/library/threading.html#threading.Condition.acquireX-trmEXwave.Wave_write.setnframesrnE(hhXChttp://docs.python.org/library/wave.html#wave.Wave_write.setnframesX-troEX7SimpleXMLRPCServer.SimpleXMLRPCServer.register_instancerpE(hhXnhttp://docs.python.org/library/simplexmlrpcserver.html#SimpleXMLRPCServer.SimpleXMLRPCServer.register_instanceX-trqEX;DocXMLRPCServer.DocCGIXMLRPCRequestHandler.set_server_titlerrE(hhXohttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocCGIXMLRPCRequestHandler.set_server_titleX-trsEX!zipimport.zipimporter.find_modulertE(hhXOhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.find_moduleX-truEX"xml.etree.ElementTree.Element.findrvE(hhX\http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.findX-trwEXdecimal.Context.compare_signalrxE(hhXJhttp://docs.python.org/library/decimal.html#decimal.Context.compare_signalX-tryEXpoplib.POP3.rpoprzE(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.rpopX-tr{EXtarfile.TarFile.gettarinfor|E(hhXFhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.gettarinfoX-tr}EXmailbox.Mailbox.flushr~E(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.flushX-trEX!email.message.Message.__delitem__rE(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.__delitem__X-trEXdecimal.Context.is_zerorE(hhXChttp://docs.python.org/library/decimal.html#decimal.Context.is_zeroX-trEXjson.JSONDecoder.raw_decoderE(hhXDhttp://docs.python.org/library/json.html#json.JSONDecoder.raw_decodeX-trEXobject.__coerce__rE(hhXAhttp://docs.python.org/reference/datamodel.html#object.__coerce__X-trEXmailbox.Maildir.list_foldersrE(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.list_foldersX-trEXcurses.window.standoutrE(hhXAhttp://docs.python.org/library/curses.html#curses.window.standoutX-trEX"email.message.Message.get_charsetsrE(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.get_charsetsX-trEXdecimal.Decimal.as_tuplerE(hhXDhttp://docs.python.org/library/decimal.html#decimal.Decimal.as_tupleX-trEXmailbox.MaildirMessage.get_inforE(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.get_infoX-trEXcollections.deque.rotaterE(hhXHhttp://docs.python.org/library/collections.html#collections.deque.rotateX-trEXlogging.Handler.addFilterrE(hhXEhttp://docs.python.org/library/logging.html#logging.Handler.addFilterX-trEXmsilib.Directory.globrE(hhX@http://docs.python.org/library/msilib.html#msilib.Directory.globX-trEXobject.__iand__rE(hhX?http://docs.python.org/reference/datamodel.html#object.__iand__X-trEX str.rstriprE(hhX7http://docs.python.org/library/stdtypes.html#str.rstripX-trEXttk.Notebook.indexrE(hhX:http://docs.python.org/library/ttk.html#ttk.Notebook.indexX-trEXbz2.BZ2File.xreadlinesrE(hhX>http://docs.python.org/library/bz2.html#bz2.BZ2File.xreadlinesX-trEX/BaseHTTPServer.BaseHTTPRequestHandler.log_errorrE(hhXbhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.log_errorX-trEXhttplib.HTTPResponse.getheadersrE(hhXKhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.getheadersX-trEXrexec.RExec.r_reloadrE(hhX>http://docs.python.org/library/rexec.html#rexec.RExec.r_reloadX-trEXpstats.Stats.reverse_orderrE(hhXFhttp://docs.python.org/library/profile.html#pstats.Stats.reverse_orderX-trEX(ossaudiodev.oss_mixer_device.reccontrolsrE(hhXXhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.reccontrolsX-trEXbdb.Bdb.set_breakrE(hhX9http://docs.python.org/library/bdb.html#bdb.Bdb.set_breakX-trEXimaplib.IMAP4.sendrE(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.sendX-trEXmd5.md5.hexdigestrE(hhX9http://docs.python.org/library/md5.html#md5.md5.hexdigestX-trEXsunau.AU_read.setposrE(hhX>http://docs.python.org/library/sunau.html#sunau.AU_read.setposX-trEXcollections.deque.appendleftrE(hhXLhttp://docs.python.org/library/collections.html#collections.deque.appendleftX-trEXcodecs.StreamReader.readlinerE(hhXGhttp://docs.python.org/library/codecs.html#codecs.StreamReader.readlineX-trEX"FrameWork.Application.getabouttextrE(hhXPhttp://docs.python.org/library/framework.html#FrameWork.Application.getabouttextX-trEXcurses.window.syncuprE(hhX?http://docs.python.org/library/curses.html#curses.window.syncupX-trEXtelnetlib.Telnet.get_socketrE(hhXIhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.get_socketX-trEXcollections.OrderedDict.popitemrE(hhXOhttp://docs.python.org/library/collections.html#collections.OrderedDict.popitemX-trEXmailbox.Maildir.remove_folderrE(hhXIhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.remove_folderX-trEXstring.Template.safe_substituterE(hhXJhttp://docs.python.org/library/string.html#string.Template.safe_substituteX-trEXthreading.Thread.isAliverE(hhXFhttp://docs.python.org/library/threading.html#threading.Thread.isAliveX-trEXmimetools.Message.getparamrE(hhXHhttp://docs.python.org/library/mimetools.html#mimetools.Message.getparamX-trEXunittest.TestCase.doCleanupsrE(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestCase.doCleanupsX-trEXimaplib.IMAP4.nooprE(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.noopX-trEXpoplib.POP3.nooprE(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.noopX-trEX+xml.sax.xmlreader.InputSource.setByteStreamrE(hhX^http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.InputSource.setByteStreamX-trEXQueue.Queue.joinrE(hhX:http://docs.python.org/library/queue.html#Queue.Queue.joinX-trEXbsddb.bsddbobject.closerE(hhXAhttp://docs.python.org/library/bsddb.html#bsddb.bsddbobject.closeX-trEXcurses.window.deletelnrE(hhXAhttp://docs.python.org/library/curses.html#curses.window.deletelnX-trEXmsilib.Directory.remove_pycrE(hhXFhttp://docs.python.org/library/msilib.html#msilib.Directory.remove_pycX-trEX str.isspacerE(hhX8http://docs.python.org/library/stdtypes.html#str.isspaceX-trEXdatetime.time.tznamerE(hhXAhttp://docs.python.org/library/datetime.html#datetime.time.tznameX-trEX.multiprocessing.pool.multiprocessing.Pool.joinrE(hhXbhttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.joinX-trEXsymtable.Function.get_globalsrE(hhXJhttp://docs.python.org/library/symtable.html#symtable.Function.get_globalsX-trEXdecimal.Decimal.shiftrE(hhXAhttp://docs.python.org/library/decimal.html#decimal.Decimal.shiftX-trEXemail.message.Message.attachrE(hhXNhttp://docs.python.org/library/email.message.html#email.message.Message.attachX-trEXhashlib.hash.digestrE(hhX?http://docs.python.org/library/hashlib.html#hashlib.hash.digestX-trEXcurses.window.insstrrE(hhX?http://docs.python.org/library/curses.html#curses.window.insstrX-trEX'multiprocessing.JoinableQueue.task_donerE(hhX[http://docs.python.org/library/multiprocessing.html#multiprocessing.JoinableQueue.task_doneX-trEXlogging.Logger.removeHandlerrE(hhXHhttp://docs.python.org/library/logging.html#logging.Logger.removeHandlerX-trEXobject.__nonzero__rE(hhXBhttp://docs.python.org/reference/datamodel.html#object.__nonzero__X-trEXnntplib.NNTP.slaverE(hhX>http://docs.python.org/library/nntplib.html#nntplib.NNTP.slaveX-trEX zipimport.zipimporter.get_sourcerE(hhXNhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.get_sourceX-trEXthreading.Event.setrE(hhXAhttp://docs.python.org/library/threading.html#threading.Event.setX-trEX str.swapcaserE(hhX9http://docs.python.org/library/stdtypes.html#str.swapcaseX-trEXdecimal.Decimal.adjustedrE(hhXDhttp://docs.python.org/library/decimal.html#decimal.Decimal.adjustedX-trEX"ossaudiodev.oss_mixer_device.closerE(hhXRhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.closeX-trEXttk.Style.layoutrE(hhX8http://docs.python.org/library/ttk.html#ttk.Style.layoutX-trEXxml.dom.Node.appendChildrE(hhXDhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.appendChildX-trEXshlex.shlex.sourcehookrE(hhX@http://docs.python.org/library/shlex.html#shlex.shlex.sourcehookX-trEXdoctest.DocTestRunner.runrE(hhXEhttp://docs.python.org/library/doctest.html#doctest.DocTestRunner.runX-trEX'xml.dom.Document.getElementsByTagNameNSrF(hhXShttp://docs.python.org/library/xml.dom.html#xml.dom.Document.getElementsByTagNameNSX-trFX(urllib2.HTTPErrorProcessor.http_responserF(hhXThttp://docs.python.org/library/urllib2.html#urllib2.HTTPErrorProcessor.http_responseX-trFXttk.Combobox.currentrF(hhX<http://docs.python.org/library/ttk.html#ttk.Combobox.currentX-trFXemail.message.Message.itemsrF(hhXMhttp://docs.python.org/library/email.message.html#email.message.Message.itemsX-trFXio.IOBase.seekrF(hhX5http://docs.python.org/library/io.html#io.IOBase.seekX-tr FXfl.form.deactivate_formr F(hhX>http://docs.python.org/library/fl.html#fl.form.deactivate_formX-tr FXmailbox.Mailbox.closer F(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.closeX-tr FXbdb.Bdb.clear_all_file_breaksrF(hhXEhttp://docs.python.org/library/bdb.html#bdb.Bdb.clear_all_file_breaksX-trFXTix.tixCommand.tix_cgetrF(hhX?http://docs.python.org/library/tix.html#Tix.tixCommand.tix_cgetX-trFXsunau.AU_write.writeframesrF(hhXDhttp://docs.python.org/library/sunau.html#sunau.AU_write.writeframesX-trFX!decimal.Decimal.compare_total_magrF(hhXMhttp://docs.python.org/library/decimal.html#decimal.Decimal.compare_total_magX-trFX mmap.findrF(hhX2http://docs.python.org/library/mmap.html#mmap.findX-trFX"multiprocessing.JoinableQueue.joinrF(hhXVhttp://docs.python.org/library/multiprocessing.html#multiprocessing.JoinableQueue.joinX-trFXdecimal.Context.lnrF(hhX>http://docs.python.org/library/decimal.html#decimal.Context.lnX-trFXsocket.socket.setsockoptrF(hhXChttp://docs.python.org/library/socket.html#socket.socket.setsockoptX-trFXsocket.socket.settimeoutrF(hhXChttp://docs.python.org/library/socket.html#socket.socket.settimeoutX-trFXdecimal.Decimal.scalebr F(hhXBhttp://docs.python.org/library/decimal.html#decimal.Decimal.scalebX-tr!FXcurses.window.clearr"F(hhX>http://docs.python.org/library/curses.html#curses.window.clearX-tr#FXobject.__str__r$F(hhX>http://docs.python.org/reference/datamodel.html#object.__str__X-tr%FXmultiprocessing.Connection.sendr&F(hhXShttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.sendX-tr'FXtarfile.TarInfo.isdevr(F(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.isdevX-tr)FXstring.Formatter.vformatr*F(hhXChttp://docs.python.org/library/string.html#string.Formatter.vformatX-tr+FX#calendar.Calendar.yeardays2calendarr,F(hhXPhttp://docs.python.org/library/calendar.html#calendar.Calendar.yeardays2calendarX-tr-FX*xml.parsers.expat.xmlparser.DefaultHandlerr.F(hhXVhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.DefaultHandlerX-tr/FX#compiler.visitor.ASTVisitor.defaultr0F(hhXPhttp://docs.python.org/library/compiler.html#compiler.visitor.ASTVisitor.defaultX-tr1FXdecimal.Decimal.is_normalr2F(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_normalX-tr3FXdecimal.Decimal.copy_negater4F(hhXGhttp://docs.python.org/library/decimal.html#decimal.Decimal.copy_negateX-tr5FX%HTMLParser.HTMLParser.handle_starttagr6F(hhXThttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.handle_starttagX-tr7FXftplib.FTP.storlinesr8F(hhX?http://docs.python.org/library/ftplib.html#ftplib.FTP.storlinesX-tr9FXcurses.window.insnstrr:F(hhX@http://docs.python.org/library/curses.html#curses.window.insnstrX-tr;FX$robotparser.RobotFileParser.modifiedrF(hhXWhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Attributes.getTypeX-tr?FXpoplib.POP3.quitr@F(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.quitX-trAFXttk.Treeview.headingrBF(hhX<http://docs.python.org/library/ttk.html#ttk.Treeview.headingX-trCFXobject.__add__rDF(hhX>http://docs.python.org/reference/datamodel.html#object.__add__X-trEFX$ossaudiodev.oss_audio_device.getfmtsrFF(hhXThttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.getfmtsX-trGFX*unittest.TestCase.assertDictContainsSubsetrHF(hhXWhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertDictContainsSubsetX-trIFX multiprocessing.Queue.get_nowaitrJF(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.get_nowaitX-trKFX%ConfigParser.RawConfigParser.defaultsrLF(hhXVhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.defaultsX-trMFXsqlite3.Cursor.fetchmanyrNF(hhXDhttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.fetchmanyX-trOFXbdb.Bdb.get_all_breaksrPF(hhX>http://docs.python.org/library/bdb.html#bdb.Bdb.get_all_breaksX-trQFXmailbox.MaildirMessage.get_daterRF(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.get_dateX-trSFXttk.Progressbar.stoprTF(hhX<http://docs.python.org/library/ttk.html#ttk.Progressbar.stopX-trUFXwave.Wave_write.writeframesrVF(hhXDhttp://docs.python.org/library/wave.html#wave.Wave_write.writeframesX-trWFXhashlib.hash.updaterXF(hhX?http://docs.python.org/library/hashlib.html#hashlib.hash.updateX-trYFX"xml.dom.Document.createAttributeNSrZF(hhXNhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.createAttributeNSX-tr[FX str.ljustr\F(hhX6http://docs.python.org/library/stdtypes.html#str.ljustX-tr]FXrfc822.Message.getdater^F(hhXAhttp://docs.python.org/library/rfc822.html#rfc822.Message.getdateX-tr_FX%multiprocessing.Connection.recv_bytesr`F(hhXYhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.recv_bytesX-traFXsocket.socket.makefilerbF(hhXAhttp://docs.python.org/library/socket.html#socket.socket.makefileX-trcFXttk.Treeview.selectionrdF(hhX>http://docs.python.org/library/ttk.html#ttk.Treeview.selectionX-treFXparser.ST.issuiterfF(hhX<http://docs.python.org/library/parser.html#parser.ST.issuiteX-trgFX"unittest.TestCase.shortDescriptionrhF(hhXOhttp://docs.python.org/library/unittest.html#unittest.TestCase.shortDescriptionX-triFXdict.setdefaultrjF(hhX<http://docs.python.org/library/stdtypes.html#dict.setdefaultX-trkFXfl.form.add_inputrlF(hhX8http://docs.python.org/library/fl.html#fl.form.add_inputX-trmFXmhlib.Folder.errorrnF(hhX<http://docs.python.org/library/mhlib.html#mhlib.Folder.errorX-troFXmailbox.MMDFMessage.remove_flagrpF(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MMDFMessage.remove_flagX-trqFXobject.__rpow__rrF(hhX?http://docs.python.org/reference/datamodel.html#object.__rpow__X-trsFXcookielib.FileCookieJar.savertF(hhXJhttp://docs.python.org/library/cookielib.html#cookielib.FileCookieJar.saveX-truFXprofile.Profile.dump_statsrvF(hhXFhttp://docs.python.org/library/profile.html#profile.Profile.dump_statsX-trwFXdatetime.date.__format__rxF(hhXEhttp://docs.python.org/library/datetime.html#datetime.date.__format__X-tryFXarray.array.buffer_inforzF(hhXAhttp://docs.python.org/library/array.html#array.array.buffer_infoX-tr{FX ConfigParser.RawConfigParser.setr|F(hhXQhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.setX-tr}FXfl.form.end_groupr~F(hhX8http://docs.python.org/library/fl.html#fl.form.end_groupX-trFX dict.iterkeysrF(hhX:http://docs.python.org/library/stdtypes.html#dict.iterkeysX-trFX!xml.dom.Element.removeAttributeNSrF(hhXMhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.removeAttributeNSX-trFXurllib2.Request.has_datarF(hhXDhttp://docs.python.org/library/urllib2.html#urllib2.Request.has_dataX-trFXunittest.TestResult.addErrorrF(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestResult.addErrorX-trFXttk.Treeview.selection_setrF(hhXBhttp://docs.python.org/library/ttk.html#ttk.Treeview.selection_setX-trFX%unittest.TestCase.addTypeEqualityFuncrF(hhXRhttp://docs.python.org/library/unittest.html#unittest.TestCase.addTypeEqualityFuncX-trFX.distutils.ccompiler.CCompiler.object_filenamesrF(hhX[http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.object_filenamesX-trFX&email.message.Message.set_default_typerF(hhXXhttp://docs.python.org/library/email.message.html#email.message.Message.set_default_typeX-trFX+gettext.NullTranslations.set_output_charsetrF(hhXWhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.set_output_charsetX-trFX)decimal.Context.create_decimal_from_floatrF(hhXUhttp://docs.python.org/library/decimal.html#decimal.Context.create_decimal_from_floatX-trFXmimetools.Message.gettyperF(hhXGhttp://docs.python.org/library/mimetools.html#mimetools.Message.gettypeX-trFXio.TextIOBase.writerF(hhX:http://docs.python.org/library/io.html#io.TextIOBase.writeX-trFX$fractions.Fraction.limit_denominatorrF(hhXRhttp://docs.python.org/library/fractions.html#fractions.Fraction.limit_denominatorX-trFX%distutils.ccompiler.CCompiler.compilerF(hhXRhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.compileX-trFXsgmllib.SGMLParser.handle_datarF(hhXJhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_dataX-trFXmailbox.Maildir.flushrF(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.flushX-trFXMiniAEFrame.AEServer.callbackrF(hhXMhttp://docs.python.org/library/miniaeframe.html#MiniAEFrame.AEServer.callbackX-trFX gettext.NullTranslations.gettextrF(hhXLhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.gettextX-trFX,multiprocessing.managers.BaseManager.connectrF(hhX`http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManager.connectX-trFXttk.Treeview.identify_columnrF(hhXDhttp://docs.python.org/library/ttk.html#ttk.Treeview.identify_columnX-trFXsocket.socket.sendallrF(hhX@http://docs.python.org/library/socket.html#socket.socket.sendallX-trFX&urllib2.BaseHandler.http_error_defaultrF(hhXRhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.http_error_defaultX-trFXdatetime.datetime.toordinalrF(hhXHhttp://docs.python.org/library/datetime.html#datetime.datetime.toordinalX-trFXmsilib.View.GetColumnInforF(hhXDhttp://docs.python.org/library/msilib.html#msilib.View.GetColumnInfoX-trFXmhlib.Folder.parsesequencerF(hhXDhttp://docs.python.org/library/mhlib.html#mhlib.Folder.parsesequenceX-trFX gettext.NullTranslations.charsetrF(hhXLhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.charsetX-trFXTix.tixCommand.tix_configurerF(hhXDhttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_configureX-trFXarray.array.tounicoderF(hhX?http://docs.python.org/library/array.html#array.array.tounicodeX-trFXdatetime.datetime.timerF(hhXChttp://docs.python.org/library/datetime.html#datetime.datetime.timeX-trFXQueue.Queue.emptyrF(hhX;http://docs.python.org/library/queue.html#Queue.Queue.emptyX-trFXmsilib.Dialog.bitmaprF(hhX?http://docs.python.org/library/msilib.html#msilib.Dialog.bitmapX-trFXmailbox.mboxMessage.get_fromrF(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.mboxMessage.get_fromX-trFXttk.Widget.instaterF(hhX:http://docs.python.org/library/ttk.html#ttk.Widget.instateX-trFX)cookielib.CookieJar.clear_session_cookiesrF(hhXWhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.clear_session_cookiesX-trFXcurses.window.encloserF(hhX@http://docs.python.org/library/curses.html#curses.window.encloseX-trFX ConfigParser.RawConfigParser.getrF(hhXQhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.getX-trFXmultiprocessing.Queue.fullrF(hhXNhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.fullX-trFXdatetime.datetime.__str__rF(hhXFhttp://docs.python.org/library/datetime.html#datetime.datetime.__str__X-trFXdecimal.Context.EtinyrF(hhXAhttp://docs.python.org/library/decimal.html#decimal.Context.EtinyX-trFXthread.lock.lockedrF(hhX=http://docs.python.org/library/thread.html#thread.lock.lockedX-trFXmsilib.Dialog.radiogrouprF(hhXChttp://docs.python.org/library/msilib.html#msilib.Dialog.radiogroupX-trFX!unittest.TestSuite.countTestCasesrF(hhXNhttp://docs.python.org/library/unittest.html#unittest.TestSuite.countTestCasesX-trFXsunau.AU_read.getcompnamerF(hhXChttp://docs.python.org/library/sunau.html#sunau.AU_read.getcompnameX-trFXemail.message.Message.getrF(hhXKhttp://docs.python.org/library/email.message.html#email.message.Message.getX-trFXsymtable.Symbol.is_referencedrF(hhXJhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_referencedX-trFX(wsgiref.simple_server.WSGIServer.get_apprF(hhXThttp://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIServer.get_appX-trFXcollections.deque.clearrF(hhXGhttp://docs.python.org/library/collections.html#collections.deque.clearX-trFXunittest.TestCase.addCleanuprF(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestCase.addCleanupX-trFX*email.message.Message.get_content_maintyperF(hhX\http://docs.python.org/library/email.message.html#email.message.Message.get_content_maintypeX-trFXarray.array.byteswaprF(hhX>http://docs.python.org/library/array.html#array.array.byteswapX-trFX-xml.sax.xmlreader.XMLReader.getEntityResolverrF(hhX`http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.getEntityResolverX-trFXmailbox.Mailbox.unlockrF(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.unlockX-trFXtimeit.Timer.timeitrF(hhX>http://docs.python.org/library/timeit.html#timeit.Timer.timeitX-trFXdecimal.Context.absrF(hhX?http://docs.python.org/library/decimal.html#decimal.Context.absX-trFX object.__ne__rF(hhX=http://docs.python.org/reference/datamodel.html#object.__ne__X-trFXgenerator.closerF(hhXAhttp://docs.python.org/reference/expressions.html#generator.closeX-trFXcurses.window.redrawwinrF(hhXBhttp://docs.python.org/library/curses.html#curses.window.redrawwinX-trFXshlex.shlex.pop_sourcerF(hhX@http://docs.python.org/library/shlex.html#shlex.shlex.pop_sourceX-trFX1xml.sax.handler.ContentHandler.startPrefixMappingrF(hhXehttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.startPrefixMappingX-trFXdecimal.Context.is_infiniterF(hhXGhttp://docs.python.org/library/decimal.html#decimal.Context.is_infiniteX-trFXhmac.HMAC.updaterF(hhX9http://docs.python.org/library/hmac.html#hmac.HMAC.updateX-trFXaifc.aifc.setcomptyperF(hhX>http://docs.python.org/library/aifc.html#aifc.aifc.setcomptypeX-trFX bdb.Bdb.resetrF(hhX5http://docs.python.org/library/bdb.html#bdb.Bdb.resetX-trFXQueue.Queue.qsizerF(hhX;http://docs.python.org/library/queue.html#Queue.Queue.qsizeX-trFX%ConfigParser.RawConfigParser.getfloatrG(hhXVhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.getfloatX-trGXmailbox.Mailbox.get_stringrG(hhXFhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.get_stringX-trGX file.tellrG(hhX6http://docs.python.org/library/stdtypes.html#file.tellX-trGX imputil.BuiltinImporter.get_coderG(hhXLhttp://docs.python.org/library/imputil.html#imputil.BuiltinImporter.get_codeX-trGXttk.Treeview.prevrG(hhX9http://docs.python.org/library/ttk.html#ttk.Treeview.prevX-tr GX!symtable.SymbolTable.get_childrenr G(hhXNhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_childrenX-tr GXxml.dom.Element.setAttributeNSr G(hhXJhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.setAttributeNSX-tr GXre.MatchObject.spanrG(hhX:http://docs.python.org/library/re.html#re.MatchObject.spanX-trGX"ossaudiodev.oss_audio_device.writerG(hhXRhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.writeX-trGX4distutils.ccompiler.CCompiler.shared_object_filenamerG(hhXahttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.shared_object_filenameX-trGXgettext.GNUTranslations.gettextrG(hhXKhttp://docs.python.org/library/gettext.html#gettext.GNUTranslations.gettextX-trGX%xml.dom.Document.getElementsByTagNamerG(hhXQhttp://docs.python.org/library/xml.dom.html#xml.dom.Document.getElementsByTagNameX-trGX#unittest.TestCase.defaultTestResultrG(hhXPhttp://docs.python.org/library/unittest.html#unittest.TestCase.defaultTestResultX-trGXunittest.TestCase.setUpClassrG(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestCase.setUpClassX-trGXemail.header.Header.encoderG(hhXKhttp://docs.python.org/library/email.header.html#email.header.Header.encodeX-trGXsunau.AU_write.setparamsrG(hhXBhttp://docs.python.org/library/sunau.html#sunau.AU_write.setparamsX-trGXfl.form.add_boxr G(hhX6http://docs.python.org/library/fl.html#fl.form.add_boxX-tr!GXdatetime.tzinfo.tznamer"G(hhXChttp://docs.python.org/library/datetime.html#datetime.tzinfo.tznameX-tr#GXobject.__setslice__r$G(hhXChttp://docs.python.org/reference/datamodel.html#object.__setslice__X-tr%GXstr.expandtabsr&G(hhX;http://docs.python.org/library/stdtypes.html#str.expandtabsX-tr'GXjson.JSONEncoder.iterencoder(G(hhXDhttp://docs.python.org/library/json.html#json.JSONEncoder.iterencodeX-tr)GXcurses.window.attroffr*G(hhX@http://docs.python.org/library/curses.html#curses.window.attroffX-tr+GX+FrameWork.ScrolledWindow.scrollbar_callbackr,G(hhXYhttp://docs.python.org/library/framework.html#FrameWork.ScrolledWindow.scrollbar_callbackX-tr-GXttk.Treeview.insertr.G(hhX;http://docs.python.org/library/ttk.html#ttk.Treeview.insertX-tr/GXpstats.Stats.print_statsr0G(hhXDhttp://docs.python.org/library/profile.html#pstats.Stats.print_statsX-tr1GXrexec.RExec.r_importr2G(hhX>http://docs.python.org/library/rexec.html#rexec.RExec.r_importX-tr3GXCookie.Morsel.setr4G(hhX<http://docs.python.org/library/cookie.html#Cookie.Morsel.setX-tr5GX formatter.formatter.add_hor_ruler6G(hhXNhttp://docs.python.org/library/formatter.html#formatter.formatter.add_hor_ruleX-tr7GXobject.__ipow__r8G(hhX?http://docs.python.org/reference/datamodel.html#object.__ipow__X-tr9GXfl.form.add_menur:G(hhX7http://docs.python.org/library/fl.html#fl.form.add_menuX-tr;GX"doctest.DocTestParser.get_examplesrG(hhXHhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.moveX-tr?GXhotshot.Profile.addinfor@G(hhXChttp://docs.python.org/library/hotshot.html#hotshot.Profile.addinfoX-trAGXtelnetlib.Telnet.interactrBG(hhXGhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.interactX-trCGXsocket.socket.sendtorDG(hhX?http://docs.python.org/library/socket.html#socket.socket.sendtoX-trEGXbsddb.bsddbobject.previousrFG(hhXDhttp://docs.python.org/library/bsddb.html#bsddb.bsddbobject.previousX-trGGXobject.__truediv__rHG(hhXBhttp://docs.python.org/reference/datamodel.html#object.__truediv__X-trIGX/xml.sax.handler.ContentHandler.endPrefixMappingrJG(hhXchttp://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.endPrefixMappingX-trKGX symtable.SymbolTable.get_symbolsrLG(hhXMhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_symbolsX-trMGX)weakref.WeakValueDictionary.itervaluerefsrNG(hhXUhttp://docs.python.org/library/weakref.html#weakref.WeakValueDictionary.itervaluerefsX-trOGX!zipimport.zipimporter.load_modulerPG(hhXOhttp://docs.python.org/library/zipimport.html#zipimport.zipimporter.load_moduleX-trQGX+xml.parsers.expat.xmlparser.GetInputContextrRG(hhXWhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.GetInputContextX-trSGX%xml.sax.xmlreader.Attributes.getValuerTG(hhXXhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Attributes.getValueX-trUGXnntplib.NNTP.getwelcomerVG(hhXChttp://docs.python.org/library/nntplib.html#nntplib.NNTP.getwelcomeX-trWGXcurses.window.standendrXG(hhXAhttp://docs.python.org/library/curses.html#curses.window.standendX-trYGXcurses.window.instrrZG(hhX>http://docs.python.org/library/curses.html#curses.window.instrX-tr[GXthreading.Condition.notify_allr\G(hhXLhttp://docs.python.org/library/threading.html#threading.Condition.notify_allX-tr]GX1cookielib.DefaultCookiePolicy.set_blocked_domainsr^G(hhX_http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.set_blocked_domainsX-tr_GX dict.popitemr`G(hhX9http://docs.python.org/library/stdtypes.html#dict.popitemX-traGX*ConfigParser.RawConfigParser.remove_optionrbG(hhX[http://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.remove_optionX-trcGXrfc822.AddressList.__str__rdG(hhXEhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.__str__X-treGXcurses.window.overwriterfG(hhXBhttp://docs.python.org/library/curses.html#curses.window.overwriteX-trgGXcurses.window.untouchwinrhG(hhXChttp://docs.python.org/library/curses.html#curses.window.untouchwinX-triGXposixfile.posixfile.flagsrjG(hhXGhttp://docs.python.org/library/posixfile.html#posixfile.posixfile.flagsX-trkGX#optparse.OptionParser.print_versionrlG(hhXPhttp://docs.python.org/library/optparse.html#optparse.OptionParser.print_versionX-trmGXfl.form.add_positionerrnG(hhX=http://docs.python.org/library/fl.html#fl.form.add_positionerX-troGXbdb.Bdb.set_continuerpG(hhX<http://docs.python.org/library/bdb.html#bdb.Bdb.set_continueX-trqGXtelnetlib.Telnet.read_somerrG(hhXHhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_someX-trsGXmhlib.MH.openfolderrtG(hhX=http://docs.python.org/library/mhlib.html#mhlib.MH.openfolderX-truGXdbhash.dbhash.firstrvG(hhX>http://docs.python.org/library/dbhash.html#dbhash.dbhash.firstX-trwGXrepr.Repr.repr1rxG(hhX8http://docs.python.org/library/repr.html#repr.Repr.repr1X-tryGXdatetime.datetime.astimezonerzG(hhXIhttp://docs.python.org/library/datetime.html#datetime.datetime.astimezoneX-tr{GX httplib.HTTPConnection.putheaderr|G(hhXLhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.putheaderX-tr}GXbsddb.bsddbobject.has_keyr~G(hhXChttp://docs.python.org/library/bsddb.html#bsddb.bsddbobject.has_keyX-trGX)xml.dom.pulldom.DOMEventStream.expandNoderG(hhX]http://docs.python.org/library/xml.dom.pulldom.html#xml.dom.pulldom.DOMEventStream.expandNodeX-trGXsunau.AU_write.setnframesrG(hhXChttp://docs.python.org/library/sunau.html#sunau.AU_write.setnframesX-trGXimaplib.IMAP4.lsubrG(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.lsubX-trGXio.BufferedIOBase.readrG(hhX=http://docs.python.org/library/io.html#io.BufferedIOBase.readX-trGX!unittest.TestCase.assertLessEqualrG(hhXNhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertLessEqualX-trGXlogging.Filter.filterrG(hhXAhttp://docs.python.org/library/logging.html#logging.Filter.filterX-trGXmailbox.MaildirMessage.set_daterG(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MaildirMessage.set_dateX-trGXhttplib.HTTPConnection.closerG(hhXHhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.closeX-trGX str.isalpharG(hhX8http://docs.python.org/library/stdtypes.html#str.isalphaX-trGXtarfile.TarInfo.isregrG(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.isregX-trGXbdb.Bdb.runcallrG(hhX7http://docs.python.org/library/bdb.html#bdb.Bdb.runcallX-trGX'wsgiref.handlers.BaseHandler.get_stderrrG(hhXShttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.get_stderrX-trGX"xml.etree.ElementTree.Element.keysrG(hhX\http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.keysX-trGX!mailbox.BabylMessage.remove_labelrG(hhXMhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.remove_labelX-trGu(X"unittest.TestCase.assertItemsEqualrG(hhXOhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertItemsEqualX-trGXlogging.Logger.addFilterrG(hhXDhttp://docs.python.org/library/logging.html#logging.Logger.addFilterX-trGX object.__lt__rG(hhX=http://docs.python.org/reference/datamodel.html#object.__lt__X-trGXobject.__delitem__rG(hhXBhttp://docs.python.org/reference/datamodel.html#object.__delitem__X-trGXobject.__cmp__rG(hhX>http://docs.python.org/reference/datamodel.html#object.__cmp__X-trGX#calendar.Calendar.yeardatescalendarrG(hhXPhttp://docs.python.org/library/calendar.html#calendar.Calendar.yeardatescalendarX-trGXemail.charset.Charset.__eq__rG(hhXNhttp://docs.python.org/library/email.charset.html#email.charset.Charset.__eq__X-trGXpoplib.POP3.getwelcomerG(hhXAhttp://docs.python.org/library/poplib.html#poplib.POP3.getwelcomeX-trGXarray.array.reverserG(hhX=http://docs.python.org/library/array.html#array.array.reverseX-trGX!symtable.SymbolTable.is_optimizedrG(hhXNhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.is_optimizedX-trGXlogging.Handler.filterrG(hhXBhttp://docs.python.org/library/logging.html#logging.Handler.filterX-trGXstring.Formatter.parserG(hhXAhttp://docs.python.org/library/string.html#string.Formatter.parseX-trGX+xml.sax.xmlreader.XMLReader.getErrorHandlerrG(hhX^http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.getErrorHandlerX-trGXimaplib.IMAP4.deleteaclrG(hhXChttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.deleteaclX-trGX6distutils.ccompiler.CCompiler.set_runtime_library_dirsrG(hhXchttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.set_runtime_library_dirsX-trGXsunau.AU_read.rewindrG(hhX>http://docs.python.org/library/sunau.html#sunau.AU_read.rewindX-trGX unittest.TestCase.assertSetEqualrG(hhXMhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertSetEqualX-trGXmultiprocessing.Queue.closerG(hhXOhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Queue.closeX-trGXpoplib.POP3.set_debuglevelrG(hhXEhttp://docs.python.org/library/poplib.html#poplib.POP3.set_debuglevelX-trGX/distutils.ccompiler.CCompiler.create_static_librG(hhX\http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.create_static_libX-trGX slice.indicesrG(hhX=http://docs.python.org/reference/datamodel.html#slice.indicesX-trGX#xml.parsers.expat.xmlparser.GetBaserG(hhXOhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.GetBaseX-trGX#sqlite3.Connection.create_aggregaterG(hhXOhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.create_aggregateX-trGX$sgmllib.SGMLParser.get_starttag_textrG(hhXPhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.get_starttag_textX-trGXftplib.FTP.storbinaryrG(hhX@http://docs.python.org/library/ftplib.html#ftplib.FTP.storbinaryX-trGX#unittest.TextTestRunner._makeResultrG(hhXPhttp://docs.python.org/library/unittest.html#unittest.TextTestRunner._makeResultX-trGXlogging.Handler.formatrG(hhXBhttp://docs.python.org/library/logging.html#logging.Handler.formatX-trGXdifflib.Differ.comparerG(hhXBhttp://docs.python.org/library/difflib.html#difflib.Differ.compareX-trGXimaplib.IMAP4.responserG(hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.responseX-trGXmimetools.Message.getplistrG(hhXHhttp://docs.python.org/library/mimetools.html#mimetools.Message.getplistX-trGXgettext.NullTranslations._parserG(hhXKhttp://docs.python.org/library/gettext.html#gettext.NullTranslations._parseX-trGXcollections.deque.poprG(hhXEhttp://docs.python.org/library/collections.html#collections.deque.popX-trGXobject.__setattr__rG(hhXBhttp://docs.python.org/reference/datamodel.html#object.__setattr__X-trGXdatetime.time.replacerG(hhXBhttp://docs.python.org/library/datetime.html#datetime.time.replaceX-trGXdecimal.Decimal.exprG(hhX?http://docs.python.org/library/decimal.html#decimal.Decimal.expX-trGXio.BufferedIOBase.readintorG(hhXAhttp://docs.python.org/library/io.html#io.BufferedIOBase.readintoX-trGXbdb.Bdb.dispatch_callrG(hhX=http://docs.python.org/library/bdb.html#bdb.Bdb.dispatch_callX-trGXftplib.FTP.ntransfercmdrG(hhXBhttp://docs.python.org/library/ftplib.html#ftplib.FTP.ntransfercmdX-trGXobject.__div__rG(hhX>http://docs.python.org/reference/datamodel.html#object.__div__X-trGXarray.array.tolistrG(hhX<http://docs.python.org/library/array.html#array.array.tolistX-trGXurllib.URLopener.openrG(hhX@http://docs.python.org/library/urllib.html#urllib.URLopener.openX-trGX'xml.sax.xmlreader.Locator.getLineNumberrG(hhXZhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Locator.getLineNumberX-trGXstr.startswithrG(hhX;http://docs.python.org/library/stdtypes.html#str.startswithX-trGXbdb.Bdb.dispatch_linerG(hhX=http://docs.python.org/library/bdb.html#bdb.Bdb.dispatch_lineX-trGXftplib.FTP.cwdrG(hhX9http://docs.python.org/library/ftplib.html#ftplib.FTP.cwdX-trGXmailbox.MMDF.unlockrG(hhX?http://docs.python.org/library/mailbox.html#mailbox.MMDF.unlockX-trGXMimeWriter.MimeWriter.addheaderrG(hhXNhttp://docs.python.org/library/mimewriter.html#MimeWriter.MimeWriter.addheaderX-trGXdecimal.Decimal.remainder_nearrG(hhXJhttp://docs.python.org/library/decimal.html#decimal.Decimal.remainder_nearX-trGXrfc822.Message.getrG(hhX=http://docs.python.org/library/rfc822.html#rfc822.Message.getX-trGX dl.dl.callrG(hhX1http://docs.python.org/library/dl.html#dl.dl.callX-trGX)logging.handlers.SocketHandler.makeSocketrH(hhX^http://docs.python.org/library/logging.handlers.html#logging.handlers.SocketHandler.makeSocketX-trHX!ConfigParser.RawConfigParser.readrH(hhXRhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.readX-trHXcurses.window.getparyxrH(hhXAhttp://docs.python.org/library/curses.html#curses.window.getparyxX-trHXthreading.Thread.joinrH(hhXChttp://docs.python.org/library/threading.html#threading.Thread.joinX-trHXxdrlib.Unpacker.unpack_stringrH(hhXHhttp://docs.python.org/library/xdrlib.html#xdrlib.Unpacker.unpack_stringX-tr HXnntplib.NNTP.descriptionr H(hhXDhttp://docs.python.org/library/nntplib.html#nntplib.NNTP.descriptionX-tr HX'doctest.OutputChecker.output_differencer H(hhXShttp://docs.python.org/library/doctest.html#doctest.OutputChecker.output_differenceX-tr HXftplib.FTP.transfercmdrH(hhXAhttp://docs.python.org/library/ftplib.html#ftplib.FTP.transfercmdX-trHXwave.Wave_read.getnchannelsrH(hhXDhttp://docs.python.org/library/wave.html#wave.Wave_read.getnchannelsX-trHXwave.Wave_read.getmarkersrH(hhXBhttp://docs.python.org/library/wave.html#wave.Wave_read.getmarkersX-trHXobject.__rmod__rH(hhX?http://docs.python.org/reference/datamodel.html#object.__rmod__X-trHX object.__le__rH(hhX=http://docs.python.org/reference/datamodel.html#object.__le__X-trHXcollections.Counter.updaterH(hhXJhttp://docs.python.org/library/collections.html#collections.Counter.updateX-trHXdecimal.Decimal.sqrtrH(hhX@http://docs.python.org/library/decimal.html#decimal.Decimal.sqrtX-trHXmhlib.Folder.removemessagesrH(hhXEhttp://docs.python.org/library/mhlib.html#mhlib.Folder.removemessagesX-trHXrexec.RExec.r_evalrH(hhX<http://docs.python.org/library/rexec.html#rexec.RExec.r_evalX-trHXpoplib.POP3.retrr H(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.retrX-tr!HX(ConfigParser.RawConfigParser.add_sectionr"H(hhXYhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.add_sectionX-tr#HX set.clearr$H(hhX6http://docs.python.org/library/stdtypes.html#set.clearX-tr%HXcurses.window.mover&H(hhX=http://docs.python.org/library/curses.html#curses.window.moveX-tr'HXttk.Notebook.enable_traversalr(H(hhXEhttp://docs.python.org/library/ttk.html#ttk.Notebook.enable_traversalX-tr)HX-xml.sax.xmlreader.XMLReader.setEntityResolverr*H(hhX`http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setEntityResolverX-tr+HXimputil.ImportManager.uninstallr,H(hhXKhttp://docs.python.org/library/imputil.html#imputil.ImportManager.uninstallX-tr-HX&SocketServer.BaseServer.handle_requestr.H(hhXWhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.handle_requestX-tr/HXttk.Style.theme_user0H(hhX;http://docs.python.org/library/ttk.html#ttk.Style.theme_useX-tr1HXurllib2.Request.get_full_urlr2H(hhXHhttp://docs.python.org/library/urllib2.html#urllib2.Request.get_full_urlX-tr3HXrfc822.Message.getrawheaderr4H(hhXFhttp://docs.python.org/library/rfc822.html#rfc822.Message.getrawheaderX-tr5HXcurses.panel.Panel.topr6H(hhXGhttp://docs.python.org/library/curses.panel.html#curses.panel.Panel.topX-tr7HX#logging.handlers.SysLogHandler.emitr8H(hhXXhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SysLogHandler.emitX-tr9HXlogging.Logger.findCallerr:H(hhXEhttp://docs.python.org/library/logging.html#logging.Logger.findCallerX-tr;HXftplib.FTP_TLS.prot_crH(hhXBhttp://docs.python.org/library/profile.html#profile.Profile.runctxX-tr?HXEasyDialogs.ProgressBar.labelr@H(hhXMhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBar.labelX-trAHXcollections.Counter.most_commonrBH(hhXOhttp://docs.python.org/library/collections.html#collections.Counter.most_commonX-trCHXarray.array.fromlistrDH(hhX>http://docs.python.org/library/array.html#array.array.fromlistX-trEHXttk.Style.lookuprFH(hhX8http://docs.python.org/library/ttk.html#ttk.Style.lookupX-trGHXmhlib.MH.setcontextrHH(hhX=http://docs.python.org/library/mhlib.html#mhlib.MH.setcontextX-trIHX/distutils.ccompiler.CCompiler.find_library_filerJH(hhX\http://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.find_library_fileX-trKHX,xmlrpclib.ServerProxy.system.methodSignaturerLH(hhXZhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ServerProxy.system.methodSignatureX-trMHXmailbox.MH.packrNH(hhX;http://docs.python.org/library/mailbox.html#mailbox.MH.packX-trOHXfractions.Fraction.from_floatrPH(hhXKhttp://docs.python.org/library/fractions.html#fractions.Fraction.from_floatX-trQHXcurses.window.scrollokrRH(hhXAhttp://docs.python.org/library/curses.html#curses.window.scrollokX-trSHXlogging.FileHandler.closerTH(hhXNhttp://docs.python.org/library/logging.handlers.html#logging.FileHandler.closeX-trUHXftplib.FTP.dirrVH(hhX9http://docs.python.org/library/ftplib.html#ftplib.FTP.dirX-trWHX-xml.sax.xmlreader.AttributesNS.getQNameByNamerXH(hhX`http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.AttributesNS.getQNameByNameX-trYHX optparse.OptionParser.add_optionrZH(hhXMhttp://docs.python.org/library/optparse.html#optparse.OptionParser.add_optionX-tr[HXwebbrowser.controller.open_newr\H(hhXMhttp://docs.python.org/library/webbrowser.html#webbrowser.controller.open_newX-tr]HX dict.itemsr^H(hhX7http://docs.python.org/library/stdtypes.html#dict.itemsX-tr_HX$urllib2.HTTPPasswordMgr.add_passwordr`H(hhXPhttp://docs.python.org/library/urllib2.html#urllib2.HTTPPasswordMgr.add_passwordX-traHXlogging.FileHandler.emitrbH(hhXMhttp://docs.python.org/library/logging.handlers.html#logging.FileHandler.emitX-trcHX*logging.handlers.MemoryHandler.shouldFlushrdH(hhX_http://docs.python.org/library/logging.handlers.html#logging.handlers.MemoryHandler.shouldFlushX-treHXasyncore.dispatcher.connectrfH(hhXHhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.connectX-trgHXsmtplib.SMTP.has_extnrhH(hhXAhttp://docs.python.org/library/smtplib.html#smtplib.SMTP.has_extnX-triHX str.lstriprjH(hhX7http://docs.python.org/library/stdtypes.html#str.lstripX-trkHXtelnetlib.Telnet.expectrlH(hhXEhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.expectX-trmHXhmac.HMAC.copyrnH(hhX7http://docs.python.org/library/hmac.html#hmac.HMAC.copyX-troHXhashlib.hash.hexdigestrpH(hhXBhttp://docs.python.org/library/hashlib.html#hashlib.hash.hexdigestX-trqHXftplib.FTP.connectrrH(hhX=http://docs.python.org/library/ftplib.html#ftplib.FTP.connectX-trsHXbz2.BZ2Compressor.flushrtH(hhX?http://docs.python.org/library/bz2.html#bz2.BZ2Compressor.flushX-truHX5distutils.ccompiler.CCompiler.add_runtime_library_dirrvH(hhXbhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.add_runtime_library_dirX-trwHXsqlite3.Cursor.executescriptrxH(hhXHhttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.executescriptX-tryHX$xml.etree.ElementTree.Element.appendrzH(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.appendX-tr{HXmsilib.Control.conditionr|H(hhXChttp://docs.python.org/library/msilib.html#msilib.Control.conditionX-tr}HXargparse.ArgumentParser.errorr~H(hhXJhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.errorX-trHXdecimal.Decimal.logical_invertrH(hhXJhttp://docs.python.org/library/decimal.html#decimal.Decimal.logical_invertX-trHXunittest.TestSuite.runrH(hhXChttp://docs.python.org/library/unittest.html#unittest.TestSuite.runX-trHXarray.array.tostringrH(hhX>http://docs.python.org/library/array.html#array.array.tostringX-trHXdecimal.Context.create_decimalrH(hhXJhttp://docs.python.org/library/decimal.html#decimal.Context.create_decimalX-trHXttk.Treeview.yviewrH(hhX:http://docs.python.org/library/ttk.html#ttk.Treeview.yviewX-trHXurllib.URLopener.retrieverH(hhXDhttp://docs.python.org/library/urllib.html#urllib.URLopener.retrieveX-trHXhtmllib.HTMLParser.save_endrH(hhXGhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.save_endX-trHXsymtable.Symbol.get_namespacesrH(hhXKhttp://docs.python.org/library/symtable.html#symtable.Symbol.get_namespacesX-trHXdoctest.DocTestFinder.findrH(hhXFhttp://docs.python.org/library/doctest.html#doctest.DocTestFinder.findX-trHX SocketServer.BaseServer.shutdownrH(hhXQhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.shutdownX-trHXformatter.writer.flushrH(hhXDhttp://docs.python.org/library/formatter.html#formatter.writer.flushX-trHXthreading.RLock.releaserH(hhXEhttp://docs.python.org/library/threading.html#threading.RLock.releaseX-trHX(argparse.ArgumentParser.parse_known_argsrH(hhXUhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.parse_known_argsX-trHXlogging.Handler.acquirerH(hhXChttp://docs.python.org/library/logging.html#logging.Handler.acquireX-trHX pprint.PrettyPrinter.isrecursiverH(hhXKhttp://docs.python.org/library/pprint.html#pprint.PrettyPrinter.isrecursiveX-trHXdecimal.Context.is_finiterH(hhXEhttp://docs.python.org/library/decimal.html#decimal.Context.is_finiteX-trHXobject.__unicode__rH(hhXBhttp://docs.python.org/reference/datamodel.html#object.__unicode__X-trHXfractions.Fraction.from_decimalrH(hhXMhttp://docs.python.org/library/fractions.html#fractions.Fraction.from_decimalX-trHXimaplib.IMAP4.closerH(hhX?http://docs.python.org/library/imaplib.html#imaplib.IMAP4.closeX-trHXmhlib.MH.errorrH(hhX8http://docs.python.org/library/mhlib.html#mhlib.MH.errorX-trHXcurses.window.keypadrH(hhX?http://docs.python.org/library/curses.html#curses.window.keypadX-trHXdatetime.datetime.utcoffsetrH(hhXHhttp://docs.python.org/library/datetime.html#datetime.datetime.utcoffsetX-trHX$xml.etree.ElementTree.Element.removerH(hhX^http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.removeX-trHXxml.dom.minidom.Node.writexmlrH(hhXQhttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.Node.writexmlX-trHX(urllib.FancyURLopener.prompt_user_passwdrH(hhXShttp://docs.python.org/library/urllib.html#urllib.FancyURLopener.prompt_user_passwdX-trHXcgi.FieldStorage.getfirstrH(hhXAhttp://docs.python.org/library/cgi.html#cgi.FieldStorage.getfirstX-trHXftplib.FTP.rmdrH(hhX9http://docs.python.org/library/ftplib.html#ftplib.FTP.rmdX-trHXsymtable.SymbolTable.is_nestedrH(hhXKhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.is_nestedX-trHXabc.ABCMeta.__subclasshook__rH(hhXDhttp://docs.python.org/library/abc.html#abc.ABCMeta.__subclasshook__X-trHXemail.message.Message.del_paramrH(hhXQhttp://docs.python.org/library/email.message.html#email.message.Message.del_paramX-trHXnntplib.NNTP.descriptionsrH(hhXEhttp://docs.python.org/library/nntplib.html#nntplib.NNTP.descriptionsX-trHXlogging.Logger.handlerH(hhXAhttp://docs.python.org/library/logging.html#logging.Logger.handleX-trHXcurses.window.getyxrH(hhX>http://docs.python.org/library/curses.html#curses.window.getyxX-trHXtelnetlib.Telnet.closerH(hhXDhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.closeX-trHX)multiprocessing.managers.SyncManager.LockrH(hhX]http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.LockX-trHXre.RegexObject.searchrH(hhX<http://docs.python.org/library/re.html#re.RegexObject.searchX-trHXsymtable.SymbolTable.get_namerH(hhXJhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_nameX-trHX)imputil.DynLoadSuffixImporter.import_filerH(hhXUhttp://docs.python.org/library/imputil.html#imputil.DynLoadSuffixImporter.import_fileX-trHXbdb.Bdb.dispatch_returnrH(hhX?http://docs.python.org/library/bdb.html#bdb.Bdb.dispatch_returnX-trHX"ConfigParser.RawConfigParser.itemsrH(hhXShttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.itemsX-trHXre.RegexObject.findallrH(hhX=http://docs.python.org/library/re.html#re.RegexObject.findallX-trHXhtmllib.HTMLParser.anchor_endrH(hhXIhttp://docs.python.org/library/htmllib.html#htmllib.HTMLParser.anchor_endX-trHXftplib.FTP.voidcmdrH(hhX=http://docs.python.org/library/ftplib.html#ftplib.FTP.voidcmdX-trHXimaplib.IMAP4.shutdownrH(hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.shutdownX-trHXdbhash.dbhash.previousrH(hhXAhttp://docs.python.org/library/dbhash.html#dbhash.dbhash.previousX-trHX'ossaudiodev.oss_mixer_device.get_recsrcrH(hhXWhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.get_recsrcX-trHXmailbox.MH.remove_folderrH(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.MH.remove_folderX-trHXcurses.window.setscrregrH(hhXBhttp://docs.python.org/library/curses.html#curses.window.setscrregX-trHXimp.NullImporter.find_modulerH(hhXDhttp://docs.python.org/library/imp.html#imp.NullImporter.find_moduleX-trHX4xml.parsers.expat.xmlparser.ExternalEntityRefHandlerrH(hhX`http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ExternalEntityRefHandlerX-trHX-multiprocessing.managers.BaseManager.registerrH(hhXahttp://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseManager.registerX-trHXttk.Treeview.tag_hasrH(hhX<http://docs.python.org/library/ttk.html#ttk.Treeview.tag_hasX-trHXdict.viewvaluesrH(hhX<http://docs.python.org/library/stdtypes.html#dict.viewvaluesX-trHXobject.__rdivmod__rH(hhXBhttp://docs.python.org/reference/datamodel.html#object.__rdivmod__X-trHXfl.form.add_choicerH(hhX9http://docs.python.org/library/fl.html#fl.form.add_choiceX-trHXsocket.socket.acceptrH(hhX?http://docs.python.org/library/socket.html#socket.socket.acceptX-trHXurllib2.Request.has_headerrH(hhXFhttp://docs.python.org/library/urllib2.html#urllib2.Request.has_headerX-trHXio.BufferedIOBase.writerH(hhX>http://docs.python.org/library/io.html#io.BufferedIOBase.writeX-trHX%cookielib.CookieJar.add_cookie_headerrH(hhXShttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.add_cookie_headerX-trHX symtable.Function.get_parametersrH(hhXMhttp://docs.python.org/library/symtable.html#symtable.Function.get_parametersX-trHXsocket.socket.sendrH(hhX=http://docs.python.org/library/socket.html#socket.socket.sendX-trHX&xml.etree.ElementTree.ElementTree.iterrH(hhX`http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.iterX-trHXtarfile.TarFile.nextrH(hhX@http://docs.python.org/library/tarfile.html#tarfile.TarFile.nextX-trHX"ossaudiodev.oss_audio_device.resetrH(hhXRhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.resetX-trHX)xml.etree.ElementTree.Element.getchildrenrI(hhXchttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.getchildrenX-trIXasyncore.dispatcher.handle_exptrI(hhXLhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_exptX-trIX msilib.Directory.start_componentrI(hhXKhttp://docs.python.org/library/msilib.html#msilib.Directory.start_componentX-trIXxml.dom.minidom.Node.cloneNoderI(hhXRhttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.Node.cloneNodeX-trIXio.IOBase.readlinerI(hhX9http://docs.python.org/library/io.html#io.IOBase.readlineX-tr IXpdb.Pdb.runevalr I(hhX7http://docs.python.org/library/pdb.html#pdb.Pdb.runevalX-tr IXcurses.window.getbkgdr I(hhX@http://docs.python.org/library/curses.html#curses.window.getbkgdX-tr IX#ossaudiodev.oss_audio_device.setfmtrI(hhXShttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.setfmtX-trIX/xml.parsers.expat.xmlparser.StartElementHandlerrI(hhX[http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.StartElementHandlerX-trIXimaplib.IMAP4.logoutrI(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.logoutX-trIXmhlib.MH.getpathrI(hhX:http://docs.python.org/library/mhlib.html#mhlib.MH.getpathX-trIXthreading.RLock.acquirerI(hhXEhttp://docs.python.org/library/threading.html#threading.RLock.acquireX-trIXxml.dom.NodeList.itemrI(hhXAhttp://docs.python.org/library/xml.dom.html#xml.dom.NodeList.itemX-trIXCookie.Morsel.outputrI(hhX?http://docs.python.org/library/cookie.html#Cookie.Morsel.outputX-trIX)unittest.TestLoader.loadTestsFromTestCaserI(hhXVhttp://docs.python.org/library/unittest.html#unittest.TestLoader.loadTestsFromTestCaseX-trIXemail.generator.Generator.clonerI(hhXShttp://docs.python.org/library/email.generator.html#email.generator.Generator.cloneX-trIXobject.__index__r I(hhX@http://docs.python.org/reference/datamodel.html#object.__index__X-tr!IXttk.Style.theme_namesr"I(hhX=http://docs.python.org/library/ttk.html#ttk.Style.theme_namesX-tr#IXsymtable.SymbolTable.get_typer$I(hhXJhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_typeX-tr%IX%xml.sax.xmlreader.Locator.getSystemIdr&I(hhXXhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Locator.getSystemIdX-tr'IXunittest.TestCase.assertTruer(I(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertTrueX-tr)IXio.IOBase.writelinesr*I(hhX;http://docs.python.org/library/io.html#io.IOBase.writelinesX-tr+IX&xml.sax.xmlreader.XMLReader.setFeaturer,I(hhXYhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setFeatureX-tr-IX3BaseHTTPServer.BaseHTTPRequestHandler.send_responser.I(hhXfhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.send_responseX-tr/IXasynchat.async_chat.pushr0I(hhXEhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.pushX-tr1IXcodecs.StreamReader.readlinesr2I(hhXHhttp://docs.python.org/library/codecs.html#codecs.StreamReader.readlinesX-tr3IXemail.message.Message.valuesr4I(hhXNhttp://docs.python.org/library/email.message.html#email.message.Message.valuesX-tr5IXformatter.writer.send_hor_ruler6I(hhXLhttp://docs.python.org/library/formatter.html#formatter.writer.send_hor_ruleX-tr7IX!FrameWork.Application.asynceventsr8I(hhXOhttp://docs.python.org/library/framework.html#FrameWork.Application.asynceventsX-tr9IX str.rindexr:I(hhX7http://docs.python.org/library/stdtypes.html#str.rindexX-tr;IXcmd.Cmd.completedefaultrI(hhX<http://docs.python.org/library/sunau.html#sunau.AU_read.tellX-tr?IX"distutils.text_file.TextFile.closer@I(hhXOhttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFile.closeX-trAIXimaplib.IMAP4.myrightsrBI(hhXBhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.myrightsX-trCIXpoplib.POP3.delerDI(hhX;http://docs.python.org/library/poplib.html#poplib.POP3.deleX-trEIXmailbox.MMDFMessage.set_fromrFI(hhXHhttp://docs.python.org/library/mailbox.html#mailbox.MMDFMessage.set_fromX-trGIX,distutils.ccompiler.CCompiler.undefine_macrorHI(hhXYhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.undefine_macroX-trIIX&wsgiref.handlers.BaseHandler.get_stdinrJI(hhXRhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.get_stdinX-trKIXaifc.aifc.setnframesrLI(hhX=http://docs.python.org/library/aifc.html#aifc.aifc.setnframesX-trMIXmsilib.Database.CommitrNI(hhXAhttp://docs.python.org/library/msilib.html#msilib.Database.CommitX-trOIXio.RawIOBase.readallrPI(hhX;http://docs.python.org/library/io.html#io.RawIOBase.readallX-trQIX*logging.handlers.SysLogHandler.mapPriorityrRI(hhX_http://docs.python.org/library/logging.handlers.html#logging.handlers.SysLogHandler.mapPriorityX-trSIXwave.Wave_read.rewindrTI(hhX>http://docs.python.org/library/wave.html#wave.Wave_read.rewindX-trUIXdecimal.Context.plusrVI(hhX@http://docs.python.org/library/decimal.html#decimal.Context.plusX-trWIXcodecs.Codec.decoderXI(hhX>http://docs.python.org/library/codecs.html#codecs.Codec.decodeX-trYIX%xml.etree.ElementTree.XMLParser.closerZI(hhX_http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.XMLParser.closeX-tr[IX$compiler.visitor.ASTVisitor.preorderr\I(hhXQhttp://docs.python.org/library/compiler.html#compiler.visitor.ASTVisitor.preorderX-tr]IX*xml.sax.handler.ContentHandler.endDocumentr^I(hhX^http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.endDocumentX-tr_IXimaplib.IMAP4.threadr`I(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.threadX-traIXsqlite3.Cursor.executemanyrbI(hhXFhttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.executemanyX-trcIXdecimal.Decimal.minrdI(hhX?http://docs.python.org/library/decimal.html#decimal.Decimal.minX-treIXdbhash.dbhash.lastrfI(hhX=http://docs.python.org/library/dbhash.html#dbhash.dbhash.lastX-trgIXimaplib.IMAP4.recentrhI(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.recentX-triIXttk.Notebook.forgetrjI(hhX;http://docs.python.org/library/ttk.html#ttk.Notebook.forgetX-trkIXselect.epoll.modifyrlI(hhX>http://docs.python.org/library/select.html#select.epoll.modifyX-trmIX FrameWork.Window.do_contentclickrnI(hhXNhttp://docs.python.org/library/framework.html#FrameWork.Window.do_contentclickX-troIXsubprocess.Popen.killrpI(hhXDhttp://docs.python.org/library/subprocess.html#subprocess.Popen.killX-trqIXzlib.Compress.compressrrI(hhX?http://docs.python.org/library/zlib.html#zlib.Compress.compressX-trsIX!formatter.formatter.end_paragraphrtI(hhXOhttp://docs.python.org/library/formatter.html#formatter.formatter.end_paragraphX-truIXdecimal.Decimal.radixrvI(hhXAhttp://docs.python.org/library/decimal.html#decimal.Decimal.radixX-trwIX%multiprocessing.Connection.send_bytesrxI(hhXYhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.send_bytesX-tryIX"asynchat.async_chat.set_terminatorrzI(hhXOhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.set_terminatorX-tr{IXttk.Treeview.parentr|I(hhX;http://docs.python.org/library/ttk.html#ttk.Treeview.parentX-tr}IXshelve.Shelf.closer~I(hhX=http://docs.python.org/library/shelve.html#shelve.Shelf.closeX-trIXdatetime.tzinfo.fromutcrI(hhXDhttp://docs.python.org/library/datetime.html#datetime.tzinfo.fromutcX-trIXdbhash.dbhash.syncrI(hhX=http://docs.python.org/library/dbhash.html#dbhash.dbhash.syncX-trIXcurses.window.touchwinrI(hhXAhttp://docs.python.org/library/curses.html#curses.window.touchwinX-trIXwave.Wave_read.getcomptyperI(hhXChttp://docs.python.org/library/wave.html#wave.Wave_read.getcomptypeX-trIX.logging.handlers.TimedRotatingFileHandler.emitrI(hhXchttp://docs.python.org/library/logging.handlers.html#logging.handlers.TimedRotatingFileHandler.emitX-trIXmailbox.Babyl.unlockrI(hhX@http://docs.python.org/library/mailbox.html#mailbox.Babyl.unlockX-trIX*distutils.ccompiler.CCompiler.define_macrorI(hhXWhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.define_macroX-trIXcollections.deque.removerI(hhXHhttp://docs.python.org/library/collections.html#collections.deque.removeX-trIXmimetools.Message.getencodingrI(hhXKhttp://docs.python.org/library/mimetools.html#mimetools.Message.getencodingX-trIXpoplib.POP3.pass_rI(hhX<http://docs.python.org/library/poplib.html#poplib.POP3.pass_X-trIX str.centerrI(hhX7http://docs.python.org/library/stdtypes.html#str.centerX-trIXsunau.AU_write.setsampwidthrI(hhXEhttp://docs.python.org/library/sunau.html#sunau.AU_write.setsampwidthX-trIXcurses.textpad.Textbox.editrI(hhXFhttp://docs.python.org/library/curses.html#curses.textpad.Textbox.editX-trIX-cookielib.DefaultCookiePolicy.allowed_domainsrI(hhX[http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.allowed_domainsX-trIXfl.form.add_textrI(hhX7http://docs.python.org/library/fl.html#fl.form.add_textX-trIXunittest.TestCase.skipTestrI(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestCase.skipTestX-trIX-xml.sax.xmlreader.AttributesNS.getNameByQNamerI(hhX`http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.AttributesNS.getNameByQNameX-trIXdecimal.Decimal.rotaterI(hhXBhttp://docs.python.org/library/decimal.html#decimal.Decimal.rotateX-trIX#sqlite3.Connection.create_collationrI(hhXOhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.create_collationX-trIXlogging.Handler.removeFilterrI(hhXHhttp://docs.python.org/library/logging.html#logging.Handler.removeFilterX-trIX#wsgiref.handlers.BaseHandler._writerI(hhXOhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler._writeX-trIX#email.charset.Charset.to_splittablerI(hhXUhttp://docs.python.org/library/email.charset.html#email.charset.Charset.to_splittableX-trIXmhlib.Folder.getcurrentrI(hhXAhttp://docs.python.org/library/mhlib.html#mhlib.Folder.getcurrentX-trIXzipfile.ZipFile.closerI(hhXAhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.closeX-trIX:DocXMLRPCServer.DocCGIXMLRPCRequestHandler.set_server_namerI(hhXnhttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocCGIXMLRPCRequestHandler.set_server_nameX-trIXdecimal.Decimal.is_signedrI(hhXEhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_signedX-trIXttk.Treeview.identify_regionrI(hhXDhttp://docs.python.org/library/ttk.html#ttk.Treeview.identify_regionX-trIX gettext.GNUTranslations.ngettextrI(hhXLhttp://docs.python.org/library/gettext.html#gettext.GNUTranslations.ngettextX-trIX#argparse.ArgumentParser.get_defaultrI(hhXPhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.get_defaultX-trIX file.writerI(hhX7http://docs.python.org/library/stdtypes.html#file.writeX-trIX"optparse.OptionParser.set_defaultsrI(hhXOhttp://docs.python.org/library/optparse.html#optparse.OptionParser.set_defaultsX-trIX)xml.sax.xmlreader.Locator.getColumnNumberrI(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Locator.getColumnNumberX-trIX5xml.parsers.expat.xmlparser.UnparsedEntityDeclHandlerrI(hhXahttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.UnparsedEntityDeclHandlerX-trIXaifc.aifc.setnchannelsrI(hhX?http://docs.python.org/library/aifc.html#aifc.aifc.setnchannelsX-trIX formatter.writer.send_label_datarI(hhXNhttp://docs.python.org/library/formatter.html#formatter.writer.send_label_dataX-trIX mmap.flushrI(hhX3http://docs.python.org/library/mmap.html#mmap.flushX-trIXsocket.socket.recvrI(hhX=http://docs.python.org/library/socket.html#socket.socket.recvX-trIXunittest.TestCase.assertEqualrI(hhXJhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertEqualX-trIXtarfile.TarFile.extractallrI(hhXFhttp://docs.python.org/library/tarfile.html#tarfile.TarFile.extractallX-trIX'xml.sax.xmlreader.XMLReader.getPropertyrI(hhXZhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.getPropertyX-trIX(distutils.cmd.Command.initialize_optionsrI(hhXUhttp://docs.python.org/distutils/apiref.html#distutils.cmd.Command.initialize_optionsX-trIXmutex.mutex.testrI(hhX:http://docs.python.org/library/mutex.html#mutex.mutex.testX-trIXmhlib.Message.openmessagerI(hhXChttp://docs.python.org/library/mhlib.html#mhlib.Message.openmessageX-trIXzipfile.ZipFile.printdirrI(hhXDhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.printdirX-trIXttk.Treeview.xviewrI(hhX:http://docs.python.org/library/ttk.html#ttk.Treeview.xviewX-trIXbdb.Bdb.runevalrI(hhX7http://docs.python.org/library/bdb.html#bdb.Bdb.runevalX-trIXurllib2.Request.set_proxyrI(hhXEhttp://docs.python.org/library/urllib2.html#urllib2.Request.set_proxyX-trIXsymtable.Function.get_freesrI(hhXHhttp://docs.python.org/library/symtable.html#symtable.Function.get_freesX-trIX"doctest.DocTestRunner.report_startrI(hhXNhttp://docs.python.org/library/doctest.html#doctest.DocTestRunner.report_startX-trIX!email.generator.Generator.flattenrI(hhXUhttp://docs.python.org/library/email.generator.html#email.generator.Generator.flattenX-trIXselect.kqueue.controlrI(hhX@http://docs.python.org/library/select.html#select.kqueue.controlX-trIX+difflib.SequenceMatcher.get_grouped_opcodesrI(hhXWhttp://docs.python.org/library/difflib.html#difflib.SequenceMatcher.get_grouped_opcodesX-trIX!logging.handlers.SMTPHandler.emitrI(hhXVhttp://docs.python.org/library/logging.handlers.html#logging.handlers.SMTPHandler.emitX-trIX#xml.etree.ElementTree.Element.itemsrI(hhX]http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.itemsX-trIX+distutils.ccompiler.CCompiler.set_librariesrI(hhXXhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.set_librariesX-trIXxml.dom.Element.setAttributerI(hhXHhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.setAttributeX-trIXttk.Widget.identifyrI(hhX;http://docs.python.org/library/ttk.html#ttk.Widget.identifyX-trIXCookie.BaseCookie.outputrI(hhXChttp://docs.python.org/library/cookie.html#Cookie.BaseCookie.outputX-trIXre.RegexObject.finditerrI(hhX>http://docs.python.org/library/re.html#re.RegexObject.finditerX-trIXast.NodeVisitor.generic_visitrI(hhXEhttp://docs.python.org/library/ast.html#ast.NodeVisitor.generic_visitX-trIX&xml.etree.ElementTree.Element.findtextrI(hhX`http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.findtextX-trIXio.TextIOBase.tellrI(hhX9http://docs.python.org/library/io.html#io.TextIOBase.tellX-trIXxdrlib.Packer.pack_farrayrI(hhXDhttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_farrayX-trIX wsgiref.handlers.BaseHandler.runrI(hhXLhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.runX-trIX asyncore.dispatcher.handle_writerJ(hhXMhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_writeX-trJXobject.__itruediv__rJ(hhXChttp://docs.python.org/reference/datamodel.html#object.__itruediv__X-trJXurlparse.ParseResult.geturlrJ(hhXHhttp://docs.python.org/library/urlparse.html#urlparse.ParseResult.geturlX-trJX1cookielib.DefaultCookiePolicy.set_allowed_domainsrJ(hhX_http://docs.python.org/library/cookielib.html#cookielib.DefaultCookiePolicy.set_allowed_domainsX-trJXcollections.Counter.fromkeysrJ(hhXLhttp://docs.python.org/library/collections.html#collections.Counter.fromkeysX-tr JXsmtplib.SMTP.ehlor J(hhX=http://docs.python.org/library/smtplib.html#smtplib.SMTP.ehloX-tr JX/multiprocessing.pool.multiprocessing.Pool.closer J(hhXchttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.closeX-tr JX'ConfigParser.RawConfigParser.has_optionrJ(hhXXhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.has_optionX-trJXurllib2.BaseHandler.closerJ(hhXEhttp://docs.python.org/library/urllib2.html#urllib2.BaseHandler.closeX-trJX)xml.sax.xmlreader.IncrementalParser.resetrJ(hhX\http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.IncrementalParser.resetX-trJX+multiprocessing.managers.BaseProxy.__repr__rJ(hhX_http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.BaseProxy.__repr__X-trJXmultiprocessing.Process.runrJ(hhXOhttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.runX-trJXttk.Treeview.setrJ(hhX8http://docs.python.org/library/ttk.html#ttk.Treeview.setX-trJX%ossaudiodev.oss_mixer_device.controlsrJ(hhXUhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_mixer_device.controlsX-trJX$cookielib.CookieJar.set_cookie_if_okrJ(hhXRhttp://docs.python.org/library/cookielib.html#cookielib.CookieJar.set_cookie_if_okX-trJXposixfile.posixfile.lockrJ(hhXFhttp://docs.python.org/library/posixfile.html#posixfile.posixfile.lockX-trJXsunau.AU_read.closer J(hhX=http://docs.python.org/library/sunau.html#sunau.AU_read.closeX-tr!JXstr.capitalizer"J(hhX;http://docs.python.org/library/stdtypes.html#str.capitalizeX-tr#JXmailbox.MMDF.get_filer$J(hhXAhttp://docs.python.org/library/mailbox.html#mailbox.MMDF.get_fileX-tr%JX(xml.sax.xmlreader.AttributesNS.getQNamesr&J(hhX[http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.AttributesNS.getQNamesX-tr'JX/wsgiref.simple_server.WSGIRequestHandler.handler(J(hhX[http://docs.python.org/library/wsgiref.html#wsgiref.simple_server.WSGIRequestHandler.handleX-tr)JXdecimal.Decimal.is_infiniter*J(hhXGhttp://docs.python.org/library/decimal.html#decimal.Decimal.is_infiniteX-tr+JXcurses.window.subpadr,J(hhX?http://docs.python.org/library/curses.html#curses.window.subpadX-tr-JXsymtable.SymbolTable.get_linenor.J(hhXLhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_linenoX-tr/JXdatetime.datetime.ctimer0J(hhXDhttp://docs.python.org/library/datetime.html#datetime.datetime.ctimeX-tr1JXtarfile.TarInfo.isblkr2J(hhXAhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.isblkX-tr3JXunittest.TestCase.tearDownClassr4J(hhXLhttp://docs.python.org/library/unittest.html#unittest.TestCase.tearDownClassX-tr5JXdatetime.datetime.timetzr6J(hhXEhttp://docs.python.org/library/datetime.html#datetime.datetime.timetzX-tr7JX$symtable.SymbolTable.get_identifiersr8J(hhXQhttp://docs.python.org/library/symtable.html#symtable.SymbolTable.get_identifiersX-tr9JXtrace.Trace.runctxr:J(hhX<http://docs.python.org/library/trace.html#trace.Trace.runctxX-tr;JXxml.dom.Node.removeChildrJ(hhX7http://docs.python.org/library/mmap.html#mmap.read_byteX-tr?JXbdb.Bdb.runctxr@J(hhX6http://docs.python.org/library/bdb.html#bdb.Bdb.runctxX-trAJX*xml.parsers.expat.xmlparser.CommentHandlerrBJ(hhXVhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.CommentHandlerX-trCJX#xml.dom.Element.removeAttributeNoderDJ(hhXOhttp://docs.python.org/library/xml.dom.html#xml.dom.Element.removeAttributeNodeX-trEJX'xml.etree.ElementTree.TreeBuilder.closerFJ(hhXahttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.TreeBuilder.closeX-trGJXemail.header.Header.__str__rHJ(hhXLhttp://docs.python.org/library/email.header.html#email.header.Header.__str__X-trIJXmailbox.Mailbox.__delitem__rJJ(hhXGhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.__delitem__X-trKJXmailbox.Maildir.unlockrLJ(hhXBhttp://docs.python.org/library/mailbox.html#mailbox.Maildir.unlockX-trMJXmailbox.Mailbox.__getitem__rNJ(hhXGhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.__getitem__X-trOJX!distutils.text_file.TextFile.openrPJ(hhXNhttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFile.openX-trQJX(xmlrpclib.ServerProxy.system.listMethodsrRJ(hhXVhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.ServerProxy.system.listMethodsX-trSJXsunau.AU_write.setnchannelsrTJ(hhXEhttp://docs.python.org/library/sunau.html#sunau.AU_write.setnchannelsX-trUJXzipfile.ZipFile.openrVJ(hhX@http://docs.python.org/library/zipfile.html#zipfile.ZipFile.openX-trWJX$unittest.TestCase.assertRaisesRegexprXJ(hhXQhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertRaisesRegexpX-trYJXabc.ABCMeta.registerrZJ(hhX<http://docs.python.org/library/abc.html#abc.ABCMeta.registerX-tr[JXsocket.socket.shutdownr\J(hhXAhttp://docs.python.org/library/socket.html#socket.socket.shutdownX-tr]JX-multiprocessing.pool.multiprocessing.Pool.mapr^J(hhXahttp://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.mapX-tr_JX'email.charset.Charset.get_body_encodingr`J(hhXYhttp://docs.python.org/library/email.charset.html#email.charset.Charset.get_body_encodingX-traJXunittest.TestCase.assertNotInrbJ(hhXJhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertNotInX-trcJXxmlrpclib.Boolean.encoderdJ(hhXFhttp://docs.python.org/library/xmlrpclib.html#xmlrpclib.Boolean.encodeX-treJXio.BufferedReader.peekrfJ(hhX=http://docs.python.org/library/io.html#io.BufferedReader.peekX-trgJX)asynchat.async_chat.collect_incoming_datarhJ(hhXVhttp://docs.python.org/library/asynchat.html#asynchat.async_chat.collect_incoming_dataX-triJXemail.charset.Charset.convertrjJ(hhXOhttp://docs.python.org/library/email.charset.html#email.charset.Charset.convertX-trkJXstruct.Struct.packrlJ(hhX=http://docs.python.org/library/struct.html#struct.Struct.packX-trmJXobject.__hash__rnJ(hhX?http://docs.python.org/reference/datamodel.html#object.__hash__X-troJX asyncore.dispatcher.handle_errorrpJ(hhXMhttp://docs.python.org/library/asyncore.html#asyncore.dispatcher.handle_errorX-trqJXctypes._CData.from_paramrrJ(hhXChttp://docs.python.org/library/ctypes.html#ctypes._CData.from_paramX-trsJXio.IOBase.tellrtJ(hhX5http://docs.python.org/library/io.html#io.IOBase.tellX-truJX*xml.etree.ElementTree.ElementTree._setrootrvJ(hhXdhttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree._setrootX-trwJXcurses.window.getkeyrxJ(hhX?http://docs.python.org/library/curses.html#curses.window.getkeyX-tryJXcmd.Cmd.precmdrzJ(hhX6http://docs.python.org/library/cmd.html#cmd.Cmd.precmdX-tr{JXmailbox.MMDF.lockr|J(hhX=http://docs.python.org/library/mailbox.html#mailbox.MMDF.lockX-tr}JXthreading.Event.isSetr~J(hhXChttp://docs.python.org/library/threading.html#threading.Event.isSetX-trJXunittest.TestCase.failrJ(hhXChttp://docs.python.org/library/unittest.html#unittest.TestCase.failX-trJXobject.__sub__rJ(hhX>http://docs.python.org/reference/datamodel.html#object.__sub__X-trJXobject.__ixor__rJ(hhX?http://docs.python.org/reference/datamodel.html#object.__ixor__X-trJXnntplib.NNTP.postrJ(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.postX-trJXzlib.Decompress.copyrJ(hhX=http://docs.python.org/library/zlib.html#zlib.Decompress.copyX-trJX$argparse.ArgumentParser.format_usagerJ(hhXQhttp://docs.python.org/library/argparse.html#argparse.ArgumentParser.format_usageX-trJXcurses.window.getbegyxrJ(hhXAhttp://docs.python.org/library/curses.html#curses.window.getbegyxX-trJX)wsgiref.handlers.BaseHandler.error_outputrJ(hhXUhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.error_outputX-trJX/logging.handlers.RotatingFileHandler.doRolloverrJ(hhXdhttp://docs.python.org/library/logging.handlers.html#logging.handlers.RotatingFileHandler.doRolloverX-trJX!email.message.Message.set_charsetrJ(hhXShttp://docs.python.org/library/email.message.html#email.message.Message.set_charsetX-trJX"email.message.Message.get_filenamerJ(hhXThttp://docs.python.org/library/email.message.html#email.message.Message.get_filenameX-trJXdecimal.Decimal.quantizerJ(hhXDhttp://docs.python.org/library/decimal.html#decimal.Decimal.quantizeX-trJXurllib2.FTPHandler.ftp_openrJ(hhXGhttp://docs.python.org/library/urllib2.html#urllib2.FTPHandler.ftp_openX-trJX multiprocessing.Process.is_aliverJ(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.Process.is_aliveX-trJX multiprocessing.Connection.closerJ(hhXThttp://docs.python.org/library/multiprocessing.html#multiprocessing.Connection.closeX-trJXtelnetlib.Telnet.read_sb_datarJ(hhXKhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_sb_dataX-trJXttk.Style.element_optionsrJ(hhXAhttp://docs.python.org/library/ttk.html#ttk.Style.element_optionsX-trJX6urllib2.AbstractBasicAuthHandler.http_error_auth_reqedrJ(hhXbhttp://docs.python.org/library/urllib2.html#urllib2.AbstractBasicAuthHandler.http_error_auth_reqedX-trJXmailbox.mboxMessage.get_flagsrJ(hhXIhttp://docs.python.org/library/mailbox.html#mailbox.mboxMessage.get_flagsX-trJXmailbox.Mailbox.get_filerJ(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.get_fileX-trJXbz2.BZ2File.writerJ(hhX9http://docs.python.org/library/bz2.html#bz2.BZ2File.writeX-trJXpdb.Pdb.runcallrJ(hhX7http://docs.python.org/library/pdb.html#pdb.Pdb.runcallX-trJXobject.__xor__rJ(hhX>http://docs.python.org/reference/datamodel.html#object.__xor__X-trJXrexec.RExec.r_openrJ(hhX<http://docs.python.org/library/rexec.html#rexec.RExec.r_openX-trJXast.NodeVisitor.visitrJ(hhX=http://docs.python.org/library/ast.html#ast.NodeVisitor.visitX-trJX(logging.handlers.NTEventLogHandler.closerJ(hhX]http://docs.python.org/library/logging.handlers.html#logging.handlers.NTEventLogHandler.closeX-trJXsymtable.Symbol.is_importedrJ(hhXHhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_importedX-trJXrfc822.AddressList.__len__rJ(hhXEhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.__len__X-trJXmailbox.MHMessage.set_sequencesrJ(hhXKhttp://docs.python.org/library/mailbox.html#mailbox.MHMessage.set_sequencesX-trJXimaplib.IMAP4.setannotationrJ(hhXGhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.setannotationX-trJX#distutils.ccompiler.CCompiler.spawnrJ(hhXPhttp://docs.python.org/distutils/apiref.html#distutils.ccompiler.CCompiler.spawnX-trJXdecimal.Decimal.is_qnanrJ(hhXChttp://docs.python.org/library/decimal.html#decimal.Decimal.is_qnanX-trJXio.IOBase.filenorJ(hhX7http://docs.python.org/library/io.html#io.IOBase.filenoX-trJXemail.message.Message.__str__rJ(hhXOhttp://docs.python.org/library/email.message.html#email.message.Message.__str__X-trJXdecimal.Decimal.is_zerorJ(hhXChttp://docs.python.org/library/decimal.html#decimal.Decimal.is_zeroX-trJX file.closerJ(hhX7http://docs.python.org/library/stdtypes.html#file.closeX-trJXhttplib.HTTPResponse.filenorJ(hhXGhttp://docs.python.org/library/httplib.html#httplib.HTTPResponse.filenoX-trJXcmd.Cmd.defaultrJ(hhX7http://docs.python.org/library/cmd.html#cmd.Cmd.defaultX-trJX file.truncaterJ(hhX:http://docs.python.org/library/stdtypes.html#file.truncateX-trJXtelnetlib.Telnet.openrJ(hhXChttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.openX-trJXsunau.AU_write.setcomptyperJ(hhXDhttp://docs.python.org/library/sunau.html#sunau.AU_write.setcomptypeX-trJXimaplib.IMAP4.createrJ(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.createX-trJXrexec.RExec.r_unloadrJ(hhX>http://docs.python.org/library/rexec.html#rexec.RExec.r_unloadX-trJXemail.message.Message.has_keyrJ(hhXOhttp://docs.python.org/library/email.message.html#email.message.Message.has_keyX-trJX robotparser.RobotFileParser.readrJ(hhXPhttp://docs.python.org/library/robotparser.html#robotparser.RobotFileParser.readX-trJXEasyDialogs.ProgressBar.setrJ(hhXKhttp://docs.python.org/library/easydialogs.html#EasyDialogs.ProgressBar.setX-trJXttk.Treeview.deleterJ(hhX;http://docs.python.org/library/ttk.html#ttk.Treeview.deleteX-trJXunittest.TestCase.assertIsrJ(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertIsX-trJX0argparse.ArgumentParser.convert_arg_line_to_argsrJ(hhX]http://docs.python.org/library/argparse.html#argparse.ArgumentParser.convert_arg_line_to_argsX-trJX0DocXMLRPCServer.DocXMLRPCServer.set_server_titlerJ(hhXdhttp://docs.python.org/library/docxmlrpcserver.html#DocXMLRPCServer.DocXMLRPCServer.set_server_titleX-trJX&unittest.TestLoader.loadTestsFromNamesrJ(hhXShttp://docs.python.org/library/unittest.html#unittest.TestLoader.loadTestsFromNamesX-trJXcurses.window.borderrJ(hhX?http://docs.python.org/library/curses.html#curses.window.borderX-trJX!mailbox.MHMessage.remove_sequencerJ(hhXMhttp://docs.python.org/library/mailbox.html#mailbox.MHMessage.remove_sequenceX-trJXtarfile.TarInfo.isfiforJ(hhXBhttp://docs.python.org/library/tarfile.html#tarfile.TarInfo.isfifoX-trJX3distutils.fancy_getopt.FancyGetopt.get_option_orderrJ(hhX`http://docs.python.org/distutils/apiref.html#distutils.fancy_getopt.FancyGetopt.get_option_orderX-trJX file.filenorJ(hhX8http://docs.python.org/library/stdtypes.html#file.filenoX-trJXdecimal.Context.next_towardrJ(hhXGhttp://docs.python.org/library/decimal.html#decimal.Context.next_towardX-trJXfloat.as_integer_ratiorJ(hhXChttp://docs.python.org/library/stdtypes.html#float.as_integer_ratioX-trJXunittest.TestCase.assertInrJ(hhXGhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertInX-trJX-xml.etree.ElementTree.ElementTree.getiteratorrJ(hhXghttp://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree.getiteratorX-trJX mailbox.BabylMessage.get_visiblerJ(hhXLhttp://docs.python.org/library/mailbox.html#mailbox.BabylMessage.get_visibleX-trJXmailbox.MH.set_sequencesrJ(hhXDhttp://docs.python.org/library/mailbox.html#mailbox.MH.set_sequencesX-trJXunittest.TestCase.assertIsNonerJ(hhXKhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertIsNoneX-trJX str.replacerJ(hhX8http://docs.python.org/library/stdtypes.html#str.replaceX-trJX str.rfindrK(hhX6http://docs.python.org/library/stdtypes.html#str.rfindX-trKXchunk.Chunk.closerK(hhX;http://docs.python.org/library/chunk.html#chunk.Chunk.closeX-trKXimaplib.IMAP4.authenticaterK(hhXFhttp://docs.python.org/library/imaplib.html#imaplib.IMAP4.authenticateX-trKXio.IOBase.isattyrK(hhX7http://docs.python.org/library/io.html#io.IOBase.isattyX-trKX6xml.parsers.expat.xmlparser.ExternalEntityParserCreaterK(hhXbhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.ExternalEntityParserCreateX-tr KX!xml.etree.ElementTree.Element.getr K(hhX[http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.getX-tr KXcmd.Cmd.onecmdr K(hhX6http://docs.python.org/library/cmd.html#cmd.Cmd.onecmdX-tr KXemail.message.Message.set_paramrK(hhXQhttp://docs.python.org/library/email.message.html#email.message.Message.set_paramX-trKXurllib2.Request.add_datarK(hhXDhttp://docs.python.org/library/urllib2.html#urllib2.Request.add_dataX-trKXset.addrK(hhX4http://docs.python.org/library/stdtypes.html#set.addX-trKXasynchat.fifo.pushrK(hhX?http://docs.python.org/library/asynchat.html#asynchat.fifo.pushX-trKX8multiprocessing.multiprocessing.queues.SimpleQueue.emptyrK(hhXlhttp://docs.python.org/library/multiprocessing.html#multiprocessing.multiprocessing.queues.SimpleQueue.emptyX-trKX formatter.writer.send_line_breakrK(hhXNhttp://docs.python.org/library/formatter.html#formatter.writer.send_line_breakX-trKX!gettext.NullTranslations.ugettextrK(hhXMhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.ugettextX-trKXcurses.window.bkgdrK(hhX=http://docs.python.org/library/curses.html#curses.window.bkgdX-trKXmailbox.Mailbox.itervaluesrK(hhXFhttp://docs.python.org/library/mailbox.html#mailbox.Mailbox.itervaluesX-trKXdecimal.Context.Etopr K(hhX@http://docs.python.org/library/decimal.html#decimal.Context.EtopX-tr!KX+code.InteractiveInterpreter.showsyntaxerrorr"K(hhXThttp://docs.python.org/library/code.html#code.InteractiveInterpreter.showsyntaxerrorX-tr#KXobject.__lshift__r$K(hhXAhttp://docs.python.org/reference/datamodel.html#object.__lshift__X-tr%KXftplib.FTP.mkdr&K(hhX9http://docs.python.org/library/ftplib.html#ftplib.FTP.mkdX-tr'KXmailbox.MH.remover(K(hhX=http://docs.python.org/library/mailbox.html#mailbox.MH.removeX-tr)KXwave.Wave_read.readframesr*K(hhXBhttp://docs.python.org/library/wave.html#wave.Wave_read.readframesX-tr+KX"ossaudiodev.oss_audio_device.closer,K(hhXRhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.closeX-tr-KXrfc822.AddressList.__isub__r.K(hhXFhttp://docs.python.org/library/rfc822.html#rfc822.AddressList.__isub__X-tr/KX:BaseHTTPServer.BaseHTTPRequestHandler.log_date_time_stringr0K(hhXmhttp://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.log_date_time_stringX-tr1KXset.intersectionr2K(hhX=http://docs.python.org/library/stdtypes.html#set.intersectionX-tr3KXposixfile.posixfile.dup2r4K(hhXFhttp://docs.python.org/library/posixfile.html#posixfile.posixfile.dup2X-tr5KX_winreg.PyHKEY.__exit__r6K(hhXChttp://docs.python.org/library/_winreg.html#_winreg.PyHKEY.__exit__X-tr7KX(ConfigParser.RawConfigParser.optionxformr8K(hhXYhttp://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.optionxformX-tr9KX!ossaudiodev.oss_audio_device.postr:K(hhXQhttp://docs.python.org/library/ossaudiodev.html#ossaudiodev.oss_audio_device.postX-tr;KXxdrlib.Packer.pack_stringrK(hhX]http://docs.python.org/library/xml.sax.handler.html#xml.sax.handler.ContentHandler.endElementX-tr?KXdecimal.Context.subtractr@K(hhXDhttp://docs.python.org/library/decimal.html#decimal.Context.subtractX-trAKX'logging.handlers.SMTPHandler.getSubjectrBK(hhX\http://docs.python.org/library/logging.handlers.html#logging.handlers.SMTPHandler.getSubjectX-trCKXxdrlib.Packer.pack_fstringrDK(hhXEhttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_fstringX-trEKXHTMLParser.HTMLParser.feedrFK(hhXIhttp://docs.python.org/library/htmlparser.html#HTMLParser.HTMLParser.feedX-trGKXtarfile.TarFile.addrHK(hhX?http://docs.python.org/library/tarfile.html#tarfile.TarFile.addX-trIKXnntplib.NNTP.xpathrJK(hhX>http://docs.python.org/library/nntplib.html#nntplib.NNTP.xpathX-trKKXfl.form.add_timerrLK(hhX8http://docs.python.org/library/fl.html#fl.form.add_timerX-trMKX!logging.handlers.HTTPHandler.emitrNK(hhXVhttp://docs.python.org/library/logging.handlers.html#logging.handlers.HTTPHandler.emitX-trOKX"sqlite3.Connection.create_functionrPK(hhXNhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.create_functionX-trQKXobject.__oct__rRK(hhX>http://docs.python.org/reference/datamodel.html#object.__oct__X-trSKX!robotparser.RobotFileParser.mtimerTK(hhXQhttp://docs.python.org/library/robotparser.html#robotparser.RobotFileParser.mtimeX-trUKXnntplib.NNTP.lastrVK(hhX=http://docs.python.org/library/nntplib.html#nntplib.NNTP.lastX-trWKXmsilib.CAB.appendrXK(hhX<http://docs.python.org/library/msilib.html#msilib.CAB.appendX-trYKX%wsgiref.handlers.BaseHandler.sendfilerZK(hhXQhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.sendfileX-tr[KXemail.message.Message.walkr\K(hhXLhttp://docs.python.org/library/email.message.html#email.message.Message.walkX-tr]KX"httplib.HTTPConnection.getresponser^K(hhXNhttp://docs.python.org/library/httplib.html#httplib.HTTPConnection.getresponseX-tr_KXdecimal.Context.max_magr`K(hhXChttp://docs.python.org/library/decimal.html#decimal.Context.max_magX-traKX str.upperrbK(hhX6http://docs.python.org/library/stdtypes.html#str.upperX-trcKXdoctest.DocTestParser.parserdK(hhXGhttp://docs.python.org/library/doctest.html#doctest.DocTestParser.parseX-treKXmailbox.MH.unlockrfK(hhX=http://docs.python.org/library/mailbox.html#mailbox.MH.unlockX-trgKXstring.Formatter.get_fieldrhK(hhXEhttp://docs.python.org/library/string.html#string.Formatter.get_fieldX-triKX-xml.sax.xmlreader.XMLReader.setContentHandlerrjK(hhX`http://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.XMLReader.setContentHandlerX-trkKXemail.parser.Parser.parsestrrlK(hhXMhttp://docs.python.org/library/email.parser.html#email.parser.Parser.parsestrX-trmKXbz2.BZ2Decompressor.decompressrnK(hhXFhttp://docs.python.org/library/bz2.html#bz2.BZ2Decompressor.decompressX-troKXsched.scheduler.enterabsrpK(hhXBhttp://docs.python.org/library/sched.html#sched.scheduler.enterabsX-trqKXunittest.TestCase.idrrK(hhXAhttp://docs.python.org/library/unittest.html#unittest.TestCase.idX-trsKXjson.JSONEncoder.defaultrtK(hhXAhttp://docs.python.org/library/json.html#json.JSONEncoder.defaultX-truKXtelnetlib.Telnet.writervK(hhXDhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.writeX-trwKXfl.form.add_dialrxK(hhX7http://docs.python.org/library/fl.html#fl.form.add_dialX-tryKXselect.kqueue.closerzK(hhX>http://docs.python.org/library/select.html#select.kqueue.closeX-tr{KXTix.tixCommand.tix_filedialogr|K(hhXEhttp://docs.python.org/library/tix.html#Tix.tixCommand.tix_filedialogX-tr}KXgettext.NullTranslations.infor~K(hhXIhttp://docs.python.org/library/gettext.html#gettext.NullTranslations.infoX-trKXimaplib.IMAP4.socketrK(hhX@http://docs.python.org/library/imaplib.html#imaplib.IMAP4.socketX-trKXxml.dom.NamedNodeMap.itemrK(hhXEhttp://docs.python.org/library/xml.dom.html#xml.dom.NamedNodeMap.itemX-trKX,urllib2.HTTPDigestAuthHandler.http_error_401rK(hhXXhttp://docs.python.org/library/urllib2.html#urllib2.HTTPDigestAuthHandler.http_error_401X-trKX*xml.parsers.expat.xmlparser.XmlDeclHandlerrK(hhXVhttp://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.XmlDeclHandlerX-trKX%email.charset.Charset.from_splittablerK(hhXWhttp://docs.python.org/library/email.charset.html#email.charset.Charset.from_splittableX-trKX%rfc822.Message.getfirstmatchingheaderrK(hhXPhttp://docs.python.org/library/rfc822.html#rfc822.Message.getfirstmatchingheaderX-trKXcurses.window.syncdownrK(hhXAhttp://docs.python.org/library/curses.html#curses.window.syncdownX-trKXsgmllib.SGMLParser.resetrK(hhXDhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.resetX-trKXsunau.AU_write.writeframesrawrK(hhXGhttp://docs.python.org/library/sunau.html#sunau.AU_write.writeframesrawX-trKXsmtplib.SMTP.starttlsrK(hhXAhttp://docs.python.org/library/smtplib.html#smtplib.SMTP.starttlsX-trKX!SocketServer.RequestHandler.setuprK(hhXRhttp://docs.python.org/library/socketserver.html#SocketServer.RequestHandler.setupX-trKXxdrlib.Packer.pack_fopaquerK(hhXEhttp://docs.python.org/library/xdrlib.html#xdrlib.Packer.pack_fopaqueX-trKXCookie.Morsel.js_outputrK(hhXBhttp://docs.python.org/library/cookie.html#Cookie.Morsel.js_outputX-trKX class.mrorK(hhX6http://docs.python.org/library/stdtypes.html#class.mroX-trKXunittest.TestCase.assertGreaterrK(hhXLhttp://docs.python.org/library/unittest.html#unittest.TestCase.assertGreaterX-trKXcmd.Cmd.postcmdrK(hhX7http://docs.python.org/library/cmd.html#cmd.Cmd.postcmdX-trKXarray.array.indexrK(hhX;http://docs.python.org/library/array.html#array.array.indexX-trKXtelnetlib.Telnet.read_untilrK(hhXIhttp://docs.python.org/library/telnetlib.html#telnetlib.Telnet.read_untilX-trKX%distutils.text_file.TextFile.readlinerK(hhXRhttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFile.readlineX-trKX/xml.parsers.expat.xmlparser.NotationDeclHandlerrK(hhX[http://docs.python.org/library/pyexpat.html#xml.parsers.expat.xmlparser.NotationDeclHandlerX-trKXdecimal.Context.dividerK(hhXBhttp://docs.python.org/library/decimal.html#decimal.Context.divideX-trKXthreading.Condition.waitrK(hhXFhttp://docs.python.org/library/threading.html#threading.Condition.waitX-trKX$SocketServer.BaseServer.handle_errorrK(hhXUhttp://docs.python.org/library/socketserver.html#SocketServer.BaseServer.handle_errorX-trKXsymtable.Symbol.is_namespacerK(hhXIhttp://docs.python.org/library/symtable.html#symtable.Symbol.is_namespaceX-trKXcmd.Cmd.prelooprK(hhX7http://docs.python.org/library/cmd.html#cmd.Cmd.preloopX-trKXwave.Wave_write.setframeraterK(hhXEhttp://docs.python.org/library/wave.html#wave.Wave_write.setframerateX-trKXsgmllib.SGMLParser.handle_declrK(hhXJhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.handle_declX-trKXxml.dom.minidom.Node.unlinkrK(hhXOhttp://docs.python.org/library/xml.dom.minidom.html#xml.dom.minidom.Node.unlinkX-trKXcmd.Cmd.emptylinerK(hhX9http://docs.python.org/library/cmd.html#cmd.Cmd.emptylineX-trKX'distutils.text_file.TextFile.unreadlinerK(hhXThttp://docs.python.org/distutils/apiref.html#distutils.text_file.TextFile.unreadlineX-trKXttk.Treeview.seerK(hhX8http://docs.python.org/library/ttk.html#ttk.Treeview.seeX-trKXFrameWork.Application.do_charrK(hhXKhttp://docs.python.org/library/framework.html#FrameWork.Application.do_charX-trKXcalendar.Calendar.itermonthdaysrK(hhXLhttp://docs.python.org/library/calendar.html#calendar.Calendar.itermonthdaysX-trKX(email.charset.Charset.get_output_charsetrK(hhXZhttp://docs.python.org/library/email.charset.html#email.charset.Charset.get_output_charsetX-trKXbsddb.bsddbobject.lastrK(hhX@http://docs.python.org/library/bsddb.html#bsddb.bsddbobject.lastX-trKX dict.copyrK(hhX6http://docs.python.org/library/stdtypes.html#dict.copyX-trKXsqlite3.Cursor.executerK(hhXBhttp://docs.python.org/library/sqlite3.html#sqlite3.Cursor.executeX-trKX str.isupperrK(hhX8http://docs.python.org/library/stdtypes.html#str.isupperX-trKXmhlib.Folder.getsequencesrK(hhXChttp://docs.python.org/library/mhlib.html#mhlib.Folder.getsequencesX-trKXobject.__rand__rK(hhX?http://docs.python.org/reference/datamodel.html#object.__rand__X-trKXobject.__ifloordiv__rK(hhXDhttp://docs.python.org/reference/datamodel.html#object.__ifloordiv__X-trKXio.BufferedWriter.writerK(hhX>http://docs.python.org/library/io.html#io.BufferedWriter.writeX-trKX*wsgiref.handlers.BaseHandler.setup_environrK(hhXVhttp://docs.python.org/library/wsgiref.html#wsgiref.handlers.BaseHandler.setup_environX-trKXset.issupersetrK(hhX;http://docs.python.org/library/stdtypes.html#set.issupersetX-trKXsqlite3.Connection.closerK(hhXDhttp://docs.python.org/library/sqlite3.html#sqlite3.Connection.closeX-trKXgenerator.throwrK(hhXAhttp://docs.python.org/reference/expressions.html#generator.throwX-trKX*urllib2.HTTPPasswordMgr.find_user_passwordrK(hhXVhttp://docs.python.org/library/urllib2.html#urllib2.HTTPPasswordMgr.find_user_passwordX-trKXxml.dom.Node.hasAttributesrK(hhXFhttp://docs.python.org/library/xml.dom.html#xml.dom.Node.hasAttributesX-trKXzipfile.ZipFile.writerK(hhXAhttp://docs.python.org/library/zipfile.html#zipfile.ZipFile.writeX-trKX#code.InteractiveConsole.resetbufferrK(hhXLhttp://docs.python.org/library/code.html#code.InteractiveConsole.resetbufferX-trKX sgmllib.SGMLParser.setnomoretagsrK(hhXLhttp://docs.python.org/library/sgmllib.html#sgmllib.SGMLParser.setnomoretagsX-trKXunittest.TestLoader.discoverrK(hhXIhttp://docs.python.org/library/unittest.html#unittest.TestLoader.discoverX-trKX%logging.handlers.DatagramHandler.emitrK(hhXZhttp://docs.python.org/library/logging.handlers.html#logging.handlers.DatagramHandler.emitX-trKX%msilib.Database.GetSummaryInformationrK(hhXPhttp://docs.python.org/library/msilib.html#msilib.Database.GetSummaryInformationX-trKXemail.message.Message.set_typerK(hhXPhttp://docs.python.org/library/email.message.html#email.message.Message.set_typeX-trKXimaplib.IMAP4.copyrK(hhX>http://docs.python.org/library/imaplib.html#imaplib.IMAP4.copyX-trKX%xml.sax.xmlreader.Attributes.getNamesrK(hhXXhttp://docs.python.org/library/xml.sax.reader.html#xml.sax.xmlreader.Attributes.getNamesX-trKXlogging.Handler.setFormatterrK(hhXHhttp://docs.python.org/library/logging.html#logging.Handler.setFormatterX-trKXcurses.window.resizerK(hhX?http://docs.python.org/library/curses.html#curses.window.resizeX-trKXcodecs.StreamReader.readrK(hhXChttp://docs.python.org/library/codecs.html#codecs.StreamReader.readX-trKXjson.JSONDecoder.decoderK(hhX@http://docs.python.org/library/json.html#json.JSONDecoder.decodeX-trKX*multiprocessing.managers.SyncManager.RLockrK(hhX^http://docs.python.org/library/multiprocessing.html#multiprocessing.managers.SyncManager.RLockX-trKX+ConfigParser.RawConfigParser.remove_sectionrK(hhX\http://docs.python.org/library/configparser.html#ConfigParser.RawConfigParser.remove_sectionX-trKXbsddb.bsddbobject.set_locationrK(hhXHhttp://docs.python.org/library/bsddb.html#bsddb.bsddbobject.set_locationX-trKXobject.__long__rL(hhX?http://docs.python.org/reference/datamodel.html#object.__long__X-trLuuUsrcdirrLU8/var/build/user_builds/versiontools/checkouts/latest/docrLUconfigrLcsphinx.config Config rL)rL}rL(U html_contextrL}r L(U github_userUzygaUnamer LX versiontoolsUdisplay_githubUversions]r L(U release-1.9.1U/en/release-1.9.1/r LUlatestr LU /en/latest/rLU1.10U /en/1.10/rLeU using_themeU downloads]rL(UPDFUFhttps://media.readthedocs.org/pdf/versiontools/latest/versiontools.pdfrLUHTMLUJhttps://media.readthedocs.org/htmlzip/versiontools/latest/versiontools.ziprLUEpubUHhttps://media.readthedocs.org/epub/versiontools/latest/versiontools.epubrLeU READTHEDOCSUgithub_versionUmasterrLU conf_py_pathU/doc/U github_repoU versiontoolsrLUanalytics_codeUUPRODUCTION_DOMAINUreadthedocs.orgU html_themerLUsphinx_rtd_themerLU new_themeUcurrent_versionrLj LUslugrLjLU MEDIA_URLrLUhttps://media.readthedocs.org/uUpygments_stylerLUsphinxrLUhtmlhelp_basenamerLUVersionToolsDocumentationjLjLU exclude_treesrL]U master_docrLUindexr LU source_suffixr!LU.rstU copyrightr"LX2010-2011, Linaro LimitedhLU1.9U html_styler#LNUhtml_theme_optionsr$L}Utemplates_pathr%L]r&LUA/home/docs/checkouts/readthedocs.org/readthedocs/templates/sphinxr'LaUlatex_documentsr(L]r)L(UindexUVersionTools.texXVersion Tools DocumentationXZygmunt KrynickiUmanualr*Ltr+LaUhtml_static_pathr,L]r-LUI/home/docs/checkouts/readthedocs.org/readthedocs/templates/sphinx/_staticr.LaUhtml_theme_pathr/L]r0L(U_themesr1Lj'LeUintersphinx_mappingr2L}r3LUhttp://docs.python.org/r4LNsUlanguager5LXenr6LU overridesr7L}r8Lj5Lj6LsUprojectr9LX Version ToolsU extensionsr:L]r;L(Usphinx.ext.autodocrLUsphinx.ext.todor?LUsphinx.ext.coverager@LUreadthedocs_ext.readthedocsrALU"readthedocs_ext.readthedocshtmldirrBLeUreleaserCLU1.9.1UsetuprDLNubUintersphinx_cacherEL}rFLj4LNJuR}rGL(h}rHL(hhhhhhhhhhhhhhhhhjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjjjj j!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j3j4j;j<j7j8j9j:j5j6uj7}rIL(jAjAj7j7j8j8j8j8j8j8j4Ej5Ej8j 8j 8j 8j8j8j8j8jN;jO;j8j8j8j8jP;jQ;j8j8j4Bj5Bj8j8j8j8j 8j!8j"8j#8j$8j%8j&8j'8j(8j)8j*8j+8j,8j-8j.8j/8j08j18j28j38j48j58j68j78j88j98j>Ej?Ej<8j=8j>8j?8j@8jA8jB8jC8jD8jE8jF8jG8jH8jI8j>j>jBjBjL8jM8jN8jO8jP8jQ8jR8jS8jT8jU8jV8jW8jX8jY8jZ8j[8jAjAj^8j_8j`8ja8jb8jc8jd8je8jf8jg8jj8jk8jAjAjn8jo8j^;j_;j@j@jr8js8jt8ju8jv8jw8jx8jy8j|8j}8j~8j8j8j8j8j8j8j8j8j8jAjAj8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8jl;jm;j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8j8jHjHj8j8j8j8jHjHj8j8j8j8j8j8j8j8j8j8j8j8j9j9j9j9j9j9j9j9j9j 9j 9j 9j 9j 9j9j9j9j9j9j9jVKjWKj=j=j9j9j9j9j9j9j9j9j9j9j9j9j 9j!9j"9j#9j<j<j$9j%9j>j>j(9j)9j*9j+9j;j;j.9j/9j09j19j29j39j49j59j69j79j89j99j:9j;9j<9j=9j>9j?9j@9jA9jB9jC9jD9jE9j;j;jH9jI9jJ9jK9j;j;jN9jO9jP9jQ9jR9jS9jT9jU9jV9jW9jX9jY9jZ9j[9jdEjeEj\9j]9j^9j_9jHjHjb9jc9jd9je9jf9jg9jh9ji9jl9jm9jn9jo9j>j>jr9js9jt9ju9jv9jw9jx9jy9jz9j{9j|9j}9j~9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j>j>j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j>j>j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j>j>j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j9j:j:j:j:j:j:j:j:jEjEj :j :j :j :j:j:j:j:j:j:j0Bj1Bj:j:j:j:j;j;j:j:jZGj[Gj:j:j:j:j :j!:j":j#:j$:j%:j&:j':j(:j):j*:j+:j,:j-:j.:j/:j0:j1:j;j;j4:j5:j6:j7:j8:j9:j::j;:j<:j=:j>:j?:j@:jA:jB:jC:jD:jE:jF:jG:j Ij IjJ:jK:jN:jO:jP:jQ:jR:jS:jT:jU:jV:jW:jX:jY:jP>jQ>jIjIjEjEj`:ja:jb:jc:jd:je:jf:jg:jh:ji:jj:jk:jIjIjn:jo:jp:jq:jr:js:j =j!=jt:ju:jv:jw:jJEjKEjx:jy:jz:j{:j|:j}:j~:j:j:j:jDBjEBj:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:jJBjKBj:j:j:j:j:j:j:j:jEjEj:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j:j;j;j:j:j:j:jh;ji;j:j:j:j:j:j:j:j:j:j:j:j:j:j:jKjKj:j:j:j:j:j:j:j:j$Ij%Ij:j:j:j:j:j:jTBjUBj:j:j:j:j:j:j:j:j:j:j;j;j:j:j;j;j;j;j ?j ?jDjDj;j;j;j ;j;j;j ;j ;j;j;j8j8j;j;j;j;j;j;j;j;j;j;j;j;j;j;j ;j!;j;j;j$;j%;j&;j';j(;j);j*;j+;j,;j-;j.;j/;j0;j1;j2;j3;j4;j5;j6;j7;j8;j9;j:;j;;j<;j=;j>;j?;j@;jA;jB;jC;jD;jE;j;j;jH;jI;jJ;jK;jL;jM;j8j8j8j8jR;jS;jT;jU;jV;jW;jX;jY;jZ;j[;j\;j];jp8jq8j`;ja;jb;jc;jd;je;jf;jg;j>j>jj;jk;j8j8jn;jo;jp;jq;jr;js;jt;ju;j:Ij;Ijx;jy;jz;j{;j|;j};j~;j;j;j;j;j;j;j;j,9j-9j;j;j;j;jF9jG9j;j;jL9jM9jHjHj;j;j;j;j;j;j?j?j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j:j:j;j;j;j;jnBjoBj2:j3:j;j;j;j;jEjEj;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j;j:j:j;j;j;j;j;j;j:j:j ;j ;j;j;j;j;j;j;j";j#;j;j;j;j;jF;jG;j;j;j;j;j*?j+?j;j;j;j;jtBjuBj<j<j<j<j<j<j,?j-?j<j <j <j <j`HjaHj<j<j<j<j<j<jxBjyBjNIjOIj<j<j <j <j<j<j<j<j <j!<j"<j#<j$<j%<j&<j'<j(<j)<j*<j+<j,<j-<j.<j/<j0<j1<j2<j3<j4<j5<j6<j7<j8<j9<j:<j;<j<<j=<j><j?<j@<jA<jB<jC<j<j<jD<jE<j<j<jAjAjF<jG<jH<jI<jJ<jK<j2?j3?jN<jO<jP<jQ<jR<jS<jT<jU<jV<jW<jBjBjZ<j[<jJFjKFj^<j_<j`<ja<j8?j9?jd<je<jf<jg<jh<ji<jj<jk<jl<jm<jn<jo<jp<jq<jr<js<jt<ju<jv<jw<jx<jy<jz<j{<j|<j}<j~<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j*@j+@j<j<jEjEj<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<j<jBjBj<j<j<j<jR?jS?j<j<jT?jU?j<j<j<j<j<j<j<j<j=j=j=j=j=j=j=j=j=j =j =j =j =j =j=j=j=j=j=j=jzIj{Ij=j=j=j=jX?jY?j=j=j=j=jBjBjFj Fj$=j%=j&=j'=j(=j)=jBjBj*=j+=j.=j/=j0=j1=j2=j3=j@FjAFj4=j5=j6=j7=j8=j9=j:=j;=j@j@j<=j==j>=j?=j@=jA=jB=jC=jD=jE=jF=jG=jH=jI=jJ=jK=jL=jM=jN=jO=jP=jQ=jHjHjR=jS=jT=jU=jV=jW=jX=jY=jZ=j[=j\=j]=jIjIj`=ja=jb=jc=jd=je=jf=jg=jh=ji=jj=jk=jl=jm=jn=jo=jp=jq=jr=js=jt=ju=jv=jw=jx=jy=jh?ji?j|=j}=j~=j=j=j=jFjFj=j=j=j=j=j=j=j=jBjBj=j=j=j=jFjFj=j=j=j=j>j>j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=jDjDj=j=j=j=j=j=j=j=j=j=j=j=j"Fj#Fj=j=jFjFj=j=j=j=j=j=jBjBj=j=j=j=j=j=j=j=j=j=j=j=j=j=jz?j{?j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j=j>j>j,Fj-Fj>j>j>j>j>j>j>j >j >j >j >j >j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j >j!>j">j#>j$>j%>j&>j'>j(>j)>j*>j+>j,>j->j\<j]<j?j?j0>j1>j2>j3>jIjIj6>j7>j8>j9>j:>j;>j<>j=>j>>j?>j@>jA>j6Fj7FjD>jE>jF>jG>jH>jI>jJ>jK>jL>jM>jN>jO>jJjJjR>jS>jX>jY>jZ>j[>j\>j]>j^>j_>jjc>jd>je>jf>jg>jIjIjl>jm>jn>jo>jp>jq>jr>js>jt>ju>jv>jw>jx>jy>jz>j{>jIjIj~>j>j>j>j>j>j|Kj}Kj>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>jJ8jK8j>j>j>j>j>j>j>j>j>j>jh8ji8j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j>j&9j'9j>j>jp9jq9j>j>j>j>j9j9j9j9j>j>j9j9j>j>j>j>j>j>j>j>jIjIj>j>j>j>j>j>jBjBjGjGj>j>j>j>j>j>j>j>j>j>j>j>j>j>j?j?j?j?j?j?j?j?j?j ?j;j;j ?j ?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j;j;j ?j!?j"?j#?j$?j%?j&?j'?j(?j)?j;j;j<j<j.?j/?jBjBjAjAjL<jM<j4?j5?j6?j7?jb<jc<j:?j;?jIjIj>?j??j@?jA?jB?jC?j?j?j?j?jF?jG?jH?jI?jJ?jK?jL?jM?jN?jO?jP?jQ?jV?jW?j<j<j<j<j^Fj_Fj=j=jZ?j[?j\?j]?j^?j_?j`?ja?jb?jc?j?j?jd?je?jIjIjz=j{=jj?jk?jl?jm?jn?jo?jp?jq?jr?js?jt?ju?jv?jw?jx?jy?j=j=j|?j}?j~?j?j?j?j?j?j?j?j?j?j?j?j.>j/>j?j?jIjIj?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j>j>j?j?j?j?u(jrIjsIj?j?j?j?j?j?j?j?j?j?j?j?jD?jE?j?j?j?j?jEjEj?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?jIjIj?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j?j~FjFj?j?j?j?j?j?j?j?j?j?jFjFj@j@j@j@j@j@j@j@j@j @j @j @j @j @j@j@jIjIj@j@j@j@j@j@j@j@j@j@j@j@jFjFj"@j#@j$@j%@j&@j'@j(@j)@jAjAj,@j-@j.@j/@j0@j1@j2@j3@j4@j5@j6@j7@j8@j9@jFjFj<@j=@j>@j?@j@@jA@jB@jC@jD@jE@jF@jG@jH@jI@jJ@jK@jN@jO@jP@jQ@jR@jS@j*Cj+CjT@jU@jV@jW@jX@jY@jZ@j[@j\@j]@j^@j_@j`@ja@jb@jc@jd@je@jf@jg@jh@ji@jJjJjl@jm@jn@jo@jp@jq@jr@js@jt@ju@jv@jw@jx@jy@jz@j{@j|@j}@j~@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@jEjEj@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@jDjDj@j@j@j@j@j@j@j@j@j@j@j@j>Cj?Cj@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@jFjFj@j@j Fj!Fj@j@j@j@j@j@j@j@jJCjKCj@j@jCjCj@j@jJjJj@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@j@jAjAjAjAjAjAjAjAjAj Aj Aj Aj Aj AjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAj Aj!Aj"Aj#Aj$Aj%Aj&Aj'Aj(Aj)Aj*Aj+Aj,Aj-Aj.Aj/Aj0Aj1Aj2Aj3Aj4Aj5Aj6Aj7Aj8Aj9Aj:Aj;AjAj?Aj@AjAAjfCjgCj$Jj%JjFAjGAjHAjIAjJAjKAjLAjMAjNAjOAjPAjQAjRAjSAjTAjUAjVAjWAjXAjYAjZAj[Aj^Aj_Aj`AjaAjbAjcAj@j@jfAjgAjhAjiAjjAjkAjlAjmAjnAjoAjrAjsAjtAjuAjvAjwAjxAjyAjzAj{Aj|Aj}Aj~AjAjAjAjBjBjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjFjFjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAj7j7jAjAjDJjEJjAjAjAjAjAjAjAjAjAjAjAjAjAjAj\8j]8j\:j]:jAjAjl8jm8jAjAjAjAj8j8jAjAjAjAjAjAjAjAjBjBjBjBjBjBjBjBjBj Bj Bj Bj Bj BjBjBjJjJjBjBjBjBjxCjyCj 8j 8jBjBjBjBjBjBj Bj!Bj"Bj#Bj$Bj%Bj&Bj'BjFjFj.Bj/BjFjFj2Bj3Bj\Aj]Aj6Bj7Bj8Bj9Bj:Bj;BjBj?Bj@BjABjBBjCBj:j:jFBjGBjHBjIBj:j:jLBjMBjNBjOBjPBjQBjRBjSBj:j:jVBjWBjXBjYBjZBj[Bj\Bj]Bj^Bj_Bj`BjaBjbBjcBjdBjeBjfBjgBjhBjiBjjBjkBjlBjmBj;j;jpBjqBjrBjsBj;j;j<j<jzBj{Bj|Bj}Bj~BjBjBjBjBjBjBjBjBjBjBjBjX<jY<jBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjCjCjGjGj<j<jIjIjBjBjBjBjBjBjBjBjBjBjBjBjBjBjGjGjBjBjBjBjBjBjBjBjBjBjBjBj=j=jBjBjBjBjBjBjBjBjj>jk>jBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBj>j>jBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBjBj0?j1?jCjCjCjCjCjCjCj Cj Cj Cj Cj Cj~JjJjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCj Cj!Cj"Cj#Cj$Cj%Cj&Cj'Cj(Cj)Cj@EjAEj.Cj/Cj0Cj1Cj2Cj3Cj4Cj5Cj6Cj7Cj(Gj)Gj8Cj9Cj:Cj;CjFj?FjVCjWCjXCjYCjZCj[Cj\Cj]Cj^Cj_Cj`CjaCjbCjcCjdCjeCjBAjCAjhCjiCjjCjkCjlCjmCjnCjoCjpCjqCjrCjsCjtCjuCjvCjwCjBjBjJjJj|Cj}Cj~CjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjBjBjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjAjAjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjCj(Ij)IjCjCjCjCjCjCjDjDjDjDjDjDj$Ej%EjDj Dj Dj Dj Dj DjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDj Dj!Dj"Dj#Dj$Dj%Dj&Dj'Dj(Dj)Dj*Dj+Dj,Dj-Dj.Dj/Dj0Dj1Dj2Dj3Dj4Dj5Dj6Dj7DjLGjMGj:Dj;DjDj?Dj^=j_=j@DjADjJjJjDDjEDjFDjGDjHDjIDjJDjKDjLDjMDjNDjODjPDjQDjRDjSDjTDjUDjVDjWDjXDjYDjZDj[Dj\Dj]Dj^Dj_Dj`DjaDjbDjcDjdDjeDjfDjgDjhDjiDjjDjkDjlDjmDjnDjoDjpDjqDjrDjsDjtDjuDjvDjwDjIjIjxDjyDjzDj{Dj|Dj}Dj~DjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDj&Hj'HjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjRFjSFjDjDjLIjMIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjJjJjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjEjEjEjEjEjEjEjEjEj Ej Ej Ej Ej EjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEj Ej!Ej"Ej#EjKjKj&Ej'Ej(Ej)EjHjHj*Ej+EjrGjsGj.Ej/Ej0Ej1Ej2Ej3Ej8j8jHjHj6Ej7Ej8Ej9Ej:Ej;EjjC>j8Fj9Fj:Fj;Fj`>ja>jBjBj Ij!IjBFjCFjDFjEFjFFjGFjHFjIFjrHjsHjT>jU>jLFjMFjNFjOFjPFjQFjvBjwBjTFjUFjVFjWFjXFjYFjZFj[Fj\Fj]Fjz8j{8j`FjaFjbFjcFjdFjeFjfFjgFjhFjiFjjFjkFjlFjmFjpFjqFjrFjsFjtFjuFjvFjwFjzFj{Fj|Fj}Fj?j?jFjFj?j?jFjFjFjFjFjFjFjFj @j!@jFjFj:@j;@jFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjKjKjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFj?j?jFjFjFjFjFjFjAjAjFjFjFjFjFjFjFjFjFjFjFjFj,Bj-Bj?j?jFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjFjGjGjGjGjGjGjGjGjGj Gj Gj Gj Gj GjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGj Gj!Gj"Gj#Gj$Gj%Gj&Gj'GjBjBj*Gj+Gj,Gj-Gj.Gj/Gj0Gj1Gj2Gj3Gj4Gj5Gj6Gj7Gj8Gj9Gj:Gj;GjGj?Gj@GjAGjBGjCGj&Kj'KjFGjGGj(Kj)KjJGjKGj8Dj9DjNGjOGjPGjQGjRGjSGjTGjUGjVGjWGjXGjYGj@j@j\Gj]Gj^Gj_Gj`GjaGjbGjcGjdGjeGjfGjgGjhGjiGjjGjkGjlGjmGjnGjoGjpGjqGj,Ej-EjtGjuGjvGjwGjREjSEjzGj{Gj|Gj}Gj~GjGjGjGjGjGjGjGjGjGjGjGjGjGj,=j-=jKjKjGjGjGjGu(jGjGjGjGjGjGjFjFjGjGjGjGjGjGj2Fj3FjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjpAjqAjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjHjHjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjGjHjHjHjHjHjHjHjHjHj Hj Hj Hj Hj HjHjHjHjHjHjHjHjHjHjHjHjHjHjHj.Ij/IjHjHj Hj!Hj"Hj#Hj$Hj%HjZIj[Ij(Hj)Hj*Hj+Hj,Hj-Hj.Hj/Hj0Hj1Hj2Hj3Hj4Hj5Hj6Hj7Hj8Hj9Hj:Hj;HjHj?Hj@HjAHjIjIj?j?jFHjGHjHHjIHjJHjKHjLHjMHjNHjOHjPHjQHjRHjSHjTHjUHjVHjWHjXHjYHjZHj[Hj\Hj]Hj^Hj_HjPJjQJjnFjoFjbHjcHjdHjeHjfHjgHjhHjiHjjHjkHjlHjmHjnHjoHjpHjqHjJjJjtHjuHjvHjwHjxHjyHjzHj{Hj|Hj}Hj~HjHjHjHjHjHj@KjAKjHjHjHjHjHjHjHjHjHjHjKjKjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjIjIj:j:j8j8jBjBjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHj`9ja9jHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjHjhKjiKjIjIjIjIjIjIjIjIjIjIjIj Ij Ij Ij<j<jL:jM:jDjDjZ:j[:jIjIjIjIjl:jm:jIjIjIjIjIjIj:j:j:j:j"Ij#IjCjCj&Ij'Ij8j8j*Ij+Ij,Ij-Ij;j;j0Ij1Ij2Ij3IjdAjeAj4Ij5Ij6Ij7Ij8Ij9Ijv;jw;jIj?Ij@IjAIjBIjCIjDIjEIjFIjGIjHIjIIjJIjKIj;j;j,Cj-CjPIjQIjRIjSIjTIjUIjVIjWIjXIjYIj:j :jCjCj\Ij]Ij^Ij_Ij`IjaIjbIjcIjdIjeIjfIjgIjhIjiIjjIjkIjlIjmIjnIjoIjpIjqIjtIjuIjvIjwIjxIjyIj=j=j|Ij}Ij~IjIjIjIj(Bj)BjIjIjIjIjIjIjIjIjIjIjIjIjKjKjIjIjIjIjIjIjIjIjKjKjIjIj4>j5>jIjIjKjKjh>ji>jIjIj|>j}>jIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIj9j9jIjIjIjIjIjIjIjIjIjIjJj?Jj@JjAJjBJjCJjAjAjFJjGJjHJjIJjJJjKJjLJjMJjNJjOJj*Bj+BjRJjSJjFjFjVJjWJjXJjYJjZJj[Jj\Jj]Jj^Jj_Jj`JjaJjbJjcJjdJjeJjfJjgJjhJjiJjjJjkJjlJjmJjnJjoJjpJjqJjrJjsJjtJjuJjvJjwJjxJjyJjzJj{Jj|Jj}JjCjCjAjAjJjJjKjKjJjJj@CjACjJjJjJjJjJjJjKjKjzCj{CjJjJjJjJjJjJjJjJjJjJjJjJjJjJjKjKjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjBDjCDjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjDjDjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjJjnKjoKjJjJjJjJjJjJjJjJjJjJjJjJjEjEjEjEjJjJjJjJjJjJjJjJjJjJjKjKjKjKjKjKjKjKjKj Kj Kj Kj Kj KjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKj"Kj#Kj$Kj%KjDGjEGjHGjIGj*Kj+Kj,Kj-Kj.Kj/Kj0Kj1Kj2Kj3Kj4Kj5Kj6Kj7Kj8Kj9Kj:Kj;KjKj?KjAjAjBKjCKjDKjEKjFKjGKjHKjIKjJKjKKjLKjMKjNKjOKjPKjQKjRKjSKjTKjUKjV>jW>jXKjYKjZKj[Kj\Kj]Kj^Kj_Kj`KjaKjbKjcKjdKjeKjfKjgKjHjHjjKjkKjKjKjpKjqKjrKjsKjtKjuKjvKjwKjxKjyKjzKj{Kj~KjKjKjKjKjKjKjKjKjKjKjKjKjKjIjIjKjKjKjKjIjIjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjKjJj Jj Jj JjJjJjFjFjj?j@jAjBjCjDjEjFjGjHjIjJj}j~jjjOjPjQjRjSjTjajbjWjXjYjZj[j\j]j^j_j`jjjcjdj=j>jgjhjjjijjj%j&jkjljmjnjjjjjsjtjjjjjj jjjKjLjjjjjjjojpjjj{j|jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj)j*jjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjj j!j"j#j$j%j&jjj'j(j)j*j+j,j-j.j/j0j1j2j3j4j5j6jjj9j:j;j<j=j>j?j@jAjBjCjDjEjFjjjIjJjKjLjMjNjOjPjQjRjSjTjUjVjYjZjjj]j^jjjajbjcjdjjjgjhjijjjkjljmjnjjjqjrjsjtjujvjwjxjyjzjjj}j~jjjMjNjjjjjjjwjxjjjjjjjjjjjjjjjjjjjjjjjjjIjJjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjjjj jjj!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j3j4j5j6j7j8j9j:j;j<jjj?j@jAjBjjjEjFjGjHjIjJjKjLjMjNjjjOjPjQjRjSjTjWjXjYjZjcjdj]j^j_j`jajbjcjdjejfjjjgjhjjjijjjkjlj=j>jmjnjojpjqjrjsjtjujvjwjxjjjjj}j~jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjGjHjjjjjjjjjj jjjjjjjjjjjjjjjjjjjjjKjLjjjjjjjjjjjCjDjjjjjjjjjjj{j|jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjj j!j"j#j$j'j(j)j*jjj+j,j-j.j/j0j1j2j3j4j5j6j7j8j;j<jajbj?j@jAjBjEjFjGjHjIjJjKjLjMjNjjjOjPjQjRjSjTjUjVjWjXjYjZj[j\jMjNj_j`jajbjqjrjcjdjejfjjjijjjjjmjnjojpjqjrjsjtjjjjjjj}j~jjjjjjjjjjjcjdjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj7j8jjjjjjjjjjjjjjjjjjj!j"jjjjjjjjjejfjjjjjjjjjjjjjjjjjjj=j>jjjjjjjyjzjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjj1j2jjjjjjjj j!j"j#j$jjj'j(j/j0j+j,j-j.j/j0j1j2j3j4j5j6j7j8j9j:j;j<jjj%j&j?j@jAjBjCjDjEjFjGjHjjjMjNjOjPjQjRjSjTjWjXjYjZjCjDj]j^j_j`jjjjjgjhjjjkjljCjDjojpjjjEjFjsjtjujvjwjxjyjzj{j|j}j~jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj[j\jjjjj{j|jjj{j|jjjjj9j:jUjVjjjSjTjejfjjjjjjjjjjjjjjjjjjjUjVjjjjjWjXjjjjjjjjjjjjjUjVjjjjjjjjjjjojpjjjjjjjjjjjjj j j j j jjjjjjgjhjjjjjjjjjjjjjjj#j$j%j&j'j(j)j*j+j,jWjXjjjjj3j4j5j6j7j8j9j:j;j<j=j>j?j@jAjBjmjnjjjGjHjIjJjKjLjMjNjOjPjQjRjjjjjjjYjZj[j\j]j^j_j`jajbjjjejfjgjhuj}rKL(jjjjjjjjjjjjjjjjj#j$jjjjjjj j jjj jjj j j j!j"jjj%j&uj}rLL(jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjuj }rML(j j j j j j j j j j j j j j j j j j j j j j j! j" j j jw jx j j j j j# j$ j% j& j j j' j( j j j+ j, j j j j j j j- j. j/ j0 j1 j2 j-j.j3 j4 j j j5 j6 j7 j8 j j j j j j j j j? j@ j j j j j j jmjnjC jD jE jF jS jT jjjG jH j j jI jJ j j jjj{j|j j jM jN j j j j j? j@ jO jP j j j j jqjrj j jU jV j j j j jW jX jY jZ j j j j j[ j\ jejfj] j^ j j j_ j` j9j:j j j j j j jyjzjc jd j j j j je jf jO jP j j j j jg jh ji jj jk jl j j j j j jjm jn jo jp jq jr jsjtjs jt ju jv j j jjjy jz jjj{ j| j j j=j>jjj j jI jJ j j j} j~ j j j j j j j jj j j j jjj j jjj j jjj) j* j j jjjjj j jjj j jj j j j!j"jjj j j j j%j&j'j(j j j j jq jr j)j*j+j,j-j.j/j0j1j2ja jb j3j4j5j6j j j j jjj j j;j<jyjzj j j=j>j j jAjBjCjDjEjFjGjHj j jIjJjjjMjNj j jOjPj j j j j j j j j j jQjRj j j j jSjTj j jUjVj j j j j j jYjZj j j[j\j]j^j j j j jajbj j j j jcjdj j jW jX j j jjjejfjjjijjjkjljmjnj9 j: j j j j j j jsjtjYjZjujvj j j j j j j}j~jjjK jL j j j; j< j j jjjjj j j_ j` j j jjj7j8jKjLjjja jb j j jjjjjgjhj j j j j j jjjjjjjjj j jjjGjHj j jjjjj j jjj j jA jB jjj j jjj j j j jjjjjjjjj j j j j j j j jjjjjjjUjVjjj j j j jjj j jjj j j j j j jjj j jjjY jZ jjjjj! j" j# j$ j% j& jjj' j( j) j* jjjjj- j. jjj/ j0 jjj1 j2 jjj[j\j3 j4 j5 j6 j j j{ j| jjj7 j8 jjjjj; j< jjjjj? j@ jA jB jC jD jjjG jH jjj j jjjjjI jJ jjjjjjjjjM jN jjjO jP j j jS jT jW jX jY jZ jjj] j^ j_ j` j= j> jjjc jd jjjjj? j@ ji jj jk jl jm jn jjjo jp jq jr jajbju jv jjjy jz jjjjj{ j| j j j j j jjQ jR j j j j jS jT j j jjj j j j j j jjjjjjj j jjj j j j j!j"j#j$j j j j j j jojpj)j*j+j,j j j/j0j= j> j3j4j j j j j7j8ja jb j j j;j<j j j+ j, j?j@jjj j j j j j jCjDjEjFj j jjjIjJjKjLj j jMjNjOjPjQjRjw jx jw jx j j j j jSjTj j j j j j jWjXj j j j j j jjj j j j j j jjja jb j j jS jT jQ jR j j j]j^j_j`js jt jjj j j j jjj j jejfj j j j j j jgjhj j jijjjjj%j&j j jmjnjojpjqjrjsjtjujvjjjjjwjxj; j< j j j j jyjzj{j|j}j~j[ j\ jjj j jjj j j j j j jjj j jjj j j j j[ j\ j j jjjjjjj j jjjjjjj j j j jjj j jjj j jjj j jjjjj j j j j j j j jjj j jjjjjjj-j.jjjjjjj j j j jjj j j j jjj j jjj j jAjBjjjjjjj j jjj j jjjjjjj j jjj5j6j j jjj j jjj j jjj j j j j j jjj j j! j" jjj% j& j' j( jjj) j* jjjjj+ j, jjj- j. j/ j0 j1 j2 j3 j4 j5 j6 jjj7 j8 j j j9 j: jjjjj= j> jjjjjjjC jD jE jF j j jk jl jjjK jL jM jN jjj j jjjjjS jT jjjjj%j&jU jV jjjjjY jZ jjjjj] j^ jjjjjjj j je jf jg jh jjjk jl jjjm jn jo jp jq jr js jt ju jv jw jx jy jz j{ j| j[ j\ j} j~ jjjjjIjJj1 j2 j j j j j jjjjjj j jjjjjj jjjjj j jjj j j j j j j j jjjj j!j"j j jjj j j j jkjlj j j'j(jQjRj+j,j/ j0 jjj j j/j0j1j2j3j4j) j* j j j9 j: j j jjj9j:j;j<j=j>jjj?j@jAjBjCjDj j j j j j jEjFjGjHjjj j j j jKjLjMjNjOjPj)j*jSjTj j jUjVj j jK jL j j jWjXj j jYjZj j jjj j j j j j j j j j j_j`jjjC jD j j jcjdj j jejfj j jgjhj j jjjkjljjjmjnj j j j j j j j jjj j j j j j j j jqjrjsjtj j j j j j jyjzj{j|j j j[j\j}j~jjjjj j j j j j j j j j j j j j jjjjjjj j j#j$j j jjjjj j jjj j jjjjj j j j j j j j j j j j jjj]j^jjjjjs jt j j j j jjjjj j jajbjA jB jjjjjjjjj j jjj j jjj j j j j j j j jjj! j" j#j$j# j$ j% j& j%j&j' j( jjj j j1j2j j jjjjjjj- j. j j jjjjj j j1 j2 j3 j4 jjjjjjj5 j6 j j jjjjjjjjjjjjj j jg jh jA jB jC jD jE jF jG jH jjjjjK jL jjjijjjjjM jN jO jP j j j j jQ jR jjj j jjj j jjjjjjj j jU jV jW jX jjjY jZ jjj] j^ jjj_ j` ja jb jjjE jF jjj j jc jd je jf j[ j\ ji jj jjjjjjj-j.jjj; j< jG jH j j ji jj jjjm jn jo jp jjjjjjjjj j j j ju jv j j j j jy jz j{ j| j} j~ j9 j: j jjjj j jjjjjK jL j j jjj j jjj j j j j= j> jjj7j8j j j j j+ j, jj j j j7 j8 j!j"j j je jf j#j$j j j j j)j*j+j,j9j:j/j0j1j2jjj5j6j'j(j j j9j:j j jojpj j j j j j j=j>j j j j j;j<jojpj?j@j j j j j j jAjBj?j@j j jwjxj j jCjDjEjFj j j3j4j j jGjHj j jIjJj j j j j} j~ jujvjMjNj j jOjPjQjRjSjTjUjVjWjXjYjZj j j[j\j]j^j j j_j`jjj j j j jcjdj j jgjhjijjj j j j j j j j jQ jR jqjrj j ju jv j j jujvj j j j j j j j jwjxj7j8j j j{j|j j j}j~j j jI jJ jm jn jjj j jjj j jjj j jjj j jjj j jjjjj j j j j j jjjjj j jjj j j j j} j~ j j j j jjjjj j j5j6u(j j jjjjjjjjj'j(j j j j jjjjjjjjj j jcjdjjjjj j j j j j j# j$ jjj j jjjjjjjjj j j j jjjjjwjxj j jjjjj j j! j" j# j$ jjjjj% j& j' j( j) j* jkjlj+ j, j- j. j/ j0 jjjjjjjg jh jjj3 j4 j5 j6 j7 j8 j9 j: j; j< j j jjj= j> j? j@ j j jA jB jjjWjXj j jE jF jjj j jjjG jH jjjI jJ j j jM jN jjjjj j jjjO jP jjjQ jR jU jV jU jV j j jW jX j j j j jjj] j^ jjj_ j` jjjjjjjjjKjLjjj_j`jc jd jjj j je jf j j jg jh j j ji jj jk jl jjjjjjjo jp jajbjq jr js jt jc jd jw jx j j jjjjj j jy jz jjj j jjjjjjjjjjj j j j jjj j j j j j jjj j j j j j j j jjjjjjj j jjuj}rNL(j j j j j jjjjjjjjjjjjjjjjjjj j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j3j4j5j6j7j8j9j:j;j<j=j>j?j@jAjBjCjDjEjFjGjHjIjJjKjLjMjNjOjPjSjTjUjVjWjXjYjZj[j\j]j^j_j`jajbjcjdjejfjgjhjijjjkjljmjnjojpjqjrjsjtjwjxjyjzj{j|j}j~jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j!j"jjjjjjjjjjjjjjjjjjjjjjj j j j j j j jjjjjjjjjjjjjjjjjjj j!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j5j6j7j8j9j:j;j<j=j>j?j@jAjBjCjDjEjFjGjHjIjJjKjLj1j2jOjPjQjRjSjTjUjVjWjXjYjZj[j\j]j^j_j`jajbjcjdjejfjjjijjjjjmjnjojpj7j8jsjtjujvjwjxjyjzj{j|j}j~jjj9j:jjj;j<jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj?j@jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjjjjj!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0jMjNj3j4j5j6jqjrjjjjjjjAjBjCjDjEjFjjjIjJjKjLjMjNjOjPjQjRjSjTjUjVjWjXjYjZj[j\j]j^j_j`j[j\jajbjcjdjejfjgjhjijjjkjljjjmjnjojpjqjrjsjtjujvjwjxjyjzj{j|j}j~jjjjjjjjjjjjjjjjjjjjjjjjjjj7j8jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjAjBjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjKjLjjjjjjjjjjjjjjjjjjjjjMjNjjjjj j j j j jjjjjjjjjjjjjjjjjjj j!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j3j4j5j6jjj9j:j;j<j=j>j?j@jjjCjDjEjFjGjHjIjJjjjjjjjOjPjQjRjSjTjUjVjWjXjYjZjejfj]j^j_j`jajbjcjdjjjgjhjijjjkjljmjnjojpjqjrjsjtjujvjwjxjyjzj{j|j}j~jjjjjjjjjjjjjjjjjujvjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjgjhjjjkjljjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj=j>jjjjjGjHjjjjj+j,jjj-j.jjjjjjj/j0jjjjjjjjjjjjjjjjjjjjj j jQjRj jjjjjjjjjjjjjjjjjjj j!j"j#j$j%j&j'j(j)j*j3j4jjjjj1j2j3j4j5j6j7j8j9j:j;j<uj=}rOL(j?j@jAjBjCjDjEjFjjjIjJjKjLjMjNjOjPjjjSjTjUjVjjjYjZj[j\j]j^j_j`jajbjcjdjejfjgjhjijjjjjmjnjojpjqjrjyjzjujvjwjxjsjtj{j|j}j~jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j jjjjjjjjjjjjjQjRjjjWjXjjjkjljjjjjjjjjUjVjjjjjjjkjljjjjjjjjjjjjjjjjjjjjjjjjjjjjjujvj!j"jjjjjjjjjjj7j8jjjjjjjjjjjjjjjjjjjjjjjjjjj j j jjjjjjjjjjjjjjjjjjj jGjHj#j$j%j&j)j*j+j,j]j^j/j0j1j2j3j4j=j>j5j6j9j:j;j<jejfj?j@jAjBjCjDjEjFjGjHjIjJjKjLjMjNjOjPjQjRjSjTjWjXjYjZj[j\j'j(j_j`jajbjjjcjdjgjhjijjjjjmjnjojpjqjrjsjtj-j.jwjxjyjzj{j|j}j~jjjjjjjjjjjjjjuj'}rPL(j/j0j1j2jEjFjKjLjMjNjQjRjWjXj]j^j_j`jwjxjgjhjkjljojpjqjrjyjzj7j8jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj}j~jjjjjjjjjjjUjVjjjjjjjjjj j j j j j j j j j)j*j-j.j3j4j5j6j{j|j9j:j;j<j=j>jAjBjGjHjOjPjSjTjjjjjsjtjYjZjjjajbjcjdjjjujvjjjejfjjjjjmjnjjjjjjjjjjj j jjj[j\jjjijjjjjjjjjjjjjjjjjjjjj+j,jjjjjjjjjjj?j@jjjIjJjjjjjCjDjjj j j j j j j j jjj j uj}rQL(jjjjjjjjjjjjjjjjj jjjjjjjjjjjjjjjjjjjj j j j jjjjjjjjj+j,jjj3j4jjjj j!j"j#j$j%j&j'j(j)j*j-j.j/j0j1j2jAjBj5j6j7j8j9j:j;j<j=j>j?j@jGjHjCjDjEjFjjjIjJjKjLuj7}rRL(j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7uj }rSL(j j j j j j j j j j j j j j j j j j j j j j uj5}rTL(j7j8j9j:j;j<j=j>j?j@jAjBjCjDjjjEjFjGjHjIjJja jb jMjNjOjPjQjRjSjTjUjVjWjXjYjZj[j\j]j^j_j`jajbj j jcjdjejfjgjhjijjjkjljmjnjojpjqjrj j jujvjwjxjyjzj{j|j}j~jjj j jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j jjjjjjjjjjjjjjjjjjjjj+ j, jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj7 j8 jc jd jjj j jj j j j j j; j< j j j j j j jsjtj j j j j j j j j j j j j j j j j j j j j! j" j# j$ j% j& j' j( j) j* j j j- j. j/ j0 j1 j2 j3 j4 j5 j6 jA jB j9 j: j j j= j> j? j@ jjjE jF jG jH jI jJ jK jL jM jN jO jP jS jT jU jV j j jy jz j[ j\ j] j^ j_ j` j j jjje jf jg jh ji jj jk jl jm jn jo jp jq jr js jt ju jv j j jY jZ j{ j| j} j~ j j jw jx j j j j j j j j j j jjj j j j j j j j j j j j j j j j j j jC jD j j j j j j j j j j j j j j jjj j j j j j j j j j j j j j j j j j j j j j j j j j j j jKjLj j jW jX j j j j j j j j jjj j jQ jR uj}rUL(jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj-j.jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j jjjj jjj!j"jjj j jjj#j$jjjjjjjjjjj%j&j'j(jjj jjjj)j*j+j,jjj/j0j1j2j3j4uj }rVL(j !j !j !j!j!j!j!j!j!j!j!!j"!j!j!j'!j(!j,j,j1!j2!j3!j4!j5!j6!j7!j8!j9!j:!j;!j"j?"j@"jE"jF"jG"jH"j;&j<&jK"jL"jM"jN"jO"jP"jQ"jR"jU"jV"j_"j`"jg"jh"jk"jl"js"jt"ju"jv"jw"jx"jy"jz"j{"j|"j}"j~"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j(j(j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j #j%#j&#j'#j(#j)#j*#j-#j.#j/#j0#j1#j2#j3#j4#j5#j6#j7#j8#j=#j>#jA#jB#jG#jH#jI#jJ#jU#jV#jW#jX#j[#j\#j]#j^#j_#j`#jc#jd#je#jf#ji#jj#jm#jn#jo#jp#js#jt#j{#j|#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j;(j<(j#j#j+j+j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j$j$j$j $j $j$j$j$j$j$j$j$j$j$j$j$j $j%$j&$j'$j($j/$j0$j1$j2$j3$j4$j5$j6$j;$j<$j=$j>$j?$j@$jA$jB$jG$jH$jO$jP$jQ$jR$jS$jT$jU$jV$jW$jX$j]$j^$j_$j`$jm$jn$jo$jp$js$jt$ju$jv$j+j+jy$jz$j{$j|$j}$j~$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j&j&j$j$j$j$j&j&j$j$j+j+j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j%j%j%j%j%j %j %j %j %j%j%j%j%j%j %j#%j$%j+j+j'%j(%j+j+j1%j2%j5%j6%j;%j<%jG%jH%jM%jN%jS%jT%jU%jV%jW%jX%jY%jZ%j[%j\%j_%j`%ja%jb%jc%jd%jm%jn%js%jt%j+j+jw%jx%jy%jz%j%j%j%j%j%j%j%j%j%j%j%j%j&j&j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j!j!j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j&j&j&j-j-j&j&j &j &j &j&j&j&j&j&j!&j"&j-&j.&j1&j2&j&j&j7&j8&j=&j>&jE&jF&jG&jH&jO&jP&jW&jX&jY&jZ&j[&j\&j]&j^&j&j&jc&jd&j&j&jo&jp&j!j!j&j&j&j&j&j&j&j&j&j&j&j&j$j$j&j&j$j$j&j&j&j&j&j&j!,j",j&j&j&j&j&j&j&j&j&j&j%j%j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&je&jf&j&j&j&j&j&j&j&j&j&j'j'j'j'j'j'j'j'j'j'j'j!'j"'j#'j$'j''j('j)'j*'j+'j,'j/'j0'j5'j6'j7'j8'j='j>'j?'j@'jW'jX'jY'jZ'j['j\'j]'j^'ja'jb'j#"j$"jo'jp'ju'jv'jw'jx'j{'j|'j'j'j'j'j'j'j'j'j'j'jI,jJ,j'j'j'j'j'j'j (j(j-"j."j'j'j'j'j'j'j'j'j'j'j'j'j'j'j )j )j'j'j'j'j'j'j'j'j'j'j'j'jS,jT,j'j'j'j'j'j'j'j'j'j'j'j'j'j'j'j'j+j +j'j'j'j'j(j(j(j(j(j(j (j (j (j (j(j(j(j (j#(j$(j%(j&(j)(j*(j3(j4(j5(j6(jA(jB(jG(jH(jK(jL(jO(jP(jU(jV(jY(jZ(j[(j\(j_(j`(jg(jh(ji(jj(jk(jl(jo(jp(jq(jr(js(jt(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(js,jt,j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j(j)j)j)j)j&j&j )j)j)j)j)j)j)j)j)j)jK'jL'j#)j$)j')j()j1)j2)j5)j6)j7)j8)j9)j:)j=)j>)j?)j@)jA)jB)jI)jJ)jQ)jR)jU)jV)jW)jX)jY)jZ)j])j^)ja)jb)jc)jd)jg)jh)ji)jj)jk)jl)jo)jp)js)jt)jy)jz)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j"j"j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j,j,j9*j:*j)j)j)j)j)j)j/j/j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j*j*j*j*j*j *j *j*j*j*j*j#*j$*j1*j2*j3*j4*j5*j6*j*j*j=*j>*jE*jF*jI*jJ*jK*jL*jM*jN*jQ*jR*jS*jT*jU*jV*j'j'j"j"j]*j^*j_*j`*jc*jd*jg*jh*ji*jj*jk*jl*jo*jp*j,j,j'j'j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j,j,j/j/j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j*j+j+j+j+j+j +j +j +j+j+j+j,j,j+j+j+j+j0j0j#+j$+j%+j&+j'+j(+j++j,+j-+j.+j/+j0+j1+j2+j5+j6+j7+j8+j9+j:+j?+j@+j-j-jC+jD+jE+jF+jG+jH+jK+jL+jQ+jR+j'j'jW+jX+j[+j\+j]+j^+j_+j`+jm+jn+jq+jr+ju+jv+j}+j~+j+j+j+j+j+j+j+j+j#j#j+j+j+j+j+j+j+j+j+j+j+j+j+j+jw$jx$j+j+j+j+j+j+j+j+j+j+j+j+j$j$j+j+j+j+j+j+j+j+j+j+j%%j&%j-%j.%j+j+ju%jv%j+j+j+j+j+j+j+j+j-j-j,j,j,j,j,j,j,j,j,j,j,j,j-j-j,j ,j%,j&,j+,j,,j-,j.,j1,j2,j3,j4,j5,j6,j9,j:,j;,j<,j=,j>,j?,j@,jC,jD,j'j'jM,jN,jO,jP,jQ,jR,j'j'jY,jZ,ja,jb,jk,jl,j"j"j.j.jw,jx,j)j)j,j,j-j-j-'j.'j,j,j,j,j)j)j,j,j-j-j,j,j,j,j,j,j,j,jq*jr*j,j,j,j,j,j,j'j'j,j,j*j*j,j,j,j,j,j,j,j,j"j"j+j+j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j-j-j ,j ,j,j,j#j#j -j -j -j-j-j-j-j-j'-j(-j)-j*-j+-j,-j3-j4-j5-j6-j9-j:-j;-j<-j=-j>-j?-j@-jC-jD-jQ-jR-jS-jT-jW-jX-j[-j\-j]-j^-jg-jh-ji-jj-jk-jl-jo-jp-jq-jr-js-jt-ju-jv-jw-jx-jy-jz-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-jM-jN-j-j-j-j-j-j-j!j!j-j-j-j-j+(j,(j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j-j.j.j.j .j.j.j.j.j.j.j.j.j.j.j.j.j .j?(j@(j-.j..j5.j6.j9.j:.j=.j>.jC.jD.jE.jF.jG.jH.jI.jJ.jS.jT.jY.jZ.j].j^.jg.jh.ji.jj.jm.jn.jy.jz.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.jK#jL#jI'jJ'j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.jY#jZ#j.j.j.j.j.j.j /j/j/j/j/j/j/j/j/j /j//j0/j7/j8/j;/j!j)j)jC!jD!j"j"jI!jJ!j"j"jO!jP!jQ!jR!jS!jT!jU!jV!jW!jX!u(j/j/j[!j\!j]!j^!jc!jd!je!jf!ji!jj!jm!jn!jC#jD#j!$j"$ju)jv)j(j(j!j!j!j!j#j#j!j!j!j!j!j!j!j!j%j%j!j!j!j!j/j/j(j(j!+j"+j}%j~%j}!j~!j!j!j%j%j%j%j!j!j!j!j!j!jC&jD&j!j!j!j!j(j(j!j!j&j&j9'j:'j!j!j!j!j"j"j,j,j&j&j&j&j'j'j"j"j"j"j"j "j%"j&"j'"j("j)"j*"j'j'j5"j6"j-j-j(j(jC"jD"j)j)j(j(jS"jT"jY"jZ"j["j\"j]"j^"ja"jb"j(j(je"jf"ji"jj"jo"jp"jq"jr"jq'jr'j+*j,*j(j(j"j"j"j"j"j"j)j)j"j"j"j"jY*jZ*j"j"j"j"j"j"j"j"j#j#j+j+j'j'j"j"j"j"j"j"j"j"j,j,j"j"j+j+j"j"j"j"j"j"j"j"j7,j8,jK,jL,j;"j<"j"j"j,j,j,j,j"j"j#j#j-j-j#j#j #j #j#j#j{-j|-j#j#j!#j"#j##j$#j"j"j .j .j'.j(.j9#j:#j;#j<#j;.j<.j?#j@#jU.jV.jE#jF#j%j%j.j.j.j.jM#jN#jO#jP#jQ#jR#jS#jT#j.j.j/j/ja#jb#jq#jr#jW/jX/ju#jv#jw#jx#jy#jz#j}#j~#j/j/j#j#j/j/j#j#j#j#j#j#j#j#j#j#j#j#j#j#j,j,j#j#j#j#jY/jZ/j!j!j#j#j#j#j/(j0(j)j)j#j#j#j#j#j#jA"jB"j#j#j#j#j#j#j#j#j/j/j#j#j#j#jE$jF$j#j#j#j#j#j#j$j$j $j $j $j$j$j$j$j$j#$j$$j)$j*$j+$j,$j-$j.$j7$j8$j9$j:$j/j/jC$jD$jo%jp%jK$jL$jM$jN$j%j%j%j%jY$jZ$j[$j\$j%j%ja$jb$jc$jd$je$jf$jg$jh$ji$jj$jk$jl$j*j*jq$jr$jm&jn&j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j$j'j'j$j$j'j'j$j$j$j$j$j$j-j-j$j$j$j$j(j(j$j$j$j$jq)jr)j)j)j %j%j%j%j%j%j%j%j%j%j%j%j/j/j*j*j*j*j,j,j)%j*%j/%j0%j3%j4%j"j"j7%j8%j9%j:%j=%j>%j?%j@%jA%jB%jC%jD%ja+jb+jI%jJ%jK%jL%jO%jP%j+j+j[.j\.j"j"j]%j^%ja*jb*je%jf%jg%jh%ji%jj%jk%jl%j_,j`,jq%jr%j,j,j{%j|%j,j,j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j%j$j$j.j.j%j%j%j%j%j%j%j%j)j)j.j.j%j%j%j%j!j!j.j.jm)jn)j.j.ji'jj'j/j/j%j%j%j%jq.jr.j&j&j/j/j&j&j &j &j0j0j&j&j&j&j&j&j&j&j#&j$&j%&j&&j'&j(&j)&j*&j!j!j})j~)j3&j4&j5&j6&jg#jh#jI"jJ"jW"jX"j?&j@&jI&jJ&jK&jL&jQ&jR&jS&jT&jU&jV&ja&jb&j"j"jg&jh&jk&jl&jq&jr&js&jt&ju&jv&jw&jx&jy&jz&j{&j|&j}&j~&j!j!j&j&j)j)js!jt!j&j&j*j*j$j$j&j&j,j,j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j&j;*j<*j&j&j&j&j+j+j&j&j&j&j&j&j_&j`&j&j&j&j&j&j&j&j&j(j(j&j&j 'j 'j'j'j!j!j 'j 'j 'j'j$j$j'j'j'j'j'j'j'j'j'j 'j'j'j%'j&'j'j(j!j!j$j$j1'j2'j;'j<'jA'jB'jC'jD'jE'jF'jG'jH'j)j)j)j )jM'jN'jS'jT'je'jf'jg'jh'je,jf,jk'jl'jm'jn'js'jt'jk#jl#jy'jz'j}'j~'j,j,j'j'j'j'j'j'j'j'jW*jX*j}*j~*j'j'j'j'jU+jV+j'j'j'j'j'j'j'j'j'j'j'j'j-*j.*j'j'j'j'j'j'j'j'j'j'j,j,j,j,j!j!j(j(j(j(j(j(j(j(j{*j|*j'(j((j*j*j-(j.(j-j-j1(j2(j,j,j.j.j9(j:(j$j$j=(j>(j%.j&.j/.j0.jC(jD(jI(jJ(jQ(jR(jS(jT(j](j^(je(jf(jm(jn(j.j/ju(jv(jw(jx(jy(jz(j{(j|(j}(j~(j(j(j(j(j(j(j(j(j(j(j(j(j 0j0j!j!j(j(j(j(j(j(j(j(j(j(j)j)j!j!j(j(j!j!j(j(j(j(j,j,jm"jn"j(j(j(j(j"j"j"j"j%j%j(j(j(j(j+#j,#j(j)j)j)jw.jx.j )j )j#j#j)j)j)j)j1-j2-j)j)j!(j"(j!)j")j%)j&)j))j*)j!j!j/)j0)j$j$jC)jD)jE)jF)jG)jH)j+j+jK)jL)j.j.jO)jP)jS)jT)jQ%jR%j[)j\)j_)j`)j#j#je)jf)j%j%j%j%j%j%jw)jx)j{)j|)j/&j0&j)j)j)j)j)j)j.j.j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j)j-)j.)j'j'j)j)j'j'j)j)j7(j8(j*j*jW(jX(j(j(j)j)j)j)j.j.j;)j<)j)j)j*j*j*j*j*j*j *j *j*j*j*j*j*j*j*j*j*j *j!*j"*j%*j&*j'*j(*j)*j**j 0j 0j*j*j7*j8*j*j*jA*jB*jC*jD*jO*jP*j[*j\*j&j &je+jf+jk+jl+je*jf*j'j'jm*jn*js*jt*ju*jv*jw*jx*jy*jz*j*j*j*j*j*j*jU,jV,j*j*j*j*j,j,j.j.jK.jL.j*j*j*j*jm-jn-jU'jV'j-j-j*j*j7-j8-j*j*j1.j2.j*j*j*j*j*j*j*j*j*j*j*j*j/j/j*j*j*j*j+j+js/jt/j +j +j+j+j+j+j+&j,&j+j+j.j.jM&jN&j)+j*+j3+j4+j%j%j;+j<+j=+j>+j!j!j!j!j"j"j+j+jM+jN+jO+jP+jY+jZ+j&j&jg+jh+ji+jj+jo+jp+js+jt+jw+jx+jy+jz+j{+j|+j+j+j+j+j+j+j+j+j+j+j+j+j+j+jE/jF/j+j+j+j+j$j$j+j+j+j+j+j+j+j+j?!j@!j$j$j+j+j$j$j+j+j+j+j+j+j+j+j !j !j+j+j)j)j+j+j+j+j+j+j+j+j+j+j+j+j"j"j *j*j+j,j,j,j,j,j ,j ,j ,j,j,j,j&j&jE(jF(j$j$j#,j$,j),j*,j/,j0,j"j"jA,jB,jE,jF,jk/jl/j$j$jW,jX,j'j'j[,j\,j],j^,jc,jd,jg,jh,ji,jj,jm,jn,jq,jr,j(j(ju,jv,jy,jz,j},j~,j&j&j(j(j,j,jE%jF%j,j,ja(jb(j,j,j,j,j,j,j)j)j,j,j,j,jI$jJ$j,j,j,j,j}.j~.j,j,j$j$j,j,j,j,j,j,j!%j"%j*j*j-j-j,j,j,j,j,j-j-j-j+%j,%j,j,j-j-j/!j0!j,j,j+j+j-j-j/j/j!-j"-j#-j$-j%-j&-j--j.-j/-j0-j*j*j}-j~-jA-jB-jE-jF-jG-jH-jI-jJ-jK-jL-j-j-jO-jP-jU-jV-j-j-j_-j`-ja-jb-je-jf-js.jt.j)j)j-!j.!j-j-j-j-j/j/j-j-j-j-j-j-j-j-j-j-j-j-j/j/j/j/ji&jj&j-j-j.j.j#!j$!j-j-j-j-j-j-j!j!j-j-j-j-j-j-j3'j4'jo,jp,jc(jd(j-j-j #j#j-j-j-j-j-j-j!j!j #j #j.j.j.j.j .j .j9&j:&j$j$j(j(j.j.j.j.j!.j".j#.j$.j).j*.j?*j@*j/j/j3.j4.j7.j8.jS+jT+j?.j@.jA.jB.j)j)j_'j`'jM.jN.jO.jP.jQ.jR.jW.jX.j,j,j_.j`.ja.jb.je.jf.jk.jl.ju.jv.j{.j|.j.j.jA&jB&j.j.j.j.j*j*j.j.j%j%j.j.j.j.jM(jN(jQ'jR'j.j.jc'jd'j'j'j.j.j.j.j.j.j'j'j.j.j.j.j.j.j.j.j.j.j"j"j.j.j.j.j.j.j.j.j)j)j.j.jM)jN)j/j/j/j/j /j /jo.jp.j/j/j/j/j)j)j!j!jO'jP'j/*j0*jG*jH*j!/j"/j#/j$/j%/j&/j'/j(/j)/j*/j+/j,/j1/j2/j3/j4/j5/j6/j0j0j9/j:/j=/j>/j-j-j -j -ju/jv/jK/jL/jM/jN/jO/jP/j+j+jS/jT/jU/jV/j-j-j',j(,ji/jj/jG,jH,jm/jn/j-/j./j1"j2"j,j,jy/jz/j}/j~/j&j&j/j/j,j,j,j,j/j/j&j&j-j -j/j/j/j/j/j/jY-jZ-j/j/j/j/j-j-jc+jd+j0j0j "j "j/j/j/j/j/j/j/j/j/j/j/j/j/j/jc-jd-j/j/j /j /j/j/j/j/j/j/j-j-jq/jr/j%j%j0j0j/j/jc.jd.j 0j 0j3)j4)j0j0uj0}rWL(j0j0j0j 0j!0j"0j#0j$0j%0j&0j'0j(0j)0j*0j+0j,0j-0j.0j2j2j10j20j30j40j50j60j2j2j70j80j90j:0j;0j<0ju1jv1j?0j@0jA0jB0jC0jD0j92j:2jG0jH0jI0jJ0jK0jL0jM0jN0jO0jP0j2j2jQ0jR0jS0jT0jU0jV0jW0jX0jY0jZ0j[0j\0j=2j>2j_0j`0j?2j@2jc0jd0je0jf0jg0jh0ji0jj0jk0jl0jm0jn0jo0jp0jq0jr0js0jt0ju0jv0jw0jx0jy0jz0j{0j|0j}0j~0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j3j3j0j0j1j1j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j3j3j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j0j3j3j0j0j0j0j0j0j0j1j1j1j1j1jY2jZ2j1j1j 1j 1j 1j 1j 1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j 1j!1j"1j#1j$1j%1j&1j'1j(1j)1j*1j2j2j+1j,1j-1j.1j/1j01j11j21j31j41j51j61j71j81ja2jb2j;1j<1j=1j>1jA1jB1jC1jD1jE1jF1jG1jH1jI1jJ1jK1jL1jM1jN1jO1jP1jQ1jR1j1j1jS1jT1jU1jV1jW1jX1jY1jZ1j[1j\1j]1j^1j_1j`1ja1jb1j1j1jc1jd1je1jf1jg1jh1ji1jj1jk1jl1jo1jp1jq1jr1js1jt1j=0j>0jw1jx1jy1jz1j{1j|1j}1j~1j3j3j1j1j0j0j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j3j3j1j1j1j1j1j1j2j2j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j1j3j3j1j1j1j1j1j1j1j1j1j1j2j2j1j1j1j1j 3j3j1j1j1j1j1j1j1j1j1j2j2j2j2j2j2j2j2j2j 2j 2j 2j 2j 2j2j2j2j2j2j2j2j2j2j2j2j3j3j2j2j2j2j2j 2j!2j"2j#2j$2j%2j&2j'2j(2j)2j*2j+2j,2j-2j.2j/2j02j12j22j32j42j52j62j72j82jE0jF0j;2j<2j]0j^0ja0jb0jA2jB2jC2jD2jE2jF2jG2jH2jI2jJ2jK2jL2jM2jN2jO2jP2jQ2jR2jS2jT2jU2jV2jW2jX2j1j1j[2j\2j]2j^2j_2j`2j91j:1jc2jd2je2jf2jg2jh2ji2jj2jk2jl2jm2jn2jo2jp2jq2jr2js2jt2ju2jv2jw2jx2jy2jz2j{2j|2j}2j~2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j3j3j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2jA3jB3j2j2j2j2j2j2j2j2j2j2j2j2j2j2j_3j`3j3j3j3j3j2j2j2j2j2j2j2j2j2j2j3j3j2j2j2j2j2j2j3j3j/0j00j2j2j2j2jM3jN3j0j0j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2j2js3jt3j2j2j2j2j2j2j2j2j2j2j2j3j3j3j3j3j3j3j3j3j 3j 3j 3j 3j1j1j3j3j3j3j1j1j3j3j3j3j3j3j3j3j3j3j3j 3j!3j"3j#3j$3j%3j&3j'3j(3j)3j*3j+3j,3j-3j.3j/3j03j13j23j33j43j53j63j73j83j93j:3j;3j<3j=3j>3j?3j@3j2j2jC3jD3jE3jF3jG3jH3jK3jL3j2j2jO3jP3jQ3jR3jS3jT3jU3jV3jW3jX3jY3jZ3j[3j\3j]3j^3j3j3ja3jb3jc3jd3je3jf3jg3jh3ji3jj3jk3jl3jm3jn3jo3jp3jq3jr3j3j3ju3jv3jw3jx3jy3jz3j}3j~3j3j3j3j3j3j3j3j3j3j3j0j0j?1j@1j3j3j{3j|3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3jm1jn1j3j3j3j3j3j3jI3jJ3j3j3j3j3j3j3j1j1j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j3j0j0j3j3j3j3j3j3j3j3j2j2j2j2j4j4j3j3j3j3j4j4j3j3j3j3j3j3j3j3j0j0j3j4j4j4j4j4j4j4j4j4j 4j 4j 4j 4j 4j4j4j4j4j4j4j4j3j3j3j3j4j4j4j4j4j4j4j 4uj!4}rXL(j#4j$4j%4j&4j4j4j)4j*4j14j24j34j44j74j84j94j:4j'4j(4j=4j>4j?4j@4jG4jH4jK4jL4jO4jP4j]4j^4j_4j`4jg4jh4jy6jz6j/4j04js4jt4ju4jv4j4j4jk6jl6j4j4j4j4j4j4j5j5j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j]5j^5j4j4j4j4j4j4j4j4j4j4j4j4j5j5j5j5j 5j 5j5j5j5j5je5jf5j5j 5j!5j"5j)5j*5j/5j05j35j45j75j85j95j:5jE5jF5jG5jH5jI5jJ5jM5jN5jO5jP5jQ5jR5jS5jT5jW5jX5j[5j\5j4j4j_5j`5ja5jb5jy5jz5ji5jj5jm5jn5jq5jr5js5jt5jw5jx5j{5j|5j5j5j5j5j5j5j5j5j5j5j5j5jq4jr4j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j4j4j5j5j5j5j5j6j6j6j 6j 6j6j6j!6j"6j%6j&6j)6j*6j-6j.6j16j26j56j66j96j:6j;6j<6j=6j>6jE6jF6jG6jH6jI6jJ6jO6jP6jW6jX6j[6j\6jg6jh6ji6jj6j.7j/7jm6jn6jo6jp6jq6jr6js6jt6jw6jx6jk4jl4j{6j|6j6j6j6j6j6j6j6j6XWj6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6jC6jD6j7j7j7j7j7j7j 7j 7j7j7j7j7j7j7j7j7j"7j#7j(7j)7j*7j+7j,7j-7j07j17j27j37j47j57j:7j;7j<7j=7j5j5jF7jG7jR7jS7jT7jU7jV7jW7jZ7j[7j\7j]7jj7jk7jr7js7jz7j{7j|7j}7j;4j<4j+4j,4j-4j.4j4j4jA4jB4jC4jD4jE4jF4j5j5jI4jJ4j+5j,5jM4jN4jQ4jR4jS4jT4jU4jV4jW4jX4jY4jZ4j[4j\4ja4jb4jc4jd4je4jf4ji4jj4j5j5jm4jn4jo4jp4j6j6j6j6jw4jx4j{4j|4j4j4j4j4j4j4j6j6j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j4jy4jz4j4j4j4j4j4j4j4j4j4j4j4j4j4j4j'5j(5j4j4j4j4j4j4j4j5j5j5j5j5j 5j 5j5j5j5j5jl7jm7j5j5j5j5j5j5ju6jv6j#5j$5j%5j&5jK6jL6j-5j.5j55j65j 7j!7j=5j>5j?5j@5jA5jB5jK5jL5j 5j5jU5jV5j6j6jc5jd5j5j5j6j6j;5j<5jo5jp5ju5jv5j^7j_7jg5jh5jk5jl5j}5j~5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j5j6j6j5j5j5j5j5j5j6j6j5j5j5j5j5j5j5j5j@7jA7j5j5j5j5j5j5j 6j 6j5j5j5j5j5j5j5j5j5j5j4j4j4j4j6j6j6j6j 6j6j6j6jJ7jK7j6j6j6j6j6j 6jt7ju7j#6j$6jB7jC7j'6j(6j+6j,6j}4j~4j36j46ja6jb6j76j86jA6jB6j5j5j6j6j5j5jM6jN6jQ6jR6jL7jM7jU6jV6jY6jZ6j]6j^6jc6jd6je6jf6j54j64j6j6j}6j~6j6j6j6j6j4j4j6j6jX7jY7j_6j`6j15j25j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j5j5j6j6j6j6j6j6j/6j06j6j6j?6j@6j6j6j6j6j6j6j6j6j6j6j6j6j$7j%7j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j6j5j5j7j7j4j4j7j 7j 7j 7j4j4j7j7j7j7j4j4j7j7j7j7jY5jZ5j7j7jC5jD5j6j6j&7j'7j5j5j5j5j67j77j87j97j>7j?7j6j6jD7jE7jH7jI7jS6jT6jN7jO7jP7jQ7j6j6j6j6j`7ja7jb7jc7jd7je7jh7ji7jp7jq7jf7jg7jv7jw7jx7jy7jn7jo7uj~7}rYL(j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7j7ujM}rZL(j{j|jQjRjSjTjUjVjWjXjwjxj[j\j]j^j_j`jWjXjjjcjdjejfjgjhjijjjkjljojpjqjrjsjtjujvjwjxjyjzj{j|j}j~jjjjjjjjjjjjjjjjjjjjj}j~jjjjjjjjjjjjj]j^jjjjjyjzjjjjjjjajbjjjjjjjjjjjjjjjjjjjjjjjjjejfjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j jjj jjjjjjjjjjjjjjjjj j!j"j#j$jjj'j(j)j*jjj-j.j/j0j1j2j3j4j5j6jjj7j8j9j:j;j<j=j>j?j@jCjDjEjFjGjHjIjJjKjLjjjojpjOjPjQjRjjjjjajbj[j\jjjjjjjcjdjjjgjhjijjjkjljmjnjjjqjrjsjtjjjwjxjkjljyjzj{j|j}j~jjjMjNjjjUjVjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjKjLjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjjjjjj j!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j3j4j5j6j7j8jjj=j>jAjBjCjDjEjFjjjIjJj jjcjdjMjNjOjPjQjRjSjTjUjVjWjXjYjZj[j\j]j^j_j`jajbjcjdjejfjgjhjijjjkjljkjljmjnjojpjqjrjjjsjtjujvjYjZj{j|j}j~j_j`jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjGjHjjjjjjjjj%j&jijjjjjjjjjjjjjjjjjjjjjjjjjjjgjhjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjjjjjjjjj j!j"j#j$jjj'j(j)j*j+j,j-j.j/j0j1j2j3j4j5j6j7j8j9j:jjj=j>j?j@jAjBjCjDjEjFjGjHjIjJjjjKjLjMjNjOjPjQjRjUjVjWjXjYjZj[j\j]j^j_j`jajbjcjdjjjejfjgjhjijjjkjljmjnjojpjqjrjsjtjujvjwjxjyjzjOjPj}j~jjjjjjjjjijjjjjjjjjjjjjjjjjjjjjjjjj+j,jjjjjAjBjjjjjjjjjjjWjXjjjjjjjjjjjjjjjjjjjijjjjjjjjj j jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj j j j j jjjjjjjjjjjjjjj j!j"j#j$j%j&j'j(j)j*j+j,j-j.j/j0j1j2j}j~j3j4j5j6j7j8j9j:j;j<j=j>j?j@jAjBj!j"jEjFjGjHjIjJjKjLjMjNjOjPjQjRjjjSjTjUjVjWjXjYjZj[j\j]j^j_j`jajbjcjdjejfjgjhjGjHjejfjmjnjojpjqjrjsjtjujvjwjxjjj{j|j-j.jjjjjAjBjjjjjjjjjjjjjjjjjjjjjjjjjjjjjujvjjjjjjjjjjjjjjjjjjjjjmjnjjjjjjjjjjjjjjjjjjjjjGjHjjjjj;j<jjjjjjjjjjjjjjjjjjj;j<jjjjjjjCjDjjjjjjjjjjjjjjjjj?j@jjjjj j j j j jjjjjjjjjjjj7j8jjjjjj j9j:j!j"j#j$j'j(j)j*j+j,jjj/j0j1j2j3j4jjj5j6j7j8j9j:j;j<j=j>j?j@jAjBjjjEjFjSjTjujvjIjJjKjLjMjNjOjPjQjRjSjTjUjVjWjXjYjZjjj[j\j]j^j_j`j{j|jajbjcjdjejfj-j.j9j:j?j@jmjnjojpjqjrjsjtjujvjwjxjyjzjjj]j^jjjjjjjjjjjjjjjjjjjjjjj%j&jjjjjjjSjTjjj_j`jjjjjjjgjhjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj;j<jjjjjjjjjjjjj j jjjyjzjjjjjjjjjjjjjjjjjj jCjDj#j$j%j&j'j(j)j*j+j,jjj/j0j1j2j3j4j5j6jjjqjrjjj=j>jjjCjDjEjFjjjIjJjKjLjMjNjOjPjQjRjSjTjUjVjjjYjZj[j\jjjjj%j&jjjjjkjljmjnjojpjsjtjYjZjwjxjyjzj{j|j}j~jjjjjjjjjjjajbjjjjjjuji}r[L(jjjjjjjjjjjkjljmjnjojpjjjqjrjjjjjjjjjjjjjwjxjyjzj{j|jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj}j~jujvjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjsjtjjjjuusUmetadatar\L}r]L(h}h$}h-}h6}h?}uUversionchangesr^L}r_L(X1.4r`L]raL(X versionaddedrbLh?KhXVersion.from_tuple_and_hintrcLXUtrdLaX1.0.4reL]rfL((X versionaddedrgLh?KhX Version.vcsrhLXUtriL(X versionaddedrjLh?KhXBzrIntegration.branch_nickrkLXUtrlL(X versionaddedrmLh?KhXGitIntegration.branch_nickrnLXUtroL(X versionaddedrpLh?KhXHgIntegration.branch_nickrqLXUtrrLeX1.3rsL]rtL(X versionaddedruLh?KhXversionrvLNUtrwLaX1.1rxL]ryL((X versionaddedrzLh?KhXVersion.from_tupler{LXUtr|L(X versionaddedr}Lh?KhXformat_versionr~LNUtrLeX1.9rL]rL(X versionaddedrLh?K hXVersion.from_expressionrLXUtrLauUtoc_num_entriesrL}rL(hKh$Kh-Kh6Kh?KuUimagesrLh)rLh]RrLbUnumbered_toctreesrLh]RrLU found_docsrLh]rL(hh$h-h6h?eRrLU longtitlesrL}rL(hhh$h%h-h.h6h7h?h@uU dependenciesrL}rL(h$h]rLUrLaRrLh?h]rLUrLaRrLuUtoctree_includesrL}rLh$]rL(XusagerLXvcs-integrationrLX referencerLXchangesrLesU temp_datarL}UtocsrL}rL(hcdocutils.nodes bullet_list rL)rL}rL(hUh}rL(h]h]h]h]h]uh]rLcdocutils.nodes list_item rL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rL(csphinx.addnodes compact_paragraph rL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLcdocutils.nodes reference rL)rL}rL(hUh}rL(U anchornameUUrefurihh]h]h]h]h]Uinternaluh!jLh]rLhXUsage instructionsrLrL}rL(hh h!jLubah"U referencerLubah"Ucompact_paragraphrLubjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rL(jL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(U anchornameU#declare-package-versionUrefurihh]h]h]h]h]Uinternaluh!jLh]rLhXDeclare package versionrLrL}rL(hXDeclare package versionrLh!jLubah"jLubah"jLubah"U list_itemrLubjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(U anchornameU#copy-versiontools-support-pyUrefurihh]h]h]h]h]Uinternaluh!jLh]rLhXCopy versiontools_support.pyrLrL}rL(hXCopy versiontools_support.pyrLh!jLubah"jLubah"jLubah"jLubjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(U anchornameU#update-manifest-inUrefurihh]h]h]h]h]Uinternaluh!jLh]rLhXUpdate MANIFEST.inrLrL}rL(hXUpdate MANIFEST.inrLh!jLubah"jLubah"jLubah"jLubjL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rL(jL)rL}rL(hUh}rL(h]h]h]h]h]uh!jLh]rLjL)rL}rL(hUh}rL(U anchornameU#patch-setup-pyUrefurihh]h]h]h]h]Uinternaluh!jLh]rLhXPatch setup.pyrLrL}rL(hXPatch setup.pyrMh!jLubah"jLubah"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jLh]rM(jL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)r M}r M(hUh}r M(h]h]h]h]h]uh!jMh]r MjL)r M}rM(hUh}rM(U anchornameU#developing-with-versiontoolsUrefurihh]h]h]h]h]Uinternaluh!j Mh]rMhXDeveloping with versiontoolsrMrM}rM(hXDeveloping with versiontoolsrMh!j Mubah"jLubah"jLubah"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameU #releasesUrefurihh]h]h]h]h]Uinternaluh!jMh]r MhXReleasesr!Mr"M}r#M(hXReleasesr$Mh!jMubah"jLubah"jLubah"jLubeh"U bullet_listr%Mubeh"jLubeh"j%Mubeh"jLubah"j%Mubh$jL)r&M}r'M(hUh}r(M(h]h]h]h]h]uh]r)M(jL)r*M}r+M(hUh}r,M(h]h]h]h]h]uh!j&Mh]r-MjL)r.M}r/M(hUh}r0M(h]h]h]h]h]uh!j*Mh]r1MjL)r2M}r3M(hUh}r4M(U anchornameUUrefurih$h]h]h]h]h]Uinternaluh!j.Mh]r5MhXVersion Tools Documentationr6Mr7M}r8M(hh,h!j2Mubah"jLubah"jLubah"jLubjL)r9M}r:M(hUh}r;M(h]h]h]h]h]uh!j&Mh]rM(hUh}r?M(h]h]h]h]h]uh!j9Mh]r@MjL)rAM}rBM(hUh}rCM(U anchornameU #installationUrefurih$h]h]h]h]h]Uinternaluh!j=Mh]rDMhX InstallationrEMrFM}rGM(hX InstallationrHMh!jAMubah"jLubah"jLubah"jLubjL)rIM}rJM(hUh}rKM(h]h]h]h]h]uh!j&Mh]rLMjL)rMM}rNM(hUh}rOM(h]h]h]h]h]uh!jIMh]rPMjL)rQM}rRM(hUh}rSM(U anchornameU #featuresUrefurih$h]h]h]h]h]Uinternaluh!jMMh]rTMhXFeaturesrUMrVM}rWM(hXFeaturesrXMh!jQMubah"jLubah"jLubah"jLubjL)rYM}rZM(hUh}r[M(h]h]h]h]h]uh!j&Mh]r\MjL)r]M}r^M(hUh}r_M(h]h]h]h]h]uh!jYMh]r`MjL)raM}rbM(hUh}rcM(U anchornameU#version-to-string-conversionUrefurih$h]h]h]h]h]Uinternaluh!j]Mh]rdMhX __version__ to string conversionreMrfM}rgM(hX __version__ to string conversionrhMh!jaMubah"jLubah"jLubah"jLubjL)riM}rjM(hUh}rkM(h]h]h]h]h]uh!j&Mh]rlM(jL)rmM}rnM(hUh}roM(h]h]h]h]h]uh!jiMh]rpMjL)rqM}rrM(hUh}rsM(U anchornameU#indices-and-tablesUrefurih$h]h]h]h]h]Uinternaluh!jmMh]rtMhXIndices and tablesruMrvM}rwM(hXIndices and tablesrxMh!jqMubah"jLubah"jLubjL)ryM}rzM(hUh}r{M(h]h]h]h]h]uh!jiMh]r|Mcsphinx.addnodes toctree r}M)r~M}rM(hUh}rM(UnumberedKUparenth$U titlesonlyUglobh]h]h]h]h]Uentries]rM(NjLrMNjLrMNjLrMNjLrMeUhiddenU includefiles]rM(jLjLjLjLeUmaxdepthKuh!jyMh]h"UtoctreerMubah"j%Mubeh"jLubeh"j%Mubh-jL)rM}rM(hUh}rM(h]h]h]h]h]uh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rM(jL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameUUrefurih-h]h]h]h]h]Uinternaluh!jMh]rMhX Integration with version controlrMrM}rM(hh5h!jMubah"jLubah"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rM(jL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rM(jL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameU#batteries-includedUrefurih-h]h]h]h]h]Uinternaluh!jMh]rMhXBatteries includedrMrM}rM(hXBatteries includedrMh!jMubah"jLubah"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rM(jL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameU#bazaarUrefurih-h]h]h]h]h]Uinternaluh!jMh]rMhXBazaarrMrM}rM(hXBazaarrMh!jMubah"jLubah"jLubah"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameU#gitUrefurih-h]h]h]h]h]Uinternaluh!jMh]rMhXGitrMrM}rM(hXGitrMh!jMubah"jLubah"jLubah"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameU #mercurialUrefurih-h]h]h]h]h]Uinternaluh!jMh]rMhX MercurialrMrM}rM(hX MercurialrMh!jMubah"jLubah"jLubah"jLubeh"j%Mubeh"jLubjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rM(hUh}rM(U anchornameU#custom-version-control-systemsUrefurih-h]h]h]h]h]Uinternaluh!jMh]rMhXCustom version control systemsrMrM}rM(hXCustom version control systemsrMh!jMubah"jLubah"jLubah"jLubeh"j%Mubeh"jLubah"j%Mubh6jL)rM}rM(hUh}rM(h]h]h]h]h]uh]rMjL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rM(jL)rM}rM(hUh}rM(h]h]h]h]h]uh!jMh]rMjL)rM}rN(hUh}rN(U anchornameUUrefurih6h]h]h]h]h]Uinternaluh!jMh]rNhXRelease historyrNrN}rN(hh>h!jMubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jMh]r N(jL)r N}r N(hUh}r N(h]h]h]h]h]uh!jNh]r NjL)rN}rN(hUh}rN(h]h]h]h]h]uh!j Nh]rNjL)rN}rN(hUh}rN(U anchornameU#version-1-9-1Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.9.1rNrN}rN(hX Version 1.9.1rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}r N(h]h]h]h]h]uh!jNh]r!NjL)r"N}r#N(hUh}r$N(U anchornameU #version-1-9Urefurih6h]h]h]h]h]Uinternaluh!jNh]r%NhX Version 1.9r&Nr'N}r(N(hX Version 1.9r)Nh!j"Nubah"jLubah"jLubah"jLubjL)r*N}r+N(hUh}r,N(h]h]h]h]h]uh!jNh]r-NjL)r.N}r/N(hUh}r0N(h]h]h]h]h]uh!j*Nh]r1NjL)r2N}r3N(hUh}r4N(U anchornameU#version-1-8-3Urefurih6h]h]h]h]h]Uinternaluh!j.Nh]r5NhX Version 1.8.3r6Nr7N}r8N(hX Version 1.8.3r9Nh!j2Nubah"jLubah"jLubah"jLubjL)r:N}r;N(hUh}rN}r?N(hUh}r@N(h]h]h]h]h]uh!j:Nh]rANjL)rBN}rCN(hUh}rDN(U anchornameU#version-1-8-2Urefurih6h]h]h]h]h]Uinternaluh!j>Nh]rENhX Version 1.8.2rFNrGN}rHN(hX Version 1.8.2rINh!jBNubah"jLubah"jLubah"jLubjL)rJN}rKN(hUh}rLN(h]h]h]h]h]uh!jNh]rMNjL)rNN}rON(hUh}rPN(h]h]h]h]h]uh!jJNh]rQNjL)rRN}rSN(hUh}rTN(U anchornameU#version-1-8-1Urefurih6h]h]h]h]h]Uinternaluh!jNNh]rUNhX Version 1.8.1rVNrWN}rXN(hX Version 1.8.1rYNh!jRNubah"jLubah"jLubah"jLubjL)rZN}r[N(hUh}r\N(h]h]h]h]h]uh!jNh]r]NjL)r^N}r_N(hUh}r`N(h]h]h]h]h]uh!jZNh]raNjL)rbN}rcN(hUh}rdN(U anchornameU #version-1-8Urefurih6h]h]h]h]h]Uinternaluh!j^Nh]reNhX Version 1.8rfNrgN}rhN(hX Version 1.8riNh!jbNubah"jLubah"jLubah"jLubjL)rjN}rkN(hUh}rlN(h]h]h]h]h]uh!jNh]rmNjL)rnN}roN(hUh}rpN(h]h]h]h]h]uh!jjNh]rqNjL)rrN}rsN(hUh}rtN(U anchornameU #version-1-7Urefurih6h]h]h]h]h]Uinternaluh!jnNh]ruNhX Version 1.7rvNrwN}rxN(hX Version 1.7ryNh!jrNubah"jLubah"jLubah"jLubjL)rzN}r{N(hUh}r|N(h]h]h]h]h]uh!jNh]r}NjL)r~N}rN(hUh}rN(h]h]h]h]h]uh!jzNh]rNjL)rN}rN(hUh}rN(U anchornameU #version-1-6Urefurih6h]h]h]h]h]Uinternaluh!j~Nh]rNhX Version 1.6rNrN}rN(hX Version 1.6rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU #version-1-5Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.5rNrN}rN(hX Version 1.5rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU #version-1-4Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.4rNrN}rN(hX Version 1.4rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU#version-1-3-2Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.3.2rNrN}rN(hX Version 1.3.2rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU#version-1-3-1Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.3.1rNrN}rN(hX Version 1.3.1rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU #version-1-3Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.3rNrN}rN(hX Version 1.3rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU #version-1-2Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.2rNrN}rN(hX Version 1.2rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rN(U anchornameU #version-1-1Urefurih6h]h]h]h]h]Uinternaluh!jNh]rNhX Version 1.1rNrN}rN(hX Version 1.1rNh!jNubah"jLubah"jLubah"jLubjL)rN}rN(hUh}rN(h]h]h]h]h]uh!jNh]rNjL)rN}rN(hUh}rO(h]h]h]h]h]uh!jNh]rOjL)rO}rO(hUh}rO(U anchornameU#version-1-0-4Urefurih6h]h]h]h]h]Uinternaluh!jNh]rOhX Version 1.0.4rOrO}rO(hX Version 1.0.4r Oh!jOubah"jLubah"jLubah"jLubjL)r O}r O(hUh}r O(h]h]h]h]h]uh!jNh]r OjL)rO}rO(hUh}rO(h]h]h]h]h]uh!j Oh]rOjL)rO}rO(hUh}rO(U anchornameU#version-1-0-3Urefurih6h]h]h]h]h]Uinternaluh!jOh]rOhX Version 1.0.3rOrO}rO(hX Version 1.0.3rOh!jOubah"jLubah"jLubah"jLubjL)rO}rO(hUh}rO(h]h]h]h]h]uh!jNh]rOjL)rO}rO(hUh}r O(h]h]h]h]h]uh!jOh]r!OjL)r"O}r#O(hUh}r$O(U anchornameU#version-1-0-2Urefurih6h]h]h]h]h]Uinternaluh!jOh]r%OhX Version 1.0.2r&Or'O}r(O(hX Version 1.0.2r)Oh!j"Oubah"jLubah"jLubah"jLubjL)r*O}r+O(hUh}r,O(h]h]h]h]h]uh!jNh]r-OjL)r.O}r/O(hUh}r0O(h]h]h]h]h]uh!j*Oh]r1OjL)r2O}r3O(hUh}r4O(U anchornameU#version-1-0-1Urefurih6h]h]h]h]h]Uinternaluh!j.Oh]r5OhX Version 1.0.1r6Or7O}r8O(hX Version 1.0.1r9Oh!j2Oubah"jLubah"jLubah"jLubjL)r:O}r;O(hUh}rO}r?O(hUh}r@O(h]h]h]h]h]uh!j:Oh]rAOjL)rBO}rCO(hUh}rDO(U anchornameU #version-1-0Urefurih6h]h]h]h]h]Uinternaluh!j>Oh]rEOhX Version 1.0rFOrGO}rHO(hX Version 1.0rIOh!jBOubah"jLubah"jLubah"jLubeh"j%Mubeh"jLubah"j%Mubh?jL)rJO}rKO(hUh}rLO(h]h]h]h]h]uh]rMOjL)rNO}rOO(hUh}rPO(h]h]h]h]h]uh!jJOh]rQO(jL)rRO}rSO(hUh}rTO(h]h]h]h]h]uh!jNOh]rUOjL)rVO}rWO(hUh}rXO(U anchornameUUrefurih?h]h]h]h]h]Uinternaluh!jROh]rYOhXCode referencerZOr[O}r\O(hhGh!jVOubah"jLubah"jLubjL)r]O}r^O(hUh}r_O(h]h]h]h]h]uh!jNOh]r`O(jL)raO}rbO(hUh}rcO(h]h]h]h]h]uh!j]Oh]rdOjL)reO}rfO(hUh}rgO(h]h]h]h]h]uh!jaOh]rhOjL)riO}rjO(hUh}rkO(U anchornameU #versiontoolsUrefurih?h]h]h]h]h]Uinternaluh!jeOh]rlOhX versiontoolsrmOrnO}roO(hX versiontoolsrpOh!jiOubah"jLubah"jLubah"jLubjL)rqO}rrO(hUh}rsO(h]h]h]h]h]uh!j]Oh]rtOjL)ruO}rvO(hUh}rwO(h]h]h]h]h]uh!jqOh]rxOjL)ryO}rzO(hUh}r{O(U anchornameU#versiontools-setuptools-hooksUrefurih?h]h]h]h]h]Uinternaluh!juOh]r|OhXversiontools.setuptools_hooksr}Or~O}rO(hXversiontools.setuptools_hooksrOh!jyOubah"jLubah"jLubah"jLubjL)rO}rO(hUh}rO(h]h]h]h]h]uh!j]Oh]rOjL)rO}rO(hUh}rO(h]h]h]h]h]uh!jOh]rOjL)rO}rO(hUh}rO(U anchornameU"#versiontools-versiontools-supportUrefurih?h]h]h]h]h]Uinternaluh!jOh]rOhX!versiontools.versiontools_supportrOrO}rO(hX!versiontools.versiontools_supportrOh!jOubah"jLubah"jLubah"jLubjL)rO}rO(hUh}rO(h]h]h]h]h]uh!j]Oh]rOjL)rO}rO(hUh}rO(h]h]h]h]h]uh!jOh]rOjL)rO}rO(hUh}rO(U anchornameU#versiontools-bzr-supportUrefurih?h]h]h]h]h]Uinternaluh!jOh]rOhXversiontools.bzr_supportrOrO}rO(hXversiontools.bzr_supportrOh!jOubah"jLubah"jLubah"jLubjL)rO}rO(hUh}rO(h]h]h]h]h]uh!j]Oh]rOjL)rO}rO(hUh}rO(h]h]h]h]h]uh!jOh]rOjL)rO}rO(hUh}rO(U anchornameU#versiontools-git-supportUrefurih?h]h]h]h]h]Uinternaluh!jOh]rOhXversiontools.git_supportrOrO}rO(hXversiontools.git_supportrOh!jOubah"jLubah"jLubah"jLubjL)rO}rO(hUh}rO(h]h]h]h]h]uh!j]Oh]rOjL)rO}rO(hUh}rO(h]h]h]h]h]uh!jOh]rOjL)rO}rO(hUh}rO(U anchornameU#versiontools-hg-supportUrefurih?h]h]h]h]h]Uinternaluh!jOh]rOhXversiontools.hg_supportrOrO}rO(hXversiontools.hg_supportrOh!jOubah"jLubah"jLubah"jLubeh"j%Mubeh"jLubah"j%MubuU indexentriesrO}rO(h]h$]rO(UsinglerOX%Python Enhancement Proposals; PEP 386Uindex-0rOUtrOah-]h6]rO((jOX%Python Enhancement Proposals; PEP 386Uindex-0rOUtrO(jOX%Python Enhancement Proposals; PEP 386Uindex-1rOUtrOeh?]rO((jOXversiontools (module)Xmodule-versiontoolsUtrO(jOXVersion (class in versiontools)hUtrO(jOX.__new__() (versiontools.Version static method)hUtrO(jOX&major (versiontools.Version attribute)hUtrO(jOX&minor (versiontools.Version attribute)hUtrO(jOX&micro (versiontools.Version attribute)hUtrO(jOX-releaselevel (versiontools.Version attribute)hUtrO(jOX'serial (versiontools.Version attribute)hUtrO(jOX0from_tuple() (versiontools.Version class method)hUtrO(jOX9from_tuple_and_hint() (versiontools.Version class method)hUtrO(jOX5from_expression() (versiontools.Version class method)hUtrO(jOX$vcs (versiontools.Version attribute)hUtrO(jOX'__str__() (versiontools.Version method)hUtrO(jOX)format_version() (in module versiontools)hUtrO(jOX%Python Enhancement Proposals; PEP 386Uindex-0rOUtrO(jOX&versiontools.setuptools_hooks (module)X$module-versiontools.setuptools_hooksUtrO(jOX3version() (in module versiontools.setuptools_hooks)hUtrO(jOX*versiontools.versiontools_support (module)X(module-versiontools.versiontools_supportUtrO(jOXVVersiontoolsEnchancedDistributionMetadata (class in versiontools.versiontools_support)hUtrO(jOXbget_version() (versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata method)hUtrO(jOX!versiontools.bzr_support (module)Xmodule-versiontools.bzr_supportUtrO(jOX2BzrIntegration (class in versiontools.bzr_support)hUtrO(jOX?branch_nick (versiontools.bzr_support.BzrIntegration attribute)hUtrO(jOXIfrom_source_tree() (versiontools.bzr_support.BzrIntegration class method)hUtrO(jOX9revno (versiontools.bzr_support.BzrIntegration attribute)hUtrO(jOX!versiontools.git_support (module)Xmodule-versiontools.git_supportUtrO(jOX2GitIntegration (class in versiontools.git_support)hUtrO(jOX?branch_nick (versiontools.git_support.GitIntegration attribute)hUtrO(jOX=commit_id (versiontools.git_support.GitIntegration attribute)hUtrO(jOXDcommit_id_abbrev (versiontools.git_support.GitIntegration attribute)hUtrO(jOXIfrom_source_tree() (versiontools.git_support.GitIntegration class method)hUtrO(jOX9revno (versiontools.git_support.GitIntegration attribute)hUtrO(jOX versiontools.hg_support (module)Xmodule-versiontools.hg_supportUtrO(jOX0HgIntegration (class in versiontools.hg_support)hUtrO(jOX=branch_nick (versiontools.hg_support.HgIntegration attribute)hUtrO(jOXGfrom_source_tree() (versiontools.hg_support.HgIntegration class method)hUtrO(jOX7revno (versiontools.hg_support.HgIntegration attribute)hUtrOeuUall_docsrO}rO(hGAԱh$GAԱh-GAԱn h6GAԱ>h?GAԱi}q?(h h8h!h6ubaubcdocutils.nodes paragraph q@)qA}qB(h Xversiontools supports a form of version control system integration. This code is *only* triggered for development versions of your project (indicated by setting ``releaselevel`` to ``dev"``)h!hh"h%h'U paragraphqCh)}qD(h+]h,]h-]h.]h0]uh2Kh3hh]qE(h}r?(h Uh!j7ubah'h]ubaubhhU version-1-1q?hUid11q@hUid12qAhU version-1-3-2qBhUid1qChU version-1-3-1qDhU version-1-9-1qEhU version-1-0-1qFhU version-1-0-2qGhU version-1-0-3qHhUid16qIhU version-1-0-4qJhUid6qKhUid2qLhU version-1-0qMh Uid15qNh!Uid14qOh"Uid13qPh#Uid10qQh$Uid9qRh%Uid8qSh&Uid7qTh'U version-1-8-1qUh(U version-1-8-3qVh)U version-1-8-2qWh*Urelease-historyqXuUchildrenqY]qZcdocutils.nodes section q[)q\}q](U rawsourceq^UUparentq_hUsourceq`cdocutils.nodes reprunicode qaXD/var/build/user_builds/versiontools/checkouts/latest/doc/changes.rstqbqc}qdbUtagnameqeUsectionqfU attributesqg}qh(Udupnamesqi]Uclassesqj]Ubackrefsqk]Uidsql]qmhXaUnamesqn]qoh*auUlineqpKUdocumentqqhhY]qr(cdocutils.nodes title qs)qt}qu(h^XRelease historyqvh_h\h`hcheUtitleqwhg}qx(hi]hj]hk]hl]hn]uhpKhqhhY]qycdocutils.nodes Text qzXRelease historyq{q|}q}(h^hvh_htubaubcdocutils.nodes target q~)q}q(h^X.. _version_1_9_1:h_h\h`hcheUtargetqhg}q(hl]hk]hi]hj]hn]UrefidqhEuhpKhqhhY]ubh[)q}q(h^Uh_h\h`hcUexpect_referenced_by_nameq}qhhshehfhg}q(hi]hj]hk]hl]q(hEhCehn]q(hheuhpKhqhUexpect_referenced_by_idq}qhEhshY]q(hs)q}q(h^X Version 1.9.1qh_hh`hchehwhg}q(hi]hj]hk]hl]hn]uhpKhqhhY]qhzX Version 1.9.1qq}q(h^hh_hubaubcdocutils.nodes bullet_list q)q}q(h^Uh_hh`hcheU bullet_listqhg}q(UbulletqX*hl]hk]hi]hj]hn]uhpK hqhhY]qcdocutils.nodes list_item q)q}q(h^X"Just bump version to final, sorry h_hh`hcheU list_itemqhg}q(hi]hj]hk]hl]hn]uhpNhqhhY]qcdocutils.nodes paragraph q)q}q(h^X!Just bump version to final, sorryqh_hh`hcheU paragraphqhg}q(hi]hj]hk]hl]hn]uhpK hY]qhzX!Just bump version to final, sorryqq}q(h^hh_hubaubaubaubh~)q}q(h^X.. _version_1_9:h_hh`hchehhg}q(hl]hk]hi]hj]hn]hh8uhpK hqhhY]ubeubh[)q}q(h^Uh_h\h`hch}qh hshehfhg}q(hi]hj]hk]hl]q(h8hLehn]q(hh euhpKhqhh}qh8hshY]q(hs)q}q(h^X Version 1.9qh_hh`hchehwhg}q(hi]hj]hk]hl]hn]uhpKhqhhY]qhzX Version 1.9qq}q(h^hh_hubaubh)q}q(h^Uh_hh`hchehhg}q(hX*hl]hk]hi]hj]hn]uhpKhqhhY]q(h)q}q(h^X$Reorganize and update documentation.qh_hh`hchehhg}q(hi]hj]hk]hl]hn]uhpNhqhhY]qh)q}q(h^hh_hh`hchehhg}q(hi]hj]hk]hl]hn]uhpKhY]qhzX$Reorganize and update documentation.qͅq}q(h^hh_hubaubaubh)q}q(h^XAdd a new way of using versiontools that does not require using ``setup_requires``. This way is based on bundling a small helper module to help you bootstrap your project when installed from source.h_hh`hchehhg}q(hi]hj]hk]hl]hn]uhpNhqhhY]qh)q}q(h^XAdd a new way of using versiontools that does not require using ``setup_requires``. This way is based on bundling a small helper module to help you bootstrap your project when installed from source.h_hh`hchehhg}q(hi]hj]hk]hl]hn]uhpKhY]q(hzX@Add a new way of using versiontools that does not require using q؅q}q(h^X@Add a new way of using versiontools that does not require using h_hubcdocutils.nodes literal q)q}q(h^X``setup_requires``hg}q(hi]hj]hk]hl]hn]uh_hhY]qhzXsetup_requiresqq}q(h^Uh_hubaheUliteralqubhzXt. This way is based on bundling a small helper module to help you bootstrap your project when installed from source.q䅁q}q(h^Xt. This way is based on bundling a small helper module to help you bootstrap your project when installed from source.h_hubeubaubh)q}q(h^XAdd :meth:`versiontools.Version.from_expression()` that creates a Version object from a python import expression (and an optional variable identifer)h_hh`hchehhg}q(hi]hj]hk]hl]hn]uhpNhqhhY]qh)q}q(h^XAdd :meth:`versiontools.Version.from_expression()` that creates a Version object from a python import expression (and an optional variable identifer)h_hh`hchehhg}q(hi]hj]hk]hl]hn]uhpKhY]q(hzXAdd qq}q(h^XAdd h_hubcsphinx.addnodes pending_xref q)q}q(h^X.:meth:`versiontools.Version.from_expression()`qh_hh`hcheU pending_xrefqhg}q(UreftypeXmethUrefwarnqU reftargetqX$versiontools.Version.from_expressionU refdomainXpyqhl]hk]U refexplicithi]hj]hn]UrefdocqUchangesqUpy:classqNU py:moduleqNuhpKhY]qh)r}r(h^hhg}r(hi]hj]r(UxrefrhXpy-methrehk]hl]hn]uh_hhY]rhzX&versiontools.Version.from_expression()rr}r (h^Uh_jubahehubaubhzXc that creates a Version object from a python import expression (and an optional variable identifer)r r }r (h^Xc that creates a Version object from a python import expression (and an optional variable identifer)h_hubeubaubh)r }r(h^XrMove and rename private function ``versiontools.handle_version`` to :func:`versiontools.setuptools_hooks:version`.h_hh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XrMove and rename private function ``versiontools.handle_version`` to :func:`versiontools.setuptools_hooks:version`.h_j h`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(hzX!Move and rename private function rr}r(h^X!Move and rename private function h_jubh)r}r(h^X``versiontools.handle_version``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzXversiontools.handle_versionrr}r(h^Uh_jubahehubhzX to rr }r!(h^X to h_jubh)r"}r#(h^X-:func:`versiontools.setuptools_hooks:version`r$h_jh`hchehhg}r%(UreftypeXfunchhX%versiontools.setuptools_hooks:versionU refdomainXpyr&hl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]r'h)r(}r)(h^j$hg}r*(hi]hj]r+(jj&Xpy-funcr,ehk]hl]hn]uh_j"hY]r-hzX'versiontools.setuptools_hooks:version()r.r/}r0(h^Uh_j(ubahehubaubhzX.r1}r2(h^X.h_jubeubaubh)r3}r4(h^XwMove and rename private function ``versiontools.get_exception_message`` to :func:`versiontools._get_exception_message`.h_hh`hchehhg}r5(hi]hj]hk]hl]hn]uhpNhqhhY]r6h)r7}r8(h^XwMove and rename private function ``versiontools.get_exception_message`` to :func:`versiontools._get_exception_message`.h_j3h`hchehhg}r9(hi]hj]hk]hl]hn]uhpKhY]r:(hzX!Move and rename private function r;r<}r=(h^X!Move and rename private function h_j7ubh)r>}r?(h^X&``versiontools.get_exception_message``hg}r@(hi]hj]hk]hl]hn]uh_j7hY]rAhzX"versiontools.get_exception_messagerBrC}rD(h^Uh_j>ubahehubhzX to rErF}rG(h^X to h_j7ubh)rH}rI(h^X+:func:`versiontools._get_exception_message`rJh_j7h`hchehhg}rK(UreftypeXfunchhX#versiontools._get_exception_messageU refdomainXpyrLhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]rMh)rN}rO(h^jJhg}rP(hi]hj]rQ(jjLXpy-funcrRehk]hl]hn]uh_jHhY]rShzX%versiontools._get_exception_message()rTrU}rV(h^Uh_jNubahehubaubhzX.rW}rX(h^X.h_j7ubeubaubh)rY}rZ(h^X3Remove private function ``versiontools.isstring``. h_hh`hchehhg}r[(hi]hj]hk]hl]hn]uhpNhqhhY]r\h)r]}r^(h^X2Remove private function ``versiontools.isstring``.h_jYh`hchehhg}r_(hi]hj]hk]hl]hn]uhpKhY]r`(hzXRemove private function rarb}rc(h^XRemove private function h_j]ubh)rd}re(h^X``versiontools.isstring``hg}rf(hi]hj]hk]hl]hn]uh_j]hY]rghzXversiontools.isstringrhri}rj(h^Uh_jdubahehubhzX.rk}rl(h^X.h_j]ubeubaubeubh~)rm}rn(h^X.. _version_1_8_3:h_hh`hchehhg}ro(hl]hk]hi]hj]hn]hhVuhpKhqhhY]ubeubh[)rp}rq(h^Uh_h\h`hch}rrh(jmshehfhg}rs(hi]hj]hk]hl]rt(hVh6ehn]ru(hh(euhpKhqhh}rvhVjmshY]rw(hs)rx}ry(h^X Version 1.8.3rzh_jph`hchehwhg}r{(hi]hj]hk]hl]hn]uhpKhqhhY]r|hzX Version 1.8.3r}r~}r(h^jzh_jxubaubh)r}r(h^Uh_jph`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpK!hqhhY]r(h)r}r(h^XFix incorrectly specified line in git support. Previosuly a KeyError may bleed to the outside calling code, depending on python version. h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XFix incorrectly specified line in git support. Previosuly a KeyError may bleed to the outside calling code, depending on python version.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK!hY]rhzXFix incorrectly specified line in git support. Previosuly a KeyError may bleed to the outside calling code, depending on python version.rr}r(h^jh_jubaubaubh)r}r(h^X}Fix incorrectly specified line in bzr support. Previously a non-bzr directory could be associated as a malformed bzr branch. h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^X|Fix incorrectly specified line in bzr support. Previously a non-bzr directory could be associated as a malformed bzr branch.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK$hY]rhzX|Fix incorrectly specified line in bzr support. Previously a non-bzr directory could be associated as a malformed bzr branch.rr}r(h^jh_jubaubaubeubh~)r}r(h^X.. _version_1_8_2:h_jph`hchehhg}r(hl]hk]hi]hj]hn]hhWuhpK'hqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rh)jshehfhg}r(hi]hj]hk]hl]r(hWh5ehn]r(hh)euhpK*hqhh}rhWjshY]r(hs)r}r(h^X Version 1.8.2rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpK*hqhhY]rhzX Version 1.8.2rr}r(h^jh_jubaubcdocutils.nodes block_quote r)r}r(h^Uh_jh`NheU block_quoterhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^Uhg}r(hX*hl]hk]hi]hj]hn]uh_jhY]r(h)r}r(h^XlImprove git support by adding code paths compatible with python-git 0.1.6 (which is easier to get on Debian)hg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^XlImprove git support by adding code paths compatible with python-git 0.1.6 (which is easier to get on Debian)rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK,hY]rhzXlImprove git support by adding code paths compatible with python-git 0.1.6 (which is easier to get on Debian)rr}r(h^jh_jubaubahehubh)r}r(h^XChange git support to default to short commit id. If you want to access the long commit id you need to access it directly as GitIntegration.commit_id hg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^XChange git support to default to short commit id. If you want to access the long commit id you need to access it directly as GitIntegration.commit_idrh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK.hY]rhzXChange git support to default to short commit id. If you want to access the long commit id you need to access it directly as GitIntegration.commit_idrr}r(h^jh_jubaubahehubehehubaubh~)r}r(h^X.. _version_1_8_1:h_jh`hchehhg}r(hl]hk]hi]hj]hn]hhUuhpK1hqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rh'jshehfhg}r(hi]hj]hk]hl]r(hUh4ehn]r(hh'euhpK4hqhh}rhUjshY]r(hs)r}r(h^X Version 1.8.1rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpK4hqhhY]rhzX Version 1.8.1rr}r(h^jh_jubaubj)r}r(h^Uh_jh`Nhejhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^Uhg}r(hX*hl]hk]hi]hj]hn]uh_jhY]rh)r}r(h^XImprove performance when working with checkouts. The use of branch.nick has been replaced with branch._get_nick(local=True). This avoids network operations and is much more responsive. hg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^XImprove performance when working with checkouts. The use of branch.nick has been replaced with branch._get_nick(local=True). This avoids network operations and is much more responsive.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK6hY]rhzXImprove performance when working with checkouts. The use of branch.nick has been replaced with branch._get_nick(local=True). This avoids network operations and is much more responsive.rr}r(h^jh_jubaubahehubahehubaubh~)r}r(h^X.. _version_1_8:h_jh`hchehhg}r(hl]hk]hi]hj]hn]hh7uhpK:hqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rh jshehfhg}r(hi]hj]hk]hl]r(h7hKehn]r(hh euhpK=hqhh}rh7jshY]r(hs)r}r(h^X Version 1.8rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpK=hqhhY]rhzX Version 1.8rr }r (h^jh_jubaubj)r }r (h^Uh_jh`Nhejhg}r (hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^Uhg}r(hX*hl]hk]hi]hj]hn]uh_j hY]r(h)r}r(h^X(Fixed all pep8 issues (prettier syntax) hg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X'Fixed all pep8 issues (prettier syntax)rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK?hY]rhzX'Fixed all pep8 issues (prettier syntax)rr}r(h^jh_jubaubahehubh)r}r (h^X4Fixed an issue with using __import__ on Python 2.4. hg}r!(hi]hj]hk]hl]hn]uh_jhY]r"h)r#}r$(h^X3Fixed an issue with using __import__ on Python 2.4.r%h_jh`hchehhg}r&(hi]hj]hk]hl]hn]uhpKAhY]r'hzX3Fixed an issue with using __import__ on Python 2.4.r(r)}r*(h^j%h_j#ubaubahehubh)r+}r,(h^XKFixed an issue with using :versiontools:path.to.symbol with nested modules hg}r-(hi]hj]hk]hl]hn]uh_jhY]r.h)r/}r0(h^XJFixed an issue with using :versiontools:path.to.symbol with nested modulesr1h_j+h`hchehhg}r2(hi]hj]hk]hl]hn]uhpKChY]r3hzXJFixed an issue with using :versiontools:path.to.symbol with nested modulesr4r5}r6(h^j1h_j/ubaubahehubh)r7}r8(h^X3Fixed an issue with using exceptions on Python 3.x hg}r9(hi]hj]hk]hl]hn]uh_jhY]r:h)r;}r<(h^X2Fixed an issue with using exceptions on Python 3.xr=h_j7h`hchehhg}r>(hi]hj]hk]hl]hn]uhpKEhY]r?hzX2Fixed an issue with using exceptions on Python 3.xr@rA}rB(h^j=h_j;ubaubahehubh)rC}rD(h^XRAdded test that demostrated that exception handling works on all Python versions. hg}rE(hi]hj]hk]hl]hn]uh_jhY]rFh)rG}rH(h^XQAdded test that demostrated that exception handling works on all Python versions.rIh_jCh`hchehhg}rJ(hi]hj]hk]hl]hn]uhpKGhY]rKhzXQAdded test that demostrated that exception handling works on all Python versions.rLrM}rN(h^jIh_jGubaubahehubh)rO}rP(h^X7Unified error handling across version control plugins. hg}rQ(hi]hj]hk]hl]hn]uh_jhY]rRh)rS}rT(h^X6Unified error handling across version control plugins.rUh_jOh`hchehhg}rV(hi]hj]hk]hl]hn]uhpKIhY]rWhzX6Unified error handling across version control plugins.rXrY}rZ(h^jUh_jSubaubahehubh)r[}r\(h^XkGeneral documentation improvements, installation, usage, code refrerence, and writing additional plug-ins. hg}r](hi]hj]hk]hl]hn]uh_jhY]r^h)r_}r`(h^XjGeneral documentation improvements, installation, usage, code refrerence, and writing additional plug-ins.rah_j[h`hchehhg}rb(hi]hj]hk]hl]hn]uhpKKhY]rchzXjGeneral documentation improvements, installation, usage, code refrerence, and writing additional plug-ins.rdre}rf(h^jah_j_ubaubahehubh)rg}rh(h^XAdded a *backwards incompatible* constraint on serial to be greater than zero on alpha, beta and release candidates as required by :pep:`386`. hg}ri(hi]hj]hk]hl]hn]uh_jhY]rjh)rk}rl(h^XAdded a *backwards incompatible* constraint on serial to be greater than zero on alpha, beta and release candidates as required by :pep:`386`.h_jgh`hchehhg}rm(hi]hj]hk]hl]hn]uhpKNhY]rn(hzXAdded a rorp}rq(h^XAdded a h_jkubcdocutils.nodes emphasis rr)rs}rt(h^X*backwards incompatible*hg}ru(hi]hj]hk]hl]hn]uh_jkhY]rvhzXbackwards incompatiblerwrx}ry(h^Uh_jsubaheUemphasisrzubhzXc constraint on serial to be greater than zero on alpha, beta and release candidates as required by r{r|}r}(h^Xc constraint on serial to be greater than zero on alpha, beta and release candidates as required by h_jkubcsphinx.addnodes index r~)r}r(h^Uhg}r(hl]hk]hi]hj]hn]Uentriesr]r(UsinglerX%Python Enhancement Proposals; PEP 386Uindex-0rUtrauh_jkhY]heUindexrubh~)r}r(h^Uhg}r(hi]hj]hk]hl]rjahn]uh_jkhY]hehubcdocutils.nodes reference r)r}r(h^Uhg}r(UrefuriU'http://www.python.org/dev/peps/pep-0386hl]hk]hi]hj]rXpeprahn]Uinternaluh_jkhY]rcdocutils.nodes strong r)r}r(h^XPEP 386hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzXPEP 386rr}r(h^Uh_jubaheUstrongrubaheU referencerubhzX.r}r(h^X.h_jkubeubahehubehehubaubh~)r}r(h^X.. _version_1_7:h_jh`hchehhg}r(hl]hk]hi]hj]hn]hh:uhpKQhqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rh jshehfhg}r(hi]hj]hk]hl]r(h:hTehn]r(h&h euhpKThqhh}rh:jshY]r(hs)r}r(h^X Version 1.7rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpKThqhhY]rhzX Version 1.7rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpKVhqhhY]r(h)r}r(h^X'Add support for Mercurial repositories h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^X&Add support for Mercurial repositoriesrh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKVhY]rhzX&Add support for Mercurial repositoriesrr}r(h^jh_jubaubaubh)r}r(h^X2Fix a bug in exception handling that affected 1.6 h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^X1Fix a bug in exception handling that affected 1.6rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKXhY]rhzX1Fix a bug in exception handling that affected 1.6rr}r(h^jh_jubaubaubeubh~)r}r(h^X.. _version_1_6:h_jh`hchehhg}r(hl]hk]hi]hj]hn]hh9uhpKZhqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rh jshehfhg}r(hi]hj]hk]hl]r(h9hSehn]r(h%h euhpK]hqhh}rh9jshY]r(hs)r}r(h^X Version 1.6rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpK]hqhhY]rhzX Version 1.6rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpK_hqhhY]r(h)r}r(h^XKAdd support for python2.4 and python2.5 thanks to Jannis Leidel (thanks!). h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XJAdd support for python2.4 and python2.5 thanks to Jannis Leidel (thanks!).rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK_hY]rhzXJAdd support for python2.4 and python2.5 thanks to Jannis Leidel (thanks!).rr}r(h^jh_jubaubaubh)r}r(h^XPAdd tox (http://codespeak.net/~hpk/tox/) configuration file for easier testing. h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XOAdd tox (http://codespeak.net/~hpk/tox/) configuration file for easier testing.h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKahY]r(hzX Add tox (rr}r(h^X Add tox (h_jubj)r}r(h^Xhttp://codespeak.net/~hpk/tox/rhg}r(Urefurijhl]hk]hi]hj]hn]uh_jhY]rhzXhttp://codespeak.net/~hpk/tox/rr}r(h^Uh_jubahejubhzX() configuration file for easier testing.rr}r(h^X() configuration file for easier testing.h_jubeubaubeubh~)r}r(h^X.. _version_1_5:h_jh`hchehhg}r (hl]hk]hi]hj]hn]hh= 0.3.2.RC1. It does not currently work on GitPython packaged in Ubuntu Natty (0.1.6). h_jh`hchehhg}r (hi]hj]hk]hl]hn]uhpNhqhhY]r!h)r"}r#(h^XAdded Git support, contributed by Jannis Leidel (thanks!). To use it you need GitPython >= 0.3.2.RC1. It does not currently work on GitPython packaged in Ubuntu Natty (0.1.6).r$h_jh`hchehhg}r%(hi]hj]hk]hl]hn]uhpKihY]r&hzXAdded Git support, contributed by Jannis Leidel (thanks!). To use it you need GitPython >= 0.3.2.RC1. It does not currently work on GitPython packaged in Ubuntu Natty (0.1.6).r'r(}r)(h^j$h_j"ubaubaubaubh~)r*}r+(h^X.. _version_1_4:h_j h`hchehhg}r,(hl]hk]hi]hj]hn]hh;uhpKmhqhhY]ubeubh[)r-}r.(h^Uh_h\h`hch}r/h j*shehfhg}r0(hi]hj]hk]hl]r1(h;hQehn]r2(h#h euhpKphqhh}r3h;j*shY]r4(hs)r5}r6(h^X Version 1.4r7h_j-h`hchehwhg}r8(hi]hj]hk]hl]hn]uhpKphqhhY]r9hzX Version 1.4r:r;}r<(h^j7h_j5ubaubh)r=}r>(h^Uh_j-h`hchehhg}r?(hX*hl]hk]hi]hj]hn]uhpKrhqhhY]r@(h)rA}rB(h^XWork harder to figure out the source tree a __version__ object comes from. This is possible with a new function :meth:`versiontools.Version.from_tuple_and_hint`. h_j=h`hchehhg}rC(hi]hj]hk]hl]hn]uhpNhqhhY]rDh)rE}rF(h^XWork harder to figure out the source tree a __version__ object comes from. This is possible with a new function :meth:`versiontools.Version.from_tuple_and_hint`.h_jAh`hchehhg}rG(hi]hj]hk]hl]hn]uhpKrhY]rH(hzXpWork harder to figure out the source tree a __version__ object comes from. This is possible with a new function rIrJ}rK(h^XpWork harder to figure out the source tree a __version__ object comes from. This is possible with a new function h_jEubh)rL}rM(h^X0:meth:`versiontools.Version.from_tuple_and_hint`rNh_jEh`hchehhg}rO(UreftypeXmethhhX(versiontools.Version.from_tuple_and_hintU refdomainXpyrPhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKrhY]rQh)rR}rS(h^jNhg}rT(hi]hj]rU(jjPXpy-methrVehk]hl]hn]uh_jLhY]rWhzX*versiontools.Version.from_tuple_and_hint()rXrY}rZ(h^Uh_jRubahehubaubhzX.r[}r\(h^X.h_jEubeubaubh)r]}r^(h^XXAllow people to omit the version identifier in setup.py (defaulting to ``__version__``) h_j=h`hchehhg}r_(hi]hj]hk]hl]hn]uhpNhqhhY]r`h)ra}rb(h^XWAllow people to omit the version identifier in setup.py (defaulting to ``__version__``)h_j]h`hchehhg}rc(hi]hj]hk]hl]hn]uhpKvhY]rd(hzXGAllow people to omit the version identifier in setup.py (defaulting to rerf}rg(h^XGAllow people to omit the version identifier in setup.py (defaulting to h_jaubh)rh}ri(h^X``__version__``hg}rj(hi]hj]hk]hl]hn]uh_jahY]rkhzX __version__rlrm}rn(h^Uh_jhubahehubhzX)ro}rp(h^X)h_jaubeubaubeubh~)rq}rr(h^X.. _version_1_3_2:h_j-h`hchehhg}rs(hl]hk]hi]hj]hn]hhBuhpKyhqhhY]ubeubh[)rt}ru(h^Uh_h\h`hch}rvhjqshehfhg}rw(hi]hj]hk]hl]rx(hBh@ehn]ry(hheuhpK|hqhh}rzhBjqshY]r{(hs)r|}r}(h^X Version 1.3.2r~h_jth`hchehwhg}r(hi]hj]hk]hl]hn]uhpK|hqhhY]rhzX Version 1.3.2rr}r(h^j~h_j|ubaubh)r}r(h^Uh_jth`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpK~hqhhY]rh)r}r(h^XChange version string produced by :meth:`versiontools.Version.__str__` and `versiontools.format_version` to be more useful when vcs integration is not available and the release is not final. Consult the table below for details. +----------------------+----------------------+--------------------------------+ | Prior to 1.3.2 | 1.3.2 | Comment | +======================+======================+================================+ | ``1.2.3`` | ``1.2.3.dev`` | When releaselevel==dev but | | | | VCS integration is not | | When VCS integration | | available we now add a .dev | | is not available | | suffix to differentiate from | | | | released versions | +----------------------+----------------------+--------------------------------+ | ``1.2.3a5`` or | ``1.2.3a5`` | ``.devREVNO`` is only added | | ``1.2.3a5.devREVNO`` | ` | when releaselevel==dev. | +----------------------+----------------------+ | | ``1.2.3b5`` or | ``1.2.3b5`` | It will never appear on alphas | | ``1.2.3b5.devREVNO`` | | , betas or release candidates. | +----------------------+----------------------+ | | ``1.2.3c5`` or | ``1.2.3c5`` | | | ``1.2.3c5.devREVNO`` | | | +----------------------+----------------------+--------------------------------+ h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]r(h)r}r(h^XChange version string produced by :meth:`versiontools.Version.__str__` and `versiontools.format_version` to be more useful when vcs integration is not available and the release is not final. Consult the table below for details.h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpK~hY]r(hzX"Change version string produced by rr}r(h^X"Change version string produced by h_jubh)r}r(h^X$:meth:`versiontools.Version.__str__`rh_jh`hchehhg}r(UreftypeXmethhhXversiontools.Version.__str__U refdomainXpyrhl]hk]U refexplicithi]hj]hn]hhhNhNuhpK~hY]rh)r}r(h^jhg}r(hi]hj]r(jjXpy-methrehk]hl]hn]uh_jhY]rhzXversiontools.Version.__str__()rr}r(h^Uh_jubahehubaubhzX and rr}r(h^X and h_jubcdocutils.nodes title_reference r)r}r(h^X`versiontools.format_version`hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzXversiontools.format_versionrr}r(h^Uh_jubaheUtitle_referencerubhzX{ to be more useful when vcs integration is not available and the release is not final. Consult the table below for details.rr}r(h^X{ to be more useful when vcs integration is not available and the release is not final. Consult the table below for details.h_jubeubcdocutils.nodes table r)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rcdocutils.nodes tgroup r)r}r(h^Uhg}r(hl]hk]hi]hj]hn]UcolsKuh_jhY]r(cdocutils.nodes colspec r)r}r(h^Uhg}r(hl]hk]hi]hj]hn]UcolwidthKuh_jhY]heUcolspecrubj)r}r(h^Uhg}r(hl]hk]hi]hj]hn]UcolwidthKuh_jhY]hejubj)r}r(h^Uhg}r(hl]hk]hi]hj]hn]UcolwidthK uh_jhY]hejubcdocutils.nodes thead r)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rcdocutils.nodes row r)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(cdocutils.nodes entry r)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^XPrior to 1.3.2rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXPrior to 1.3.2rr}r(h^jh_jubaubaheUentryrubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X1.3.2rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzX1.3.2rr}r(h^jh_jubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^XCommentrh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXCommentrr}r(h^jh_jubaubahejubeheUrowrubaheUtheadrubcdocutils.nodes tbody r)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(j)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(j)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(h)r}r(h^X ``1.2.3``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r h)r }r (h^jhg}r (hi]hj]hk]hl]hn]uh_jhY]r hzX1.2.3rr}r(h^Uh_j ubahehubaubh)r}r(h^X%When VCS integration is not availablerh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzX%When VCS integration is not availablerr}r(h^jh_jubaubehejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X ``1.2.3.dev``rh_jh`hchehhg}r (hi]hj]hk]hl]hn]uhpKhY]r!h)r"}r#(h^jhg}r$(hi]hj]hk]hl]hn]uh_jhY]r%hzX 1.2.3.devr&r'}r((h^Uh_j"ubahehubaubahejubj)r)}r*(h^Uhg}r+(hi]hj]hk]hl]hn]uh_jhY]r,h)r-}r.(h^X|When releaselevel==dev but VCS integration is not available we now add a .dev suffix to differentiate from released versionsr/h_j)h`hchehhg}r0(hi]hj]hk]hl]hn]uhpKhY]r1hzX|When releaselevel==dev but VCS integration is not available we now add a .dev suffix to differentiate from released versionsr2r3}r4(h^j/h_j-ubaubahejubehejubj)r5}r6(h^Uhg}r7(hi]hj]hk]hl]hn]uh_jhY]r8(j)r9}r:(h^Uhg}r;(hi]hj]hk]hl]hn]uh_j5hY]r<h)r=}r>(h^X#``1.2.3a5`` or ``1.2.3a5.devREVNO``h_j9h`hchehhg}r?(hi]hj]hk]hl]hn]uhpKhY]r@(h)rA}rB(h^X ``1.2.3a5``hg}rC(hi]hj]hk]hl]hn]uh_j=hY]rDhzX1.2.3a5rErF}rG(h^Uh_jAubahehubhzX or rHrI}rJ(h^X or h_j=ubh)rK}rL(h^X``1.2.3a5.devREVNO``hg}rM(hi]hj]hk]hl]hn]uh_j=hY]rNhzX1.2.3a5.devREVNOrOrP}rQ(h^Uh_jKubahehubeubahejubj)rR}rS(h^Uhg}rT(hi]hj]hk]hl]hn]uh_j5hY]rUh)rV}rW(h^X ``1.2.3a5`` `h_jRh`hchehhg}rX(hi]hj]hk]hl]hn]uhpKhY]rY(h)rZ}r[(h^X ``1.2.3a5``hg}r\(hi]hj]hk]hl]hn]uh_jVhY]r]hzX1.2.3a5r^r_}r`(h^Uh_jZubahehubhzX `rarb}rc(h^X `h_jVubeubahejubj)rd}re(h^Uhg}rf(hl]hk]hi]hj]UmorerowsKhn]uh_j5hY]rg(h)rh}ri(h^X3``.devREVNO`` is only added when releaselevel==dev.h_jdh`hchehhg}rj(hi]hj]hk]hl]hn]uhpKhY]rk(h)rl}rm(h^X ``.devREVNO``hg}rn(hi]hj]hk]hl]hn]uh_jhhY]rohzX .devREVNOrprq}rr(h^Uh_jlubahehubhzX& is only added when releaselevel==dev.rsrt}ru(h^X& is only added when releaselevel==dev.h_jhubeubh)rv}rw(h^X=It will never appear on alphas , betas or release candidates.rxh_jdh`hchehhg}ry(hi]hj]hk]hl]hn]uhpKhY]rzhzX=It will never appear on alphas , betas or release candidates.r{r|}r}(h^jxh_jvubaubehejubehejubj)r~}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(j)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_j~hY]rh)r}r(h^X#``1.2.3b5`` or ``1.2.3b5.devREVNO``h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(h)r}r(h^X ``1.2.3b5``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3b5rr}r(h^Uh_jubahehubhzX or rr}r(h^X or h_jubh)r}r(h^X``1.2.3b5.devREVNO``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3b5.devREVNOrr}r(h^Uh_jubahehubeubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_j~hY]rh)r}r(h^X ``1.2.3b5``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^jhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3b5rr}r(h^Uh_jubahehubaubahejubehejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(j)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X#``1.2.3c5`` or ``1.2.3c5.devREVNO``h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(h)r}r(h^X ``1.2.3c5``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3c5rr}r(h^Uh_jubahehubhzX or rr}r(h^X or h_jubh)r}r(h^X``1.2.3c5.devREVNO``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3c5.devREVNOrr}r(h^Uh_jubahehubeubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X ``1.2.3c5``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^jhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3c5rr}r(h^Uh_jubahehubaubahejubehejubeheUtbodyrubeheUtgrouprubaheUtablerubeubaubh~)r}r(h^X.. _version_1_3_1:h_jth`hchehhg}r(hl]hk]hi]hj]hn]hhDuhpKhqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rhjshehfhg}r(hi]hj]hk]hl]r(hDhAehn]r(hheuhpKhqhh}rhDjshY]r(hs)r}r(h^X Version 1.3.1rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpKhqhhY]rhzX Version 1.3.1rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpKhqhhY]rh)r}r(h^XdTo make `setup.py test` work in third party components we cannot use versiontools in our own setup. h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XcTo make `setup.py test` work in third party components we cannot use versiontools in our own setup.h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(hzXTo make rr}r(h^XTo make h_jubj)r}r(h^X`setup.py test`hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX setup.py testrr}r(h^Uh_jubahejubhzXL work in third party components we cannot use versiontools in our own setup.rr}r(h^XL work in third party components we cannot use versiontools in our own setup.h_jubeubaubaubh~)r}r(h^X.. _version_1_3:h_jh`hchehhg}r (hl]hk]hi]hj]hn]hh>uhpKhqhhY]ubeubh[)r }r (h^Uh_h\h`hch}r hjshehfhg}r (hi]hj]hk]hl]r(h>hPehn]r(h"heuhpKhqhh}rh>jshY]r(hs)r}r(h^X Version 1.3rh_j h`hchehwhg}r(hi]hj]hk]hl]hn]uhpKhqhhY]rhzX Version 1.3rr}r(h^jh_jubaubh)r}r(h^Uh_j h`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpKhqhhY]r(h)r}r(h^XAdd integration with setuptools (or more accurately, distribute) so that you no longer have to try-import versiontools. This means that you may finally install your packages with pip and everything will work correctly. h_jh`hchehhg}r (hi]hj]hk]hl]hn]uhpNhqhhY]r!h)r"}r#(h^XAdd integration with setuptools (or more accurately, distribute) so that you no longer have to try-import versiontools. This means that you may finally install your packages with pip and everything will work correctly.r$h_jh`hchehhg}r%(hi]hj]hk]hl]hn]uhpKhY]r&hzXAdd integration with setuptools (or more accurately, distribute) so that you no longer have to try-import versiontools. This means that you may finally install your packages with pip and everything will work correctly.r'r(}r)(h^j$h_j"ubaubaubh)r*}r+(h^X^Prevent an unexplained crash when following the backtrace in ``Version._find_source_tree()``. h_jh`hchehhg}r,(hi]hj]hk]hl]hn]uhpNhqhhY]r-h)r.}r/(h^X]Prevent an unexplained crash when following the backtrace in ``Version._find_source_tree()``.h_j*h`hchehhg}r0(hi]hj]hk]hl]hn]uhpKhY]r1(hzX=Prevent an unexplained crash when following the backtrace in r2r3}r4(h^X=Prevent an unexplained crash when following the backtrace in h_j.ubh)r5}r6(h^X``Version._find_source_tree()``hg}r7(hi]hj]hk]hl]hn]uh_j.hY]r8hzXVersion._find_source_tree()r9r:}r;(h^Uh_j5ubahehubhzX.r<}r=(h^X.h_j.ubeubaubeubcsphinx.addnodes seealso r>)r?}r@(h^Uh_j h`NheUseealsorAhg}rB(hi]hj]rCUadmonition-see-alsorDahk]hl]hn]uhpNhqhhY]rE(hs)rF}rG(h^XSee alsorHhg}rI(hi]hj]hk]hl]hn]uh_j?hY]rJhzXSee alsorKrL}rM(h^jHh_jFubahehwubh)rN}rO(h^Uhg}rP(hi]hj]hk]hl]hn]uh_j?hY]rQ(hzXTo get started quickly see rRrS}rT(h^XTo get started quickly see h_jNubh)rU}rV(h^X :ref:`usage`rWh_jNh`hchehhg}rX(UreftypeXrefhhXusageU refdomainXstdrYhl]hk]U refexplicithi]hj]hn]hhuhpKhY]rZjr)r[}r\(h^jWhg}r](hi]hj]r^(jjYXstd-refr_ehk]hl]hn]uh_jUhY]r`hzXusagerarb}rc(h^Uh_j[ubahejzubaubehehubeubh~)rd}re(h^X.. _version_1_2:h_j h`hchehhg}rf(hl]hk]hi]hj]hn]hh=uhpKhqhhY]ubeubh[)rg}rh(h^Uh_h\h`hch}rihjdshehfhg}rj(hi]hj]hk]hl]rk(h=hOehn]rl(h!heuhpKhqhh}rmh=jdshY]rn(hs)ro}rp(h^X Version 1.2rqh_jgh`hchehwhg}rr(hi]hj]hk]hl]hn]uhpKhqhhY]rshzX Version 1.2rtru}rv(h^jqh_joubaubh)rw}rx(h^Uh_jgh`hchehhg}ry(hX*hl]hk]hi]hj]hn]uhpKhqhhY]rz(h)r{}r|(h^XChange how vcs objects are constructed. With this change they are only constructed lazily when needed. This speeds up common operations, delays the time any additional modules are imported (if any) and retains backwards comp ability. h_jwh`hchehhg}r}(hi]hj]hk]hl]hn]uhpNhqhhY]r~h)r}r(h^XChange how vcs objects are constructed. With this change they are only constructed lazily when needed. This speeds up common operations, delays the time any additional modules are imported (if any) and retains backwards comp ability.rh_j{h`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXChange how vcs objects are constructed. With this change they are only constructed lazily when needed. This speeds up common operations, delays the time any additional modules are imported (if any) and retains backwards comp ability.rr}r(h^jh_jubaubaubh)r}r(h^XKUpdated documentation on installation instructions to point to the new PPA h_jwh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XJUpdated documentation on installation instructions to point to the new PPArh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXJUpdated documentation on installation instructions to point to the new PPArr}r(h^jh_jubaubaubh)r}r(h^XUpdated recommended usage guide so that installed programs do not depend on versiontools. This allows you to use versiontools in setup.py and still benefit from the smart version formatting and keep your deployment lightweight. h_jwh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XUpdated recommended usage guide so that installed programs do not depend on versiontools. This allows you to use versiontools in setup.py and still benefit from the smart version formatting and keep your deployment lightweight.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXUpdated recommended usage guide so that installed programs do not depend on versiontools. This allows you to use versiontools in setup.py and still benefit from the smart version formatting and keep your deployment lightweight.rr}r(h^jh_jubaubaubh)r}r(h^XAdded basic unit tests h_jwh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XAdded basic unit testsrh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXAdded basic unit testsrr}r(h^jh_jubaubaubh)r}r(h^XFixed most PEP8 issues h_jwh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XFixed most PEP8 issuesrh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXFixed most PEP8 issuesrr}r(h^jh_jubaubaubeubh~)r}r(h^X.. _version_1_1:h_jgh`hchehhg}r(hl]hk]hi]hj]hn]hh?uhpKhqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rhjshehfhg}r(hi]hj]hk]hl]r(h?hNehn]r(h heuhpKhqhh}rh?jshY]r(hs)r}r(h^X Version 1.1rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpKhqhhY]rhzX Version 1.1rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpKhqhhY]r(h)r}r(h^XcChange version string produced by :meth:`versiontools.Version.__str__` to be compatible with :pep:`386` The following table shows how old versions map to new versions: +-----------------------+----------------------+--------------------------------+ | Old Version | New Version | Comment | +=======================+======================+================================+ | ``1.2`` | ``1.2`` | | +-----------------------+----------------------+--------------------------------+ | ``1.2.3`` | ``1.2.3`` | | +-----------------------+----------------------+--------------------------------+ | ``1.2.3.dev.5`` | ``1.2.3.devREVNO`` | VCS revision and serial are | | | | two distinct fields. Serial | | | | is no longer displayed for | | | | development releases. | +-----------------------+----------------------+--------------------------------+ | ``1.2.3.alpha.5`` | ``1.2.3a5`` or | ``.devREVNO`` is only added | | | ``1.2.3a5.devREVNO`` | when VCS integration is | +-----------------------+----------------------+ available. | | ``1.2.3.beta.5`` | ``1.2.3b5`` or | | | | ``1.2.3b5.devREVNO`` | | +-----------------------+----------------------+ | | ``1.2.3.candidate.5`` | ``1.2.3c5`` or | | | | ``1.2.3c5.devREVNO`` | | +-----------------------+----------------------+--------------------------------+ h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]r(h)r}r(h^XChange version string produced by :meth:`versiontools.Version.__str__` to be compatible with :pep:`386` The following table shows how old versions map to new versions:h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(hzX"Change version string produced by rr}r(h^X"Change version string produced by h_jubh)r}r(h^X$:meth:`versiontools.Version.__str__`rh_jh`hchehhg}r(UreftypeXmethhhXversiontools.Version.__str__U refdomainXpyrhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]rh)r}r(h^jhg}r(hi]hj]r(jjXpy-methrehk]hl]hn]uh_jhY]rhzXversiontools.Version.__str__()rr}r(h^Uh_jubahehubaubhzX to be compatible with rr}r(h^X to be compatible with h_jubj~)r}r(h^Uhg}r(hl]hk]hi]hj]hn]j]r(jX%Python Enhancement Proposals; PEP 386Uindex-1rUtrauh_jhY]hejubh~)r}r(h^Uhg}r(hi]hj]hk]hl]rjahn]uh_jhY]hehubj)r}r(h^Uhg}r(UrefuriU'http://www.python.org/dev/peps/pep-0386hl]hk]hi]hj]rXpeprahn]Uinternaluh_jhY]rj)r}r(h^XPEP 386hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzXPEP 386rr}r(h^Uh_jubahejubahejubhzX@ The following table shows how old versions map to new versions:rr}r(h^X@ The following table shows how old versions map to new versions:h_jubeubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rj)r }r (h^Uhg}r (hl]hk]hi]hj]hn]UcolsKuh_jhY]r (j)r }r(h^Uhg}r(hl]hk]hi]hj]hn]UcolwidthKuh_j hY]hejubj)r}r(h^Uhg}r(hl]hk]hi]hj]hn]UcolwidthKuh_j hY]hejubj)r}r(h^Uhg}r(hl]hk]hi]hj]hn]UcolwidthK uh_j hY]hejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_j hY]rj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]r(j)r}r(h^Uhg}r (hi]hj]hk]hl]hn]uh_jhY]r!h)r"}r#(h^X Old Versionr$h_jh`hchehhg}r%(hi]hj]hk]hl]hn]uhpKhY]r&hzX Old Versionr'r(}r)(h^j$h_j"ubaubahejubj)r*}r+(h^Uhg}r,(hi]hj]hk]hl]hn]uh_jhY]r-h)r.}r/(h^X New Versionr0h_j*h`hchehhg}r1(hi]hj]hk]hl]hn]uhpKhY]r2hzX New Versionr3r4}r5(h^j0h_j.ubaubahejubj)r6}r7(h^Uhg}r8(hi]hj]hk]hl]hn]uh_jhY]r9h)r:}r;(h^XCommentr<h_j6h`hchehhg}r=(hi]hj]hk]hl]hn]uhpKhY]r>hzXCommentr?r@}rA(h^j<h_j:ubaubahejubehejubahejubj)rB}rC(h^Uhg}rD(hi]hj]hk]hl]hn]uh_j hY]rE(j)rF}rG(h^Uhg}rH(hi]hj]hk]hl]hn]uh_jBhY]rI(j)rJ}rK(h^Uhg}rL(hi]hj]hk]hl]hn]uh_jFhY]rMh)rN}rO(h^X``1.2``rPh_jJh`hchehhg}rQ(hi]hj]hk]hl]hn]uhpKhY]rRh)rS}rT(h^jPhg}rU(hi]hj]hk]hl]hn]uh_jNhY]rVhzX1.2rWrX}rY(h^Uh_jSubahehubaubahejubj)rZ}r[(h^Uhg}r\(hi]hj]hk]hl]hn]uh_jFhY]r]h)r^}r_(h^X``1.2``r`h_jZh`hchehhg}ra(hi]hj]hk]hl]hn]uhpKhY]rbh)rc}rd(h^j`hg}re(hi]hj]hk]hl]hn]uh_j^hY]rfhzX1.2rgrh}ri(h^Uh_jcubahehubaubahejubj)rj}rk(h^Uhg}rl(hi]hj]hk]hl]hn]uh_jFhY]hejubehejubj)rm}rn(h^Uhg}ro(hi]hj]hk]hl]hn]uh_jBhY]rp(j)rq}rr(h^Uhg}rs(hi]hj]hk]hl]hn]uh_jmhY]rth)ru}rv(h^X ``1.2.3``rwh_jqh`hchehhg}rx(hi]hj]hk]hl]hn]uhpKhY]ryh)rz}r{(h^jwhg}r|(hi]hj]hk]hl]hn]uh_juhY]r}hzX1.2.3r~r}r(h^Uh_jzubahehubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jmhY]rh)r}r(h^X ``1.2.3``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^jhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3rr}r(h^Uh_jubahehubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jmhY]hejubehejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jBhY]r(j)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X``1.2.3.dev.5``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^jhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX 1.2.3.dev.5rr}r(h^Uh_jubahehubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X``1.2.3.devREVNO``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^jhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3.devREVNOrr}r(h^Uh_jubahehubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^XhVCS revision and serial are two distinct fields. Serial is no longer displayed for development releases.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXhVCS revision and serial are two distinct fields. Serial is no longer displayed for development releases.rr}r(h^jh_jubaubahejubehejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jBhY]r(j)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X``1.2.3.alpha.5``rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^jhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX 1.2.3.alpha.5rr}r(h^Uh_jubahehubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X#``1.2.3a5`` or ``1.2.3a5.devREVNO``h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(h)r}r(h^X ``1.2.3a5``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3a5rr}r(h^Uh_jubahehubhzX or rr}r(h^X or h_jubh)r}r(h^X``1.2.3a5.devREVNO``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1.2.3a5.devREVNOrr}r(h^Uh_jubahehubeubahejubj)r}r(h^Uhg}r(hl]hk]hi]hj]UmorerowsKhn]uh_jhY]rh)r}r(h^X>``.devREVNO`` is only added when VCS integration is available.h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(h)r}r(h^X ``.devREVNO``hg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX .devREVNOrr}r(h^Uh_jubahehubhzX1 is only added when VCS integration is available.rr}r(h^X1 is only added when VCS integration is available.h_jubeubahejubehejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jBhY]r(j)r}r(h^Uhg}r (hi]hj]hk]hl]hn]uh_jhY]r h)r }r (h^X``1.2.3.beta.5``r h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rh)r}r(h^j hg}r(hi]hj]hk]hl]hn]uh_j hY]rhzX 1.2.3.beta.5rr}r(h^Uh_jubahehubaubahejubj)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rh)r}r(h^X#``1.2.3b5`` or ``1.2.3b5.devREVNO``h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(h)r}r (h^X ``1.2.3b5``hg}r!(hi]hj]hk]hl]hn]uh_jhY]r"hzX1.2.3b5r#r$}r%(h^Uh_jubahehubhzX or r&r'}r((h^X or h_jubh)r)}r*(h^X``1.2.3b5.devREVNO``hg}r+(hi]hj]hk]hl]hn]uh_jhY]r,hzX1.2.3b5.devREVNOr-r.}r/(h^Uh_j)ubahehubeubahejubehejubj)r0}r1(h^Uhg}r2(hi]hj]hk]hl]hn]uh_jBhY]r3(j)r4}r5(h^Uhg}r6(hi]hj]hk]hl]hn]uh_j0hY]r7h)r8}r9(h^X``1.2.3.candidate.5``r:h_j4h`hchehhg}r;(hi]hj]hk]hl]hn]uhpKhY]r<h)r=}r>(h^j:hg}r?(hi]hj]hk]hl]hn]uh_j8hY]r@hzX1.2.3.candidate.5rArB}rC(h^Uh_j=ubahehubaubahejubj)rD}rE(h^Uhg}rF(hi]hj]hk]hl]hn]uh_j0hY]rGh)rH}rI(h^X#``1.2.3c5`` or ``1.2.3c5.devREVNO``h_jDh`hchehhg}rJ(hi]hj]hk]hl]hn]uhpKhY]rK(h)rL}rM(h^X ``1.2.3c5``hg}rN(hi]hj]hk]hl]hn]uh_jHhY]rOhzX1.2.3c5rPrQ}rR(h^Uh_jLubahehubhzX or rSrT}rU(h^X or h_jHubh)rV}rW(h^X``1.2.3c5.devREVNO``hg}rX(hi]hj]hk]hl]hn]uh_jHhY]rYhzX1.2.3c5.devREVNOrZr[}r\(h^Uh_jVubahehubeubahejubehejubehejubehejubahejubeubh)r]}r^(h^XAdd :func:`versiontools.format_version` that converts a 5-element tuple to a proper version string and is more obvious in intent.h_jh`hchehhg}r_(hi]hj]hk]hl]hn]uhpNhqhhY]r`h)ra}rb(h^XAdd :func:`versiontools.format_version` that converts a 5-element tuple to a proper version string and is more obvious in intent.h_j]h`hchehhg}rc(hi]hj]hk]hl]hn]uhpKhY]rd(hzXAdd rerf}rg(h^XAdd h_jaubh)rh}ri(h^X#:func:`versiontools.format_version`rjh_jah`hchehhg}rk(UreftypeXfunchhXversiontools.format_versionU refdomainXpyrlhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]rmh)rn}ro(h^jjhg}rp(hi]hj]rq(jjlXpy-funcrrehk]hl]hn]uh_jhhY]rshzXversiontools.format_version()rtru}rv(h^Uh_jnubahehubaubhzXZ that converts a 5-element tuple to a proper version string and is more obvious in intent.rwrx}ry(h^XZ that converts a 5-element tuple to a proper version string and is more obvious in intent.h_jaubeubaubh)rz}r{(h^X1Change default of Version releaselevel to "final"r|h_jh`hchehhg}r}(hi]hj]hk]hl]hn]uhpNhqhhY]r~h)r}r(h^j|h_jzh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzX1Change default of Version releaselevel to "final"rr}r(h^j|h_jubaubaubh)r}r(h^X%Change default of Version serial to 0rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^jh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzX%Change default of Version serial to 0rr}r(h^jh_jubaubaubh)r}r(h^XSerial field is no longer initialized with revision number from vcs, instead it is used to count alphas, betas and release candidates.h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XSerial field is no longer initialized with revision number from vcs, instead it is used to count alphas, betas and release candidates.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXSerial field is no longer initialized with revision number from vcs, instead it is used to count alphas, betas and release candidates.rr}r(h^jh_jubaubaubh)r}r(h^X~All version components except for releaselevel must be non-negative integers or strings that can be converted to such integersh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^X~All version components except for releaselevel must be non-negative integers or strings that can be converted to such integersrh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzX~All version components except for releaselevel must be non-negative integers or strings that can be converted to such integersrr}r(h^jh_jubaubaubh)r}r(h^XDo not warn about "directory foo is not a bzr branch". This message was changed to debug as it is now legitimate for released code not to have bzr version control files. h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XDo not warn about "directory foo is not a bzr branch". This message was changed to debug as it is now legitimate for released code not to have bzr version control files.rh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]rhzXDo not warn about "directory foo is not a bzr branch". This message was changed to debug as it is now legitimate for released code not to have bzr version control files.rr}r(h^jh_jubaubaubeubh~)r}r(h^X.. _version_1_0_4:h_jh`hchehhg}r(hl]hk]hi]hj]hn]hhJuhpKhqhhY]ubeubh[)r}r(h^Uh_h\h`hch}rhjshehfhg}r(hi]hj]hk]hl]r(hJhIehn]r(hheuhpKhqhh}rhJjshY]r(hs)r}r(h^X Version 1.0.4rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpKhqhhY]rhzX Version 1.0.4rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpKhqhhY]r(h)r}r(h^X\Add support to obtain VCS integration object via :data:`~versiontools.Version.vcs` attributeh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^X\Add support to obtain VCS integration object via :data:`~versiontools.Version.vcs` attributeh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(hzX1Add support to obtain VCS integration object via rr}r(h^X1Add support to obtain VCS integration object via h_jubh)r}r(h^X!:data:`~versiontools.Version.vcs`rh_jh`hchehhg}r(UreftypeXdatahhXversiontools.Version.vcsU refdomainXpyrhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]rh)r}r(h^jhg}r(hi]hj]r(jjXpy-datarehk]hl]hn]uh_jhY]rhzXvcsrr}r(h^Uh_jubahehubaubhzX attributerr}r(h^X attributeh_jubeubaubh)r}r(h^XAdd support to obtain branch nickname from :class:`~versiontools.bzr_support.BzrIntegration` (via :data:`~versiontools.bzr_support.BzrIntegration.branch_nick` property)h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XAdd support to obtain branch nickname from :class:`~versiontools.bzr_support.BzrIntegration` (via :data:`~versiontools.bzr_support.BzrIntegration.branch_nick` property)h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r(hzX+Add support to obtain branch nickname from rr}r(h^X+Add support to obtain branch nickname from h_jubh)r}r(h^X1:class:`~versiontools.bzr_support.BzrIntegration`rh_jh`hchehhg}r(UreftypeXclasshhX'versiontools.bzr_support.BzrIntegrationU refdomainXpyrhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]rh)r}r(h^jhg}r(hi]hj]r(jjXpy-classrehk]hl]hn]uh_jhY]rhzXBzrIntegrationrr}r(h^Uh_jubahehubaubhzX (via rr}r(h^X (via h_jubh)r}r(h^X<:data:`~versiontools.bzr_support.BzrIntegration.branch_nick`r h_jh`hchehhg}r (UreftypeXdatahhX3versiontools.bzr_support.BzrIntegration.branch_nickU refdomainXpyr hl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]r h)r }r(h^j hg}r(hi]hj]r(jj Xpy-datarehk]hl]hn]uh_jhY]rhzX branch_nickrr}r(h^Uh_j ubahehubaubhzX property)rr}r(h^X property)h_jubeubaubh)r}r(h^XAdd :ref:`code_reference`. h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XAdd :ref:`code_reference`.h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpKhY]r (hzXAdd r!r"}r#(h^XAdd h_jubh)r$}r%(h^X:ref:`code_reference`r&h_jh`hchehhg}r'(UreftypeXrefhhXcode_referenceU refdomainXstdr(hl]hk]U refexplicithi]hj]hn]hhuhpKhY]r)jr)r*}r+(h^j&hg}r,(hi]hj]r-(jj(Xstd-refr.ehk]hl]hn]uh_j$hY]r/hzXcode_referencer0r1}r2(h^Uh_j*ubahejzubaubhzX.r3}r4(h^X.h_jubeubaubeubeubh[)r5}r6(h^Uh_h\h`hchehfhg}r7(hi]hj]hk]hl]r8hHahn]r9hauhpKhqhhY]r:(hs)r;}r<(h^X Version 1.0.3r=h_j5h`hchehwhg}r>(hi]hj]hk]hl]hn]uhpKhqhhY]r?hzX Version 1.0.3r@rA}rB(h^j=h_j;ubaubh)rC}rD(h^Uh_j5h`hchehhg}rE(hX*hl]hk]hi]hj]hn]uhpKhqhhY]rFh)rG}rH(h^XSDon't crash when :class:`ImportError` occurs during VCS integration initialization h_jCh`hchehhg}rI(hi]hj]hk]hl]hn]uhpNhqhhY]rJh)rK}rL(h^XRDon't crash when :class:`ImportError` occurs during VCS integration initializationh_jGh`hchehhg}rM(hi]hj]hk]hl]hn]uhpKhY]rN(hzXDon't crash when rOrP}rQ(h^XDon't crash when h_jKubh)rR}rS(h^X:class:`ImportError`rTh_jKh`hchehhg}rU(UreftypeXclasshhX ImportErrorU refdomainXpyrVhl]hk]U refexplicithi]hj]hn]hhhNhNuhpKhY]rWh)rX}rY(h^jThg}rZ(hi]hj]r[(jjVXpy-classr\ehk]hl]hn]uh_jRhY]r]hzX ImportErrorr^r_}r`(h^Uh_jXubahehubaubhzX- occurs during VCS integration initializationrarb}rc(h^X- occurs during VCS integration initializationh_jKubeubaubaubeubh[)rd}re(h^Uh_h\h`hchehfhg}rf(hi]hj]hk]hl]rghGahn]rhhauhpKhqhhY]ri(hs)rj}rk(h^X Version 1.0.2rlh_jdh`hchehwhg}rm(hi]hj]hk]hl]hn]uhpKhqhhY]rnhzX Version 1.0.2rorp}rq(h^jlh_jjubaubh)rr}rs(h^Uh_jdh`hchehhg}rt(hX*hl]hk]hi]hj]hn]uhpMhqhhY]ru(h)rv}rw(h^XAdd documentationrxh_jrh`hchehhg}ry(hi]hj]hk]hl]hn]uhpNhqhhY]rzh)r{}r|(h^jxh_jvh`hchehhg}r}(hi]hj]hk]hl]hn]uhpMhY]r~hzXAdd documentationrr}r(h^jxh_j{ubaubaubh)r}r(h^XwFix chicken-and-egg problem so that packages can now depend on versiontools and still be installed correctly with pip h_jrh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XuFix chicken-and-egg problem so that packages can now depend on versiontools and still be installed correctly with piprh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpMhY]rhzXuFix chicken-and-egg problem so that packages can now depend on versiontools and still be installed correctly with piprr}r(h^jh_jubaubaubeubeubh[)r}r(h^Uh_h\h`hchehfhg}r(hi]hj]hk]hl]rhFahn]rhauhpMhqhhY]r(hs)r}r(h^X Version 1.0.1rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpMhqhhY]rhzX Version 1.0.1rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpMhqhhY]rh)r}r(h^XDMake VCS integration more robust in the way it locates source tree h_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^XBMake VCS integration more robust in the way it locates source treerh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpMhY]rhzXBMake VCS integration more robust in the way it locates source treerr}r(h^jh_jubaubaubaubeubh[)r}r(h^Uh_h\h`hchehfhg}r(hi]hj]hk]hl]rhMahn]rhauhpM hqhhY]r(hs)r}r(h^X Version 1.0rh_jh`hchehwhg}r(hi]hj]hk]hl]hn]uhpM hqhhY]rhzX Version 1.0rr}r(h^jh_jubaubh)r}r(h^Uh_jh`hchehhg}r(hX*hl]hk]hi]hj]hn]uhpMhqhhY]rh)r}r(h^XInitial releaserh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpNhqhhY]rh)r}r(h^jh_jh`hchehhg}r(hi]hj]hk]hl]hn]uhpMhY]rhzXInitial releaserr}r(h^jh_jubaubaubaubeubeubah^UU transformerrNU footnote_refsr}rUrefnamesr}rUsymbol_footnotesr]rUautofootnote_refsr]rUsymbol_footnote_refsr]rU citationsr]rhqhU current_linerNUtransform_messagesr]r(cdocutils.nodes system_message r)r}r(h^Uhg}r(hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypeUINFOruhY]rh)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX3Hyperlink target "version-1-9-1" is not referenced.rr}r(h^Uh_jubahehubaheUsystem_messagerubj)r}r(h^Uhg}r(hi]UlevelKhl]hk]Usourcehchj]hn]UlineK UtypejuhY]rh)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX1Hyperlink target "version-1-9" is not referenced.rr}r(h^Uh_jubahehubahejubj)r}r(h^Uhg}r(hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]rh)r}r(h^Uhg}r(hi]hj]hk]hl]hn]uh_jhY]rhzX3Hyperlink target "version-1-8-3" is not referenced.rr}r(h^Uh_jubahehubahejubj)r}r(h^Uhg}r (hi]UlevelKhl]hk]Usourcehchj]hn]UlineK'UtypejuhY]r h)r }r (h^Uhg}r (hi]hj]hk]hl]hn]uh_jhY]r hzX3Hyperlink target "version-1-8-2" is not referenced.r r }r (h^Uh_j ubahehubahejubj)r }r (h^Uhg}r (hi]UlevelKhl]hk]Usourcehchj]hn]UlineK1UtypejuhY]r h)r }r (h^Uhg}r (hi]hj]hk]hl]hn]uh_j hY]r hzX3Hyperlink target "version-1-8-1" is not referenced.r r }r (h^Uh_j ubahehubahejubj)r }r (h^Uhg}r (hi]UlevelKhl]hk]Usourcehchj]hn]UlineK:UtypejuhY]r h)r }r (h^Uhg}r (hi]hj]hk]hl]hn]uh_j hY]r hzX1Hyperlink target "version-1-8" is not referenced.r r }r (h^Uh_j ubahehubahejubj)r }r (h^Uhg}r! (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKNUtypejuhY]r" h)r# }r$ (h^Uhg}r% (hi]hj]hk]hl]hn]uh_j hY]r& hzX-Hyperlink target "index-0" is not referenced.r' r( }r) (h^Uh_j# ubahehubahejubj)r* }r+ (h^Uhg}r, (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKQUtypejuhY]r- h)r. }r/ (h^Uhg}r0 (hi]hj]hk]hl]hn]uh_j* hY]r1 hzX1Hyperlink target "version-1-7" is not referenced.r2 r3 }r4 (h^Uh_j. ubahehubahejubj)r5 }r6 (h^Uhg}r7 (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKZUtypejuhY]r8 h)r9 }r: (h^Uhg}r; (hi]hj]hk]hl]hn]uh_j5 hY]r< hzX1Hyperlink target "version-1-6" is not referenced.r= r> }r? (h^Uh_j9 ubahehubahejubj)r@ }rA (h^Uhg}rB (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKdUtypejuhY]rC h)rD }rE (h^Uhg}rF (hi]hj]hk]hl]hn]uh_j@ hY]rG hzX1Hyperlink target "version-1-5" is not referenced.rH rI }rJ (h^Uh_jD ubahehubahejubj)rK }rL (h^Uhg}rM (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKmUtypejuhY]rN h)rO }rP (h^Uhg}rQ (hi]hj]hk]hl]hn]uh_jK hY]rR hzX1Hyperlink target "version-1-4" is not referenced.rS rT }rU (h^Uh_jO ubahehubahejubj)rV }rW (h^Uhg}rX (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKyUtypejuhY]rY h)rZ }r[ (h^Uhg}r\ (hi]hj]hk]hl]hn]uh_jV hY]r] hzX3Hyperlink target "version-1-3-2" is not referenced.r^ r_ }r` (h^Uh_jZ ubahehubahejubj)ra }rb (h^Uhg}rc (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]rd h)re }rf (h^Uhg}rg (hi]hj]hk]hl]hn]uh_ja hY]rh hzX3Hyperlink target "version-1-3-1" is not referenced.ri rj }rk (h^Uh_je ubahehubahejubj)rl }rm (h^Uhg}rn (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]ro h)rp }rq (h^Uhg}rr (hi]hj]hk]hl]hn]uh_jl hY]rs hzX1Hyperlink target "version-1-3" is not referenced.rt ru }rv (h^Uh_jp ubahehubahejubj)rw }rx (h^Uhg}ry (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]rz h)r{ }r| (h^Uhg}r} (hi]hj]hk]hl]hn]uh_jw hY]r~ hzX1Hyperlink target "version-1-2" is not referenced.r r }r (h^Uh_j{ ubahehubahejubj)r }r (h^Uhg}r (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]r h)r }r (h^Uhg}r (hi]hj]hk]hl]hn]uh_j hY]r hzX1Hyperlink target "version-1-1" is not referenced.r r }r (h^Uh_j ubahehubahejubj)r }r (h^Uhg}r (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]r h)r }r (h^Uhg}r (hi]hj]hk]hl]hn]uh_j hY]r hzX-Hyperlink target "index-1" is not referenced.r r }r (h^Uh_j ubahehubahejubj)r }r (h^Uhg}r (hi]UlevelKhl]hk]Usourcehchj]hn]UlineKUtypejuhY]r h)r }r (h^Uhg}r (hi]hj]hk]hl]hn]uh_j hY]r hzX3Hyperlink target "version-1-0-4" is not referenced.r r }r (h^Uh_j ubahehubahejubeUreporterr NUid_startr KU autofootnotesr ]r U citation_refsr }r Uindirect_targetsr ]r Usettingsr (cdocutils.frontend Values r or }r (Ufootnote_backlinksr KUrecord_dependenciesr NU rfc_base_urlr Uhttp://tools.ietf.org/html/r U tracebackr Upep_referencesr NUstrip_commentsr NU toc_backlinksr jU language_coder Uenr U datestampr NU report_levelr KU _destinationr NU halt_levelr KU strip_classesr NhwNUerror_encoding_error_handlerr Ubackslashreplacer Udebugr NUembed_stylesheetr Uoutput_encoding_error_handlerr Ustrictr U sectnum_xformr KUdump_transformsr NU docinfo_xformr KUwarning_streamr NUpep_file_url_templater Upep-%04dr Uexit_status_levelr KUconfigr NUstrict_visitorr NUcloak_email_addressesr Utrim_footnote_reference_spacer Uenvr NUdump_pseudo_xmlr NUexpose_internalsr NUsectsubtitle_xformr U source_linkr NUrfc_referencesr NUoutput_encodingr Uutf-8r U source_urlr NUinput_encodingr U utf-8-sigr U_disable_configr NU id_prefixr UU tab_widthr KUerror_encodingr UUTF-8r U_sourcer UD/var/build/user_builds/versiontools/checkouts/latest/doc/changes.rstr Ugettext_compactr U generatorr NUdump_internalsr NU smart_quotesr U pep_base_urlr Uhttp://www.python.org/dev/peps/r Usyntax_highlightr Ulongr Uinput_encoding_error_handlerr j Uauto_id_prefixr Uidr Udoctitle_xformr Ustrip_elements_with_classesr NU _config_filesr ]Ufile_insertion_enabledr KU raw_enabledr KU dump_settingsr NubUsymbol_footnote_startr KUidsr }r (hVjphWjhUjhEhhSjhXh\hKjhTjh5jh4jhLhh6jphChhQj-h@jthAjhPj jjhNjhIjhOjgjjh7jh8hh=jgh>j hMjh?jh9jh:jh;j-h]r jah?]r jah9]r jah:]r jah;]r j*ah<]r jauub.PKi=#D5AA+versiontools-latest/.doctrees/usage.doctreecdocutils.nodes document q)q}q(U nametypesq}q(Xcopy versiontools_support.pyqNXreleasesqNXdeveloping with versiontoolsqNXusage instructionsq NXpatch setup.pyq NXusageq Xdeclare package versionq NXupdate manifest.inq NuUsubstitution_defsq}qUparse_messagesq]qUcurrent_sourceqNU decorationqNUautofootnote_startqKUnameidsq}q(hUcopy-versiontools-support-pyqhUreleasesqhUdeveloping-with-versiontoolsqh Uusage-instructionsqh Upatch-setup-pyqh Uusageqh Udeclare-package-versionqh Uupdate-manifest-inquUchildrenq]q (cdocutils.nodes target q!)q"}q#(U rawsourceq$X .. _usage:Uparentq%hUsourceq&cdocutils.nodes reprunicode q'XB/var/build/user_builds/versiontools/checkouts/latest/doc/usage.rstq(q)}q*bUtagnameq+Utargetq,U attributesq-}q.(Uidsq/]Ubackrefsq0]Udupnamesq1]Uclassesq2]Unamesq3]Urefidq4huUlineq5KUdocumentq6hh]ubcdocutils.nodes section q7)q8}q9(h$Uh%hh&h)Uexpect_referenced_by_nameq:}q;h h"sh+Usectionq(hheh3]q?(h h euh5Kh6hUexpect_referenced_by_idq@}qAhh"sh]qB(cdocutils.nodes title qC)qD}qE(h$XUsage instructionsqFh%h8h&h)h+UtitleqGh-}qH(h1]h2]h0]h/]h3]uh5Kh6hh]qIcdocutils.nodes Text qJXUsage instructionsqKqL}qM(h$hFh%hDubaubcdocutils.nodes paragraph qN)qO}qP(h$XBUsing versiontools is very easy. Just follow those steps to do it.qQh%h8h&h)h+U paragraphqRh-}qS(h1]h2]h0]h/]h3]uh5Kh6hh]qThJXBUsing versiontools is very easy. Just follow those steps to do it.qUqV}qW(h$hQh%hOubaubh7)qX}qY(h$Uh%h8h&h)h+h}r?(h$X`your_package.__version__`h-}r@(h1]h2]h0]h/]h3]uh%jh]rAhJXyour_package.__version__rBrC}rD(h$Uh%j>ubah+Utitle_referencerEubhJX contains. Since your rFrG}rH(h$X contains. Since your h%jubj=)rI}rJ(h$X `__version__`h-}rK(h1]h2]h0]h/]h3]uh%jh]rLhJX __version__rMrN}rO(h$Uh%jIubah+jEubhJXS is a tuple as described above you'll get a correctly formatted version identifier.rPrQ}rR(h$XS is a tuple as described above you'll get a correctly formatted version identifier.h%jubeubhN)rS}rT(h$XThis code will ensure that:rUh%hh&h)h+hRh-}rV(h1]h2]h0]h/]h3]uh5K=h6hh]rWhJXThis code will ensure that:rXrY}rZ(h$jUh%jSubaubcdocutils.nodes enumerated_list r[)r\}r](h$Uh%hh&h)h+Uenumerated_listr^h-}r_(Usuffixr`U.h/]h0]h1]UprefixraUh2]h3]UenumtyperbUarabicrcuh5K?h6hh]rd(cdocutils.nodes list_item re)rf}rg(h$X#Your package will use version toolsrhh%j\h&h)h+U list_itemrih-}rj(h1]h2]h0]h/]h3]uh5Nh6hh]rkhN)rl}rm(h$jhh%jfh&h)h+hRh-}rn(h1]h2]h0]h/]h3]uh5K?h]rohJX#Your package will use version toolsrprq}rr(h$jhh%jlubaubaubje)rs}rt(h$X,Your package will correctly install via pip h%j\h&h)h+jih-}ru(h1]h2]h0]h/]h3]uh5Nh6hh]rvhN)rw}rx(h$X+Your package will correctly install via pipryh%jsh&h)h+hRh-}rz(h1]h2]h0]h/]h3]uh5K@h]r{hJX+Your package will correctly install via pipr|r}}r~(h$jyh%jwubaubaubeubh7)r}r(h$Uh%hh&h)h+h(cdocutils.frontend Values r?or@}rA(Ufootnote_backlinksrBKUrecord_dependenciesrCNU rfc_base_urlrDUhttp://tools.ietf.org/html/rEU tracebackrFUpep_referencesrGNUstrip_commentsrHNU toc_backlinksrIUentryrJU language_coderKUenrLU datestamprMNU report_levelrNKU _destinationrONU halt_levelrPKU strip_classesrQNhGNUerror_encoding_error_handlerrRUbackslashreplacerSUdebugrTNUembed_stylesheetrUUoutput_encoding_error_handlerrVUstrictrWU sectnum_xformrXKUdump_transformsrYNU docinfo_xformrZKUwarning_streamr[NUpep_file_url_templater\Upep-%04dr]Uexit_status_levelr^KUconfigr_NUstrict_visitorr`NUcloak_email_addressesraUtrim_footnote_reference_spacerbUenvrcNUdump_pseudo_xmlrdNUexpose_internalsreNUsectsubtitle_xformrfU source_linkrgNUrfc_referencesrhNUoutput_encodingriUutf-8rjU source_urlrkNUinput_encodingrlU utf-8-sigrmU_disable_configrnNU id_prefixroUU tab_widthrpKUerror_encodingrqUUTF-8rrU_sourcersUB/var/build/user_builds/versiontools/checkouts/latest/doc/usage.rstrtUgettext_compactruU generatorrvNUdump_internalsrwNU smart_quotesrxU pep_base_urlryUhttp://www.python.org/dev/peps/rzUsyntax_highlightr{Ulongr|Uinput_encoding_error_handlerr}jWUauto_id_prefixr~UidrUdoctitle_xformrUstrip_elements_with_classesrNU _config_filesr]Ufile_insertion_enabledrKU raw_enabledrKU dump_settingsrNubUsymbol_footnote_startrKUidsr}r(hh8hjhhhhhjhhXhh8hhuUsubstitution_namesr}rh+h6h-}r(h1]h/]h0]Usourceh)h2]h3]uU footnotesr]rUrefidsr}rh]rh"asub.PKi=#D||+versiontools-latest/.doctrees/index.doctreecdocutils.nodes document q)q}q(U nametypesq}q(X installationqNXfeaturesqNXpython package indexqXversion tools documentationq NXindices and tablesq NXpipq X __version__ to string conversionq NuUsubstitution_defsq }qUparse_messagesq]qUcurrent_sourceqNU decorationqNUautofootnote_startqKUnameidsq}q(hU installationqhUfeaturesqhUpython-package-indexqh Uversion-tools-documentationqh Uindices-and-tablesqh Upipqh Uversion-to-string-conversionquUchildrenq]q(cdocutils.nodes section q)q }q!(U rawsourceq"UUparentq#hUsourceq$cdocutils.nodes reprunicode q%XB/var/build/user_builds/versiontools/checkouts/latest/doc/index.rstq&q'}q(bUtagnameq)Usectionq*U attributesq+}q,(Udupnamesq-]Uclassesq.]Ubackrefsq/]Uidsq0]q1haUnamesq2]q3h auUlineq4KUdocumentq5hh]q6(cdocutils.nodes title q7)q8}q9(h"XVersion Tools Documentationq:h#h h$h'h)Utitleq;h+}q<(h-]h.]h/]h0]h2]uh4Kh5hh]q=cdocutils.nodes Text q>XVersion Tools Documentationq?q@}qA(h"h:h#h8ubaubcsphinx.addnodes seealso qB)qC}qD(h"Uh#h h$Nh)UseealsoqEh+}qF(h-]h.]qGUadmonition-see-alsoqHah/]h0]h2]uh4Nh5hh]qI(h7)qJ}qK(h"XSee alsoqLh+}qM(h-]h.]h/]h0]h2]uh#hCh]qNh>XSee alsoqOqP}qQ(h"hLh#hJubah)h;ubcdocutils.nodes paragraph qR)qS}qT(h"Uh+}qU(h-]h.]h/]h0]h2]uh#hCh]qV(h>XTo get started quickly see qWqX}qY(h"XTo get started quickly see h#hSubcsphinx.addnodes pending_xref qZ)q[}q\(h"X :ref:`usage`q]h#hSh$h'h)U pending_xrefq^h+}q_(UreftypeXrefUrefwarnq`U reftargetqaXusageU refdomainXstdqbh0]h/]U refexplicith-]h.]h2]UrefdocqcUindexqduh4Kh]qecdocutils.nodes emphasis qf)qg}qh(h"h]h+}qi(h-]h.]qj(UxrefqkhbXstd-refqleh/]h0]h2]uh#h[h]qmh>Xusageqnqo}qp(h"Uh#hgubah)Uemphasisqqubaubeh)U paragraphqrubeubhB)qs}qt(h"Uh#h h$Nh)hEh+}qu(h-]h.]qvUadmonition-see-alsoqwah/]h0]h2]uh4Nh5hh]qx(h7)qy}qz(h"XSee alsoq{h+}q|(h-]h.]h/]h0]h2]uh#hsh]q}h>XSee alsoq~q}q(h"h{h#hyubah)h;ubhR)q}q(h"Uh+}q(h-]h.]h/]h0]h2]uh#hsh]q(h>XSee what's new in qq}q(h"XSee what's new in h#hubhZ)q}q(h"X:ref:`version_1_9_1`qh#hh$h'h)h^h+}q(UreftypeXrefh`haX version_1_9_1U refdomainXstdqh0]h/]U refexplicith-]h.]h2]hchduh4Kh]qhf)q}q(h"hh+}q(h-]h.]q(hkhXstd-refqeh/]h0]h2]uh#hh]qh>X version_1_9_1qq}q(h"Uh#hubah)hqubaubeh)hrubeubcdocutils.nodes note q)q}q(h"XpThis document may be out of date, the bleeding edge version is always available at http://versiontools.rtfd.org/h#h h$h'h)Unoteqh+}q(h-]h.]h/]h0]h2]uh4Nh5hh]qhR)q}q(h"XpThis document may be out of date, the bleeding edge version is always available at http://versiontools.rtfd.org/h#hh$h'h)hrh+}q(h-]h.]h/]h0]h2]uh4Kh]q(h>XSThis document may be out of date, the bleeding edge version is always available at qq}q(h"XSThis document may be out of date, the bleeding edge version is always available at h#hubcdocutils.nodes reference q)q}q(h"Xhttp://versiontools.rtfd.org/qh+}q(Urefurihh0]h/]h-]h.]h2]uh#hh]qh>Xhttp://versiontools.rtfd.org/qq}q(h"Uh#hubah)U referencequbeubaubeubh)q}q(h"Uh#hh$h'h)h*h+}q(h-]h.]h/]h0]qhah2]qhauh4K h5hh]q(h7)q}q(h"X Installationqh#hh$h'h)h;h+}q(h-]h.]h/]h0]h2]uh4K h5hh]qh>X Installationqq}q(h"hh#hubaubhR)q}q(h"XThis package is being actively maintained and published in the `Python Package Index `_. You can install it if you have `pip `_ tool using just one line::h#hh$h'h)hrh+}q(h-]h.]h/]h0]h2]uh4Kh5hh]q(h>X?This package is being actively maintained and published in the qq}q(h"X?This package is being actively maintained and published in the h#hubh)q}q(h"X7`Python Package Index `_h+}q(UnameXPython Package IndexUrefuriqXhttp://http://pypi.python.orgqh0]h/]h-]h.]h2]uh#hh]qh>XPython Package IndexqɅq}q(h"Uh#hubah)hubcdocutils.nodes target q)q}q(h"X U referencedqKh#hh)Utargetqh+}q(Urefurihh0]qhah/]h-]h.]h2]qhauh]ubh>X!. You can install it if you have qԅq}q(h"X!. You can install it if you have h#hubh)q}q(h"X"`pip `_h+}q(Unameh hXhttp://pip.openplans.org/qh0]h/]h-]h.]h2]uh#hh]qh>Xpipq܅q}q(h"Uh#hubah)hubh)q}q(h"X hKh#hh)hh+}q(Urefurihh0]qhah/]h-]h.]h2]qh auh]ubh>X tool using just one line:q䅁q}q(h"X tool using just one line:h#hubeubcdocutils.nodes literal_block q)q}q(h"X$ pip install versiontoolsh#hh$h'h)U literal_blockqh+}q(U xml:spaceqUpreserveqh0]h/]h-]h.]h2]uh4Kh5hh]qh>X$ pip install versiontoolsqq}q(h"Uh#hubaubeubh)q}q(h"Uh#hh$h'h)h*h+}q(h-]h.]h/]h0]qhah2]qhauh4Kh5hh]q(h7)q}q(h"XFeaturesqh#hh$h'h)h;h+}q(h-]h.]h/]h0]h2]uh4Kh5hh]qh>XFeaturesqq}q(h"hh#hubaubcdocutils.nodes bullet_list r)r}r(h"Uh#hh$h'h)U bullet_listrh+}r(UbulletrX*h0]h/]h-]h.]h2]uh4Kh5hh]r(cdocutils.nodes list_item r)r}r (h"XA piece of code that allows you to keep a **single version definition** inside your package or module. No more hacks in setup.py, no more duplicates in setup.py and somewhere else. Just **one** version per package.h#jh$h'h)U list_itemr h+}r (h-]h.]h/]h0]h2]uh4Nh5hh]r hR)r }r(h"XA piece of code that allows you to keep a **single version definition** inside your package or module. No more hacks in setup.py, no more duplicates in setup.py and somewhere else. Just **one** version per package.h#jh$h'h)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]r(h>X*A piece of code that allows you to keep a rr}r(h"X*A piece of code that allows you to keep a h#j ubcdocutils.nodes strong r)r}r(h"X**single version definition**h+}r(h-]h.]h/]h0]h2]uh#j h]rh>Xsingle version definitionrr}r(h"Uh#jubah)Ustrongrubh>Xs inside your package or module. No more hacks in setup.py, no more duplicates in setup.py and somewhere else. Just rr}r(h"Xs inside your package or module. No more hacks in setup.py, no more duplicates in setup.py and somewhere else. Just h#j ubj)r }r!(h"X**one**h+}r"(h-]h.]h/]h0]h2]uh#j h]r#h>Xoner$r%}r&(h"Uh#j ubah)jubh>X version per package.r'r(}r)(h"X version per package.h#j ubeubaubj)r*}r+(h"X:class:`~versiontools.Version` objects can produce nice version strings for released files that are compliant with :pep:`386`. Releases, alphas, betas, development snaphots. All of those get good version strings out of the box.h#jh$h'h)j h+}r,(h-]h.]h/]h0]h2]uh4Nh5hh]r-hR)r.}r/(h"X:class:`~versiontools.Version` objects can produce nice version strings for released files that are compliant with :pep:`386`. Releases, alphas, betas, development snaphots. All of those get good version strings out of the box.h#j*h$h'h)hrh+}r0(h-]h.]h/]h0]h2]uh4Kh]r1(hZ)r2}r3(h"X:class:`~versiontools.Version`r4h#j.h$h'h)h^h+}r5(UreftypeXclassh`haXversiontools.VersionU refdomainXpyr6h0]h/]U refexplicith-]h.]h2]hchdUpy:classr7NU py:moduler8Nuh4Kh]r9cdocutils.nodes literal r:)r;}r<(h"j4h+}r=(h-]h.]r>(hkj6Xpy-classr?eh/]h0]h2]uh#j2h]r@h>XVersionrArB}rC(h"Uh#j;ubah)UliteralrDubaubh>XU objects can produce nice version strings for released files that are compliant with rErF}rG(h"XU objects can produce nice version strings for released files that are compliant with h#j.ubcsphinx.addnodes index rH)rI}rJ(h"Uh+}rK(h0]h/]h-]h.]h2]UentriesrL]rM(UsinglerNX%Python Enhancement Proposals; PEP 386Uindex-0rOUtrPauh#j.h]h)UindexrQubh)rR}rS(h"Uh+}rT(h-]h.]h/]h0]rUjOah2]uh#j.h]h)hubh)rV}rW(h"Uh+}rX(UrefuriU'http://www.python.org/dev/peps/pep-0386h0]h/]h-]h.]rYXpeprZah2]Uinternaluh#j.h]r[j)r\}r](h"XPEP 386h+}r^(h-]h.]h/]h0]h2]uh#jVh]r_h>XPEP 386r`ra}rb(h"Uh#j\ubah)jubah)hubh>Xf. Releases, alphas, betas, development snaphots. All of those get good version strings out of the box.rcrd}re(h"Xf. Releases, alphas, betas, development snaphots. All of those get good version strings out of the box.h#j.ubeubaubj)rf}rg(h"XVersion objects understand the :abbr:`VCS (Version Control System)` used by your project. Git, Mercurial and Bazaar are supported out of the box. Custom systems can be added by 3rd party plugins.h#jh$h'h)j h+}rh(h-]h.]h/]h0]h2]uh4Nh5hh]rihR)rj}rk(h"XVersion objects understand the :abbr:`VCS (Version Control System)` used by your project. Git, Mercurial and Bazaar are supported out of the box. Custom systems can be added by 3rd party plugins.h#jfh$h'h)hrh+}rl(h-]h.]h/]h0]h2]uh4Kh]rm(h>XVersion objects understand the rnro}rp(h"XVersion objects understand the h#jjubcsphinx.addnodes abbreviation rq)rr}rs(h"XVCSh+}rt(U explanationXVersion Control Systemh0]h/]h-]h.]h2]uh#jjh]ruh>XVCSrvrw}rx(h"Uh#jrubah)U abbreviationryubh>X used by your project. Git, Mercurial and Bazaar are supported out of the box. Custom systems can be added by 3rd party plugins.rzr{}r|(h"X used by your project. Git, Mercurial and Bazaar are supported out of the box. Custom systems can be added by 3rd party plugins.h#jjubeubaubj)r}}r~(h"XEVersion object that compares as a tuple of values and sorts properly.rh#jh$h'h)j h+}r(h-]h.]h/]h0]h2]uh4Nh5hh]rhR)r}r(h"jh#j}h$h'h)hrh+}r(h-]h.]h/]h0]h2]uh4K!h]rh>XEVersion object that compares as a tuple of values and sorts properly.rr}r(h"jh#jubaubaubj)r}r(h"XZero-dependency install! If all you care about is handling setup() to get nice tarball names then you don't need to depend on versiontools (no setup_requires, no install_requires!). You will need to bundle a small support module though. h#jh$h'h)j h+}r(h-]h.]h/]h0]h2]uh4Nh5hh]rhR)r}r(h"XZero-dependency install! If all you care about is handling setup() to get nice tarball names then you don't need to depend on versiontools (no setup_requires, no install_requires!). You will need to bundle a small support module though.rh#jh$h'h)hrh+}r(h-]h.]h/]h0]h2]uh4K"h]rh>XZero-dependency install! If all you care about is handling setup() to get nice tarball names then you don't need to depend on versiontools (no setup_requires, no install_requires!). You will need to bundle a small support module though.rr}r(h"jh#jubaubaubeubeubh)r}r(h"Uh#hh$h'h)h*h+}r(h-]h.]h/]h0]rhah2]rh auh4K(h5hh]r(h7)r}r(h"X __version__ to string conversionrh#jh$h'h)h;h+}r(h-]h.]h/]h0]h2]uh4K(h5hh]rh>X __version__ to string conversionrr}r(h"jh#jubaubhR)r}r(h"XThis is pulled from the documentation of the string method on the :class:`~versiontools.Version` class. In general you don't need to explicitly use that class to benefit from this system. To learn more check the :ref:`usage` section.h#jh$h'h)hrh+}r(h-]h.]h/]h0]h2]uh4K*h5hh]r(h>XBThis is pulled from the documentation of the string method on the rr}r(h"XBThis is pulled from the documentation of the string method on the h#jubhZ)r}r(h"X:class:`~versiontools.Version`rh#jh$h'h)h^h+}r(UreftypeXclassh`haXversiontools.VersionU refdomainXpyrh0]h/]U refexplicith-]h.]h2]hchdj7Nj8Nuh4K*h]rj:)r}r(h"jh+}r(h-]h.]r(hkjXpy-classreh/]h0]h2]uh#jh]rh>XVersionrr}r(h"Uh#jubah)jDubaubh>Xt class. In general you don't need to explicitly use that class to benefit from this system. To learn more check the rr}r(h"Xt class. In general you don't need to explicitly use that class to benefit from this system. To learn more check the h#jubhZ)r}r(h"X :ref:`usage`rh#jh$h'h)h^h+}r(UreftypeXrefh`haXusageU refdomainXstdrh0]h/]U refexplicith-]h.]h2]hchduh4K*h]rhf)r}r(h"jh+}r(h-]h.]r(hkjXstd-refreh/]h0]h2]uh#jh]rh>Xusagerr}r(h"Uh#jubah)hqubaubh>X section.rr}r(h"X section.h#jubeubjH)r}r(h"Uh#jh$X2:docstring of versiontools.Version.__str__rh)jQh+}r(h0]h/]h-]h.]h2]Uentries]uh4Nh5hh]ubcsphinx.addnodes desc r)r}r(h"Uh#jh$jh)Udescrh+}r(UnoindexrUdomainrXpyh0]h/]h-]h.]h2]UobjtyperXmethodrUdesctyperjuh4Nh5hh]r(csphinx.addnodes desc_signature r)r}r(h"XVersion.__str__()rh#jh$U rh)Udesc_signaturerh+}r(h0]Umodulerh%X versiontoolsrr}rbh/]h-]h.]h2]UfullnamerXVersion.__str__UclassrXVersionUfirstruh4Nh5hh]r(csphinx.addnodes desc_addname r)r}r(h"XVersion.h#jh$jh)U desc_addnamerh+}r(h-]h.]h/]h0]h2]uh4Nh5hh]rh>XVersion.rr}r(h"Uh#jubaubcsphinx.addnodes desc_name r)r}r(h"X__str__h#jh$jh)U desc_namerh+}r(h-]h.]h/]h0]h2]uh4Nh5hh]rh>X__str__rr}r(h"Uh#jubaubcsphinx.addnodes desc_parameterlist r)r}r(h"Uh#jh$jh)Udesc_parameterlistrh+}r(h-]h.]h/]h0]h2]uh4Nh5hh]ubeubcsphinx.addnodes desc_content r)r}r(h"Uh#jh$jh)U desc_contentrh+}r(h-]h.]h/]h0]h2]uh4Nh5hh]r(hR)r }r (h"X4Return a string representation of the version tuple.r h#jh$jh)hrh+}r (h-]h.]h/]h0]h2]uh4Kh5hh]r h>X4Return a string representation of the version tuple.rr}r(h"j h#j ubaubhR)r}r(h"XThe string is not a direct concatenation of all version components. Instead it's a more natural 'human friendly' version where components with certain values are left out.rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh5hh]rh>XThe string is not a direct concatenation of all version components. Instead it's a more natural 'human friendly' version where components with certain values are left out.rr}r(h"jh#jubaubhR)r}r(h"XQThe following table shows how a version tuple gets converted to a version string.rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh5hh]rh>XQThe following table shows how a version tuple gets converted to a version string.rr}r (h"jh#jubaubcdocutils.nodes table r!)r"}r#(h"Uh#jh$jh)Utabler$h+}r%(h-]h.]h/]h0]h2]uh4Nh5hh]r&cdocutils.nodes tgroup r')r(}r)(h"Uh+}r*(h0]h/]h-]h.]h2]UcolsKuh#j"h]r+(cdocutils.nodes colspec r,)r-}r.(h"Uh+}r/(h0]h/]h-]h.]h2]UcolwidthKuh#j(h]h)Ucolspecr0ubj,)r1}r2(h"Uh+}r3(h0]h/]h-]h.]h2]UcolwidthKuh#j(h]h)j0ubcdocutils.nodes thead r4)r5}r6(h"Uh+}r7(h-]h.]h/]h0]h2]uh#j(h]r8cdocutils.nodes row r9)r:}r;(h"Uh+}r<(h-]h.]h/]h0]h2]uh#j5h]r=(cdocutils.nodes entry r>)r?}r@(h"Uh+}rA(h-]h.]h/]h0]h2]uh#j:h]rBhR)rC}rD(h"X __version__rEh#j?h$jh)hrh+}rF(h-]h.]h/]h0]h2]uh4K h]rGh>X __version__rHrI}rJ(h"jEh#jCubaubah)UentryrKubj>)rL}rM(h"Uh+}rN(h-]h.]h/]h0]h2]uh#j:h]rOhR)rP}rQ(h"XFormatter versionrRh#jLh$jh)hrh+}rS(h-]h.]h/]h0]h2]uh4K h]rTh>XFormatter versionrUrV}rW(h"jRh#jPubaubah)jKubeh)UrowrXubah)UtheadrYubcdocutils.nodes tbody rZ)r[}r\(h"Uh+}r](h-]h.]h/]h0]h2]uh#j(h]r^(j9)r_}r`(h"Uh+}ra(h-]h.]h/]h0]h2]uh#j[h]rb(j>)rc}rd(h"Uh+}re(h-]h.]h/]h0]h2]uh#j_h]rfhR)rg}rh(h"X``(1, 2, 0, "final", 0)``rih#jch$jh)hrh+}rj(h-]h.]h/]h0]h2]uh4K h]rkj:)rl}rm(h"jih+}rn(h-]h.]h/]h0]h2]uh#jgh]roh>X(1, 2, 0, "final", 0)rprq}rr(h"Uh#jlubah)jDubaubah)jKubj>)rs}rt(h"Uh+}ru(h-]h.]h/]h0]h2]uh#j_h]rvhR)rw}rx(h"X ``"1.2"``ryh#jsh$jh)hrh+}rz(h-]h.]h/]h0]h2]uh4K h]r{j:)r|}r}(h"jyh+}r~(h-]h.]h/]h0]h2]uh#jwh]rh>X"1.2"rr}r(h"Uh#j|ubah)jDubaubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#j[h]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X``(1, 2, 3, "final", 0)``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X(1, 2, 3, "final", 0)rr}r(h"Uh#jubah)jDubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X ``"1.2.3"``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X"1.2.3"rr}r(h"Uh#jubah)jDubaubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#j[h]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X``(1, 3, 0, "alpha", 1)``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X(1, 3, 0, "alpha", 1)rr}r(h"Uh#jubah)jDubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X ``"1.3a1"``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X"1.3a1"rr}r(h"Uh#jubah)jDubaubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#j[h]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X``(1, 3, 0, "beta", 1)``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X(1, 3, 0, "beta", 1)rr}r(h"Uh#jubah)jDubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X ``"1.3b1"``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X"1.3b1"rr}r(h"Uh#jubah)jDubaubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#j[h]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X``(1, 3, 0, "candidate", 1)``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r}r(h"jh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X(1, 3, 0, "candidate", 1)rr}r(h"Uh#jubah)jDubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X ``"1.3c1"``r h#jh$jh)hrh+}r (h-]h.]h/]h0]h2]uh4Kh]r j:)r }r (h"j h+}r(h-]h.]h/]h0]h2]uh#jh]rh>X"1.3c1"rr}r(h"Uh#j ubah)jDubaubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#j[h]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X``(1, 3, 0, "dev", 0)``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4Kh]rj:)r }r!(h"jh+}r"(h-]h.]h/]h0]h2]uh#jh]r#h>X(1, 3, 0, "dev", 0)r$r%}r&(h"Uh#j ubah)jDubaubah)jKubj>)r'}r((h"Uh+}r)(h-]h.]h/]h0]h2]uh#jh]r*hR)r+}r,(h"X ``"1.3.dev"``r-h#j'h$jh)hrh+}r.(h-]h.]h/]h0]h2]uh4Kh]r/j:)r0}r1(h"j-h+}r2(h-]h.]h/]h0]h2]uh#j+h]r3h>X "1.3.dev"r4r5}r6(h"Uh#j0ubah)jDubaubah)jKubeh)jXubeh)Utbodyr7ubeh)Utgroupr8ubaubhR)r9}r:(h"XNow when release level is set to ``"dev"`` then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: ``"1.3.dev54"`` which indicates that the tree was at revision 54 at that time.h#jh$jh)hrh+}r;(h-]h.]h/]h0]h2]uh4Kh5hh]r<(h>X!Now when release level is set to r=r>}r?(h"X!Now when release level is set to h#j9ubj:)r@}rA(h"X ``"dev"``h+}rB(h-]h.]h/]h0]h2]uh#j9h]rCh>X"dev"rDrE}rF(h"Uh#j@ubah)jDubh>XH then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: rGrH}rI(h"XH then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: h#j9ubj:)rJ}rK(h"X``"1.3.dev54"``h+}rL(h-]h.]h/]h0]h2]uh#j9h]rMh>X "1.3.dev54"rNrO}rP(h"Uh#jJubah)jDubh>X? which indicates that the tree was at revision 54 at that time.rQrR}rS(h"X? which indicates that the tree was at revision 54 at that time.h#j9ubeubhR)rT}rU(h"XPThe following table describes what gets appended by each version control system.rVh#jh$jh)hrh+}rW(h-]h.]h/]h0]h2]uh4K"h5hh]rXh>XPThe following table describes what gets appended by each version control system.rYrZ}r[(h"jVh#jTubaubj!)r\}r](h"Uh#jh$jh)j$h+}r^(h-]h.]h/]h0]h2]uh4Nh5hh]r_j')r`}ra(h"Uh+}rb(h0]h/]h-]h.]h2]UcolsKuh#j\h]rc(j,)rd}re(h"Uh+}rf(h0]h/]h-]h.]h2]UcolwidthK uh#j`h]h)j0ubj,)rg}rh(h"Uh+}ri(h0]h/]h-]h.]h2]UcolwidthK0uh#j`h]h)j0ubj4)rj}rk(h"Uh+}rl(h-]h.]h/]h0]h2]uh#j`h]rmj9)rn}ro(h"Uh+}rp(h-]h.]h/]h0]h2]uh#jjh]rq(j>)rr}rs(h"Uh+}rt(h-]h.]h/]h0]h2]uh#jnh]ruhR)rv}rw(h"XVCSrxh#jrh$jh)hrh+}ry(h-]h.]h/]h0]h2]uh4K&h]rzh>XVCSr{r|}r}(h"jxh#jvubaubah)jKubj>)r~}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jnh]rhR)r}r(h"XFormatted version suffixrh#j~h$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K&h]rh>XFormatted version suffixrr}r(h"jh#jubaubah)jKubeh)jXubah)jYubjZ)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#j`h]r(j9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"XBazaarrh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K(h]rh>XBazaarrr}r(h"jh#jubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X%Revision number (revno), e.g. ``54``h#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K(h]r(h>XRevision number (revno), e.g. rr}r(h"XRevision number (revno), e.g. h#jubj:)r}r(h"X``54``h+}r(h-]h.]h/]h0]h2]uh#jh]rh>X54rr}r(h"Uh#jubah)jDubeubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"XGitrh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K*h]rh>XGitrr}r(h"jh#jubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X8Short commit ID of the current branch e.g. ``"763fbe3"``h#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K*h]r(h>X+Short commit ID of the current branch e.g. rr}r(h"X+Short commit ID of the current branch e.g. h#jubj:)r}r(h"X ``"763fbe3"``h+}r(h-]h.]h/]h0]h2]uh#jh]rh>X "763fbe3"rr}r(h"Uh#jubah)jDubeubah)jKubeh)jXubj9)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]r(j>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X Mercurialrh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K-h]rh>X Mercurialrr}r(h"jh#jubaubah)jKubj>)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rhR)r}r(h"X Tip revision number, e.g. ``54``rh#jh$jh)hrh+}r(h-]h.]h/]h0]h2]uh4K-h]r(h>XTip revision number, e.g. rr}r(h"XTip revision number, e.g. h#jubj:)r}r(h"X``54``h+}r(h-]h.]h/]h0]h2]uh#jh]rh>X54rr}r(h"Uh#jubah)jDubeubah)jKubeh)jXubeh)j7ubeh)j8ubaubeubeubh)r}r(h"XThis logic is implemented in :meth:`versiontools.Version.__str__()` and can be overridden by sub-classes. You can use project-specific logic if required. To do that replace __version__ with an instance of your sub-class.h#jh$h'h)hh+}r(h-]h.]h/]h0]h2]uh4Nh5hh]rhR)r}r(h"XThis logic is implemented in :meth:`versiontools.Version.__str__()` and can be overridden by sub-classes. You can use project-specific logic if required. To do that replace __version__ with an instance of your sub-class.h#jh$h'h)hrh+}r(h-]h.]h/]h0]h2]uh4K3h]r(h>XThis logic is implemented in rr}r(h"XThis logic is implemented in h#jubhZ)r}r(h"X&:meth:`versiontools.Version.__str__()`rh#jh$h'h)h^h+}r(UreftypeXmethh`haXversiontools.Version.__str__U refdomainXpyrh0]h/]U refexplicith-]h.]h2]hchdj7Nj8Nuh4K3h]rj:)r}r(h"jh+}r(h-]h.]r (hkjXpy-methr eh/]h0]h2]uh#jh]r h>Xversiontools.Version.__str__()r r }r(h"Uh#jubah)jDubaubh>X and can be overridden by sub-classes. You can use project-specific logic if required. To do that replace __version__ with an instance of your sub-class.rr}r(h"X and can be overridden by sub-classes. You can use project-specific logic if required. To do that replace __version__ with an instance of your sub-class.h#jubeubaubeubh)r}r(h"Uh#hh$h'h)h*h+}r(h-]h.]h/]h0]rhah2]rh auh4K9h5hh]r(h7)r}r(h"XIndices and tablesrh#jh$h'h)h;h+}r(h-]h.]h/]h0]h2]uh4K9h5hh]rh>XIndices and tablesrr}r(h"jh#jubaubcdocutils.nodes compound r )r!}r"(h"Uh#jh$h'h)Ucompoundr#h+}r$(h-]h.]r%Utoctree-wrapperr&ah/]h0]h2]uh4Nh5hh]r'csphinx.addnodes toctree r()r)}r*(h"Uh#j!h$h'h)Utoctreer+h+}r,(Unumberedr-Kh#hdU titlesonlyr.Uglobr/h0]h/]h-]h.]h2]jL]r0(NXusager1r2NXvcs-integrationr3r4NX referencer5r6NXchangesr7r8eUhiddenr9U includefilesr:]r;(j1j3j5j7eUmaxdepthr<Kuh4K;h]ubaubj)r=}r>(h"Uh#jh$h'h)jh+}r?(jX*h0]h/]h-]h.]h2]uh4KCh5hh]r@(j)rA}rB(h"X:ref:`genindex`rCh#j=h$h'h)j h+}rD(h-]h.]h/]h0]h2]uh4Nh5hh]rEhR)rF}rG(h"jCh#jAh$h'h)hrh+}rH(h-]h.]h/]h0]h2]uh4KCh]rIhZ)rJ}rK(h"jCh#jFh$h'h)h^h+}rL(UreftypeXrefh`haXgenindexU refdomainXstdrMh0]h/]U refexplicith-]h.]h2]hchduh4KCh]rNhf)rO}rP(h"jCh+}rQ(h-]h.]rR(hkjMXstd-refrSeh/]h0]h2]uh#jJh]rTh>XgenindexrUrV}rW(h"Uh#jOubah)hqubaubaubaubj)rX}rY(h"X:ref:`modindex`rZh#j=h$h'h)j h+}r[(h-]h.]h/]h0]h2]uh4Nh5hh]r\hR)r]}r^(h"jZh#jXh$h'h)hrh+}r_(h-]h.]h/]h0]h2]uh4KDh]r`hZ)ra}rb(h"jZh#j]h$h'h)h^h+}rc(UreftypeXrefh`haXmodindexU refdomainXstdrdh0]h/]U refexplicith-]h.]h2]hchduh4KDh]rehf)rf}rg(h"jZh+}rh(h-]h.]ri(hkjdXstd-refrjeh/]h0]h2]uh#jah]rkh>Xmodindexrlrm}rn(h"Uh#jfubah)hqubaubaubaubj)ro}rp(h"X:ref:`search` h#j=h$h'h)j h+}rq(h-]h.]h/]h0]h2]uh4Nh5hh]rrhR)rs}rt(h"X :ref:`search`ruh#joh$h'h)hrh+}rv(h-]h.]h/]h0]h2]uh4KEh]rwhZ)rx}ry(h"juh#jsh$h'h)h^h+}rz(UreftypeXrefh`haXsearchU refdomainXstdr{h0]h/]U refexplicith-]h.]h2]hchduh4KEh]r|hf)r}}r~(h"juh+}r(h-]h.]r(hkj{Xstd-refreh/]h0]h2]uh#jxh]rh>Xsearchrr}r(h"Uh#j}ubah)hqubaubaubaubeubeubeh"UU transformerrNU footnote_refsr}rUrefnamesr}rUsymbol_footnotesr]rUautofootnote_refsr]rUsymbol_footnote_refsr]rU citationsr]rh5hU current_linerNUtransform_messagesr]rcdocutils.nodes system_message r)r}r(h"Uh+}r(h-]UlevelKh0]h/]Usourceh'h.]h2]UlineKUtypeUINFOruh]rhR)r}r(h"Uh+}r(h-]h.]h/]h0]h2]uh#jh]rh>X-Hyperlink target "index-0" is not referenced.rr}r(h"Uh#jubah)hrubah)Usystem_messagerubaUreporterrNUid_startrKU autofootnotesr]rU citation_refsr}rUindirect_targetsr]rUsettingsr(cdocutils.frontend Values ror}r(Ufootnote_backlinksrKUrecord_dependenciesrNU rfc_base_urlrUhttp://tools.ietf.org/html/rU tracebackrUpep_referencesrNUstrip_commentsrNU toc_backlinksrjKU language_coderUenrU datestamprNU report_levelrKU _destinationrNU halt_levelrKU strip_classesrNh;NUerror_encoding_error_handlerrUbackslashreplacerUdebugrNUembed_stylesheetrUoutput_encoding_error_handlerrUstrictrU sectnum_xformrKUdump_transformsrNU docinfo_xformrKUwarning_streamrNUpep_file_url_templaterUpep-%04drUexit_status_levelrKUconfigrNUstrict_visitorrNUcloak_email_addressesrUtrim_footnote_reference_spacerUenvrNUdump_pseudo_xmlrNUexpose_internalsrNUsectsubtitle_xformrU source_linkrNUrfc_referencesrNUoutput_encodingrUutf-8rU source_urlrNUinput_encodingrU utf-8-sigrU_disable_configrNU id_prefixrUU tab_widthrKUerror_encodingrUUTF-8rU_sourcerUB/var/build/user_builds/versiontools/checkouts/latest/doc/index.rstrUgettext_compactrU generatorrNUdump_internalsrNU smart_quotesrU pep_base_urlrUhttp://www.python.org/dev/peps/rUsyntax_highlightrUlongrUinput_encoding_error_handlerrjUauto_id_prefixrUidrUdoctitle_xformrUstrip_elements_with_classesrNU _config_filesr]Ufile_insertion_enabledrKU raw_enabledrKU dump_settingsrNubUsymbol_footnote_startrKUidsr}r(hh hjhhhhhhjOjRhjhhuUsubstitution_namesr}rh)h5h+}r(h-]h0]h/]Usourceh'h.]h2]uU footnotesr]rUrefidsr}rub.PKi=#DEB8ɝɝ/versiontools-latest/.doctrees/reference.doctreecdocutils.nodes document q)q}q(U nametypesq}q(Xversiontools.Version.majorqXcode_referenceqXcode referenceqNXWversiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata.get_versionq X%versiontools.setuptools_hooks.versionq Xversiontools.Version.vcsq Xgitq X8versiontools.bzr_support.BzrIntegration.from_source_treeq Xversiontools.Version.microqX+versiontools.hg_support.HgIntegration.revnoqX-versiontools.bzr_support.BzrIntegration.revnoqXversiontools.Version.__new__qX1versiontools.hg_support.HgIntegration.branch_nickqX!versiontools.Version.releaselevelqXKversiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadataqX'versiontools.bzr_support.BzrIntegrationqX%versiontools.hg_support.HgIntegrationqX6versiontools.hg_support.HgIntegration.from_source_treeqX8versiontools.git_support.GitIntegration.commit_id_abbrevqX versiontoolsqNX8versiontools.git_support.GitIntegration.from_source_treeqXversiontools.VersionqXversiontools.Version.serialqXversiontools.bzr_supportqNX-versiontools.git_support.GitIntegration.revnoqXversiontools.format_versionqXversiontools.Version.from_tupleq Xversiontools.Version.minorq!Xhgq"Xversiontools.Version.__str__q#X1versiontools.git_support.GitIntegration.commit_idq$Xbzrq%X3versiontools.bzr_support.BzrIntegration.branch_nickq&X gitpythonq'X mercurialq(X(versiontools.Version.from_tuple_and_hintq)X'versiontools.git_support.GitIntegrationq*Xversiontools.hg_supportq+NX3versiontools.git_support.GitIntegration.branch_nickq,Xversiontools.setuptools_hooksq-NXversiontools.git_supportq.NX$versiontools.Version.from_expressionq/X!versiontools.versiontools_supportq0NuUsubstitution_defsq1}q2Uparse_messagesq3]q4Ucurrent_sourceq5NU decorationq6NUautofootnote_startq7KUnameidsq8}q9(hhhUcode-referenceq:hUid1q;h h h h h h h Ugitqhhhhh h h!h!h"Uhgq?h#h#h$h$h%Ubzrq@h&h&h'U gitpythonqAh(U mercurialqBh)h)h*h*h+Uversiontools-hg-supportqCh,h,h-Uversiontools-setuptools-hooksqDh.Uversiontools-git-supportqEh/h/h0U!versiontools-versiontools-supportqFuUchildrenqG]qH(cdocutils.nodes target qI)qJ}qK(U rawsourceqLX.. _code_reference:UparentqMhUsourceqNcdocutils.nodes reprunicode qOXF/var/build/user_builds/versiontools/checkouts/latest/doc/reference.rstqPqQ}qRbUtagnameqSUtargetqTU attributesqU}qV(UidsqW]UbackrefsqX]UdupnamesqY]UclassesqZ]Unamesq[]Urefidq\h:uUlineq]KUdocumentq^hhG]ubcdocutils.nodes section q_)q`}qa(hLUhMhhNhQUexpect_referenced_by_nameqb}qchhJshSUsectionqdhU}qe(hY]hZ]hX]hW]qf(Xmodule-versiontoolsqgh;h:eh[]qh(hheuh]Kh^hUexpect_referenced_by_idqi}qjh:hJshG]qk(cdocutils.nodes title ql)qm}qn(hLXCode referenceqohMh`hNhQhSUtitleqphU}qq(hY]hZ]hX]hW]h[]uh]Kh^hhG]qrcdocutils.nodes Text qsXCode referenceqtqu}qv(hLhohMhmubaubcsphinx.addnodes index qw)qx}qy(hLUhMh`hNU qzhSUindexq{hU}q|(hW]hX]hY]hZ]h[]Uentries]q}(Usingleq~Xversiontools (module)Xmodule-versiontoolsUtqauh]Kh^hhG]ubh_)q}q(hLUhMh`hNX":docstring of versiontoolsqhShdhU}q(hY]hZ]hX]hW]qh=ah[]qhauh]Kh^hhG]q(hl)q}q(hLX versiontoolsqhMhhNhhShphU}q(hY]hZ]hX]hW]h[]uh]Kh^hhG]qhsX versiontoolsqq}q(hLhhMhubaubcdocutils.nodes paragraph q)q}q(hLX:Define *single* and *useful* ``__version__`` of a project.hMhhNhhSU paragraphqhU}q(hY]hZ]hX]hW]h[]uh]Kh^hhG]q(hsXDefine qq}q(hLXDefine hMhubcdocutils.nodes emphasis q)q}q(hLX*single*hU}q(hY]hZ]hX]hW]h[]uhMhhG]qhsXsingleqq}q(hLUhMhubahSUemphasisqubhsX and qq}q(hLX and hMhubh)q}q(hLX*useful*hU}q(hY]hZ]hX]hW]h[]uhMhhG]qhsXusefulqq}q(hLUhMhubahShubhsX q}q(hLX hMhubcdocutils.nodes literal q)q}q(hLX``__version__``hU}q(hY]hZ]hX]hW]h[]uhMhhG]qhsX __version__qq}q(hLUhMhubahSUliteralqubhsX of a project.qq}q(hLX of a project.hMhubeubcdocutils.nodes comment q)q}q(hLX4note: Since version 1.1 we should conform to PEP 386hMhhNhhSUcommentqhU}q(U xml:spaceqUpreserveqhW]hX]hY]hZ]h[]uh]Kh^hhG]qhsX4note: Since version 1.1 we should conform to PEP 386qq}q(hLUhMhubaubeubhw)q}q(hLUhMh`hNNhSh{hU}q(hW]hX]hY]hZ]h[]Uentries]q(h~XVersion (class in versiontools)hUtqauh]Nh^hhG]ubcsphinx.addnodes desc q)q}q(hLUhMh`hNNhSUdescqhU}q(UnoindexqΉUdomainqXpyhW]hX]hY]hZ]h[]UobjtypeqXclassqUdesctypeqhuh]Nh^hhG]q(csphinx.addnodes desc_signature q)q}q(hLXVersionqhMhhNU qhSUdesc_signatureqhU}q(hW]qhaUmoduleqhOX versiontoolsq݅q}qbhX]hY]hZ]h[]qhaUfullnameqhUclassqUUfirstquh]Nh^hhG]q(csphinx.addnodes desc_annotation q)q}q(hLXclass hMhhNhhSUdesc_annotationqhU}q(hY]hZ]hX]hW]h[]uh]Nh^hhG]qhsXclass q녁q}q(hLUhMhubaubcsphinx.addnodes desc_addname q)q}q(hLX versiontools.hMhhNhhSU desc_addnameqhU}q(hY]hZ]hX]hW]h[]uh]Nh^hhG]qhsX versiontools.qq}q(hLUhMhubaubcsphinx.addnodes desc_name q)q}q(hLhhMhhNhhSU desc_nameqhU}q(hY]hZ]hX]hW]h[]uh]Nh^hhG]qhsXVersionqq}q(hLUhMhubaubeubcsphinx.addnodes desc_content r)r}r(hLUhMhhNhhSU desc_contentrhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(h)r}r(hLXSmart version class.rhMjhNX*:docstring of versiontools.Versionr hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXSmart version class.r r }r(hLjhMjubaubh)r}r(hLXjVersion class is a tuple of five elements and has the same logical components as :data:`sys.version_info`.hMjhNj hShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r(hsXQVersion class is a tuple of five elements and has the same logical components as rr}r(hLXQVersion class is a tuple of five elements and has the same logical components as hMjubcsphinx.addnodes pending_xref r)r}r(hLX:data:`sys.version_info`rhMjhNhQhSU pending_xrefrhU}r(UreftypeXdataUrefwarnrU reftargetrXsys.version_infoU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]UrefdocrU referencer Upy:classr!hU py:moduler"X versiontoolsr#uh]KhG]r$h)r%}r&(hLjhU}r'(hY]hZ]r((Uxrefr)jXpy-datar*ehX]hW]h[]uhMjhG]r+hsXsys.version_infor,r-}r.(hLUhMj%ubahShubaubhsX.r/}r0(hLX.hMjubeubh)r1}r2(hLXIn addition to the tuple elements there is a special :attr:`vcs` attribute that has all of the data exported by the version control system.hMjhNj hShhU}r3(hY]hZ]hX]hW]h[]uh]Kh^hhG]r4(hsX5In addition to the tuple elements there is a special r5r6}r7(hLX5In addition to the tuple elements there is a special hMj1ubj)r8}r9(hLX :attr:`vcs`r:hMj1hNhQhSjhU}r;(UreftypeXattrjjXvcsU refdomainXpyr<hW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]K hG]r=h)r>}r?(hLj:hU}r@(hY]hZ]rA(j)j<Xpy-attrrBehX]hW]h[]uhMj8hG]rChsXvcsrDrE}rF(hLUhMj>ubahShubaubhsXK attribute that has all of the data exported by the version control system.rGrH}rI(hLXK attribute that has all of the data exported by the version control system.hMj1ubeubhw)rJ}rK(hLUhMjhNNhSh{hU}rL(hW]hX]hY]hZ]h[]Uentries]rM(h~X.__new__() (versiontools.Version static method)hUtrNauh]Nh^hhG]ubh)rO}rP(hLUhMjhNNhShhU}rQ(hΉhXpyrRhW]hX]hY]hZ]h[]hX staticmethodrShjSuh]Nh^hhG]rT(h)rU}rV(hLXFVersion.__new__(major, minor, micro=0, releaselevel='final', serial=0)hMjOhNhhShhU}rW(hW]rXhahhOX versiontoolsrYrZ}r[bhX]hY]hZ]h[]r\hahXVersion.__new__hhhuh]Nh^hhG]r](h)r^}r_(hLUstatic r`hMjUhNhhShhU}ra(hY]hZ]hX]hW]h[]uh]Nh^hhG]rbhsXstatic rcrd}re(hLUhMj^ubaubh)rf}rg(hLX__new__hMjUhNhhShhU}rh(hY]hZ]hX]hW]h[]uh]Nh^hhG]rihsX__new__rjrk}rl(hLUhMjfubaubcsphinx.addnodes desc_parameterlist rm)rn}ro(hLUhMjUhNhhSUdesc_parameterlistrphU}rq(hY]hZ]hX]hW]h[]uh]Nh^hhG]rr(csphinx.addnodes desc_parameter rs)rt}ru(hLXmajorhU}rv(hY]hZ]hX]hW]h[]uhMjnhG]rwhsXmajorrxry}rz(hLUhMjtubahSUdesc_parameterr{ubjs)r|}r}(hLXminorhU}r~(hY]hZ]hX]hW]h[]uhMjnhG]rhsXminorrr}r(hLUhMj|ubahSj{ubjs)r}r(hLXmicro=0hU}r(hY]hZ]hX]hW]h[]uhMjnhG]rhsXmicro=0rr}r(hLUhMjubahSj{ubjs)r}r(hLXreleaselevel='final'hU}r(hY]hZ]hX]hW]h[]uhMjnhG]rhsXreleaselevel='final'rr}r(hLUhMjubahSj{ubjs)r}r(hLXserial=0hU}r(hY]hZ]hX]hW]h[]uhMjnhG]rhsXserial=0rr}r(hLUhMjubahSj{ubeubeubj)r}r(hLUhMjOhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(h)r}r(hLXConstruct a new version tuple.rhMjhNX2:docstring of versiontools.Version.__new__rhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXConstruct a new version tuple.rr}r(hLjhMjubaubh)r}r(hLXThere is some extra logic when initializing tuple elements. All variables except for releaselevel are silently converted to integers That is::hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXThere is some extra logic when initializing tuple elements. All variables except for releaselevel are silently converted to integers That is:rr}r(hLXThere is some extra logic when initializing tuple elements. All variables except for releaselevel are silently converted to integers That is:hMjubaubcdocutils.nodes literal_block r)r}r(hLX7>>> Version("1.2.3.dev".split(".")) (1, 2, 3, "dev", 0)hMjhNjhSU literal_blockrhU}r(hhhW]hX]hY]hZ]h[]uh]Kh^hhG]rhsX7>>> Version("1.2.3.dev".split(".")) (1, 2, 3, "dev", 0)rr}r(hLUhMjubaubcdocutils.nodes field_list r)r}r(hLUhMjhNNhSU field_listrhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(cdocutils.nodes field r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(cdocutils.nodes field_name r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX Parametersrr}r(hLUhMjubahSU field_namerubcdocutils.nodes field_body r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rcdocutils.nodes bullet_list r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(cdocutils.nodes list_item r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(cdocutils.nodes strong r)r}r(hLXmajorhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXmajorrr}r(hLUhMjubahSUstrongrubhsX (rr}r(hLUhMjubj)r}r(hLX :class:`int`rhMjhNNhSjhU}r(UreftypeXclassjjXintU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-classrehX]hW]h[]uhMjhG]rhsXintrr}r(hLUhMjubahShubaubhsX or rr}r(hLX or hMjubj)r}r(hLX :class:`str`rhMjhNNhSjhU}r(UreftypeXclassjjXstrU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-classrehX]hW]h[]uhMjhG]rhsXstrrr}r(hLUhMjubahShubaubhsX)r }r (hLUhMjubhsX -- r r }r (hLUhMjubhsXMajor version numberrr}r(hLXMajor version numberrhMjubehShubahSU list_itemrubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(j)r}r(hLXminorhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXminorrr }r!(hLUhMjubahSjubhsX (r"r#}r$(hLUhMjubj)r%}r&(hLX :class:`int`r'hMjhNNhSjhU}r((UreftypeXclassjjXintU refdomainXpyr)hW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]r*h)r+}r,(hLj'hU}r-(hY]hZ]r.(j)j)Xpy-classr/ehX]hW]h[]uhMj%hG]r0hsXintr1r2}r3(hLUhMj+ubahShubaubhsX or r4r5}r6(hLX or hMjubj)r7}r8(hLX :class:`str`r9hMjhNNhSjhU}r:(UreftypeXclassjjXstrU refdomainXpyr;hW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]r<h)r=}r>(hLj9hU}r?(hY]hZ]r@(j)j;Xpy-classrAehX]hW]h[]uhMj7hG]rBhsXstrrCrD}rE(hLUhMj=ubahShubaubhsX)rF}rG(hLUhMjubhsX -- rHrI}rJ(hLUhMjubhsXMinor version numberrKrL}rM(hLXMinor version numberrNhMjubehShubahSjubj)rO}rP(hLUhU}rQ(hY]hZ]hX]hW]h[]uhMjhG]rRh)rS}rT(hLUhU}rU(hY]hZ]hX]hW]h[]uhMjOhG]rV(j)rW}rX(hLXmicrohU}rY(hY]hZ]hX]hW]h[]uhMjShG]rZhsXmicror[r\}r](hLUhMjWubahSjubhsX (r^r_}r`(hLUhMjSubj)ra}rb(hLX :class:`int`rchMjShNNhSjhU}rd(UreftypeXclassjjXintU refdomainXpyrehW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rfh)rg}rh(hLjchU}ri(hY]hZ]rj(j)jeXpy-classrkehX]hW]h[]uhMjahG]rlhsXintrmrn}ro(hLUhMjgubahShubaubhsX or rprq}rr(hLX or hMjSubj)rs}rt(hLX :class:`str`ruhMjShNNhSjhU}rv(UreftypeXclassjjXstrU refdomainXpyrwhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rxh)ry}rz(hLjuhU}r{(hY]hZ]r|(j)jwXpy-classr}ehX]hW]h[]uhMjshG]r~hsXstrrr}r(hLUhMjyubahShubaubhsX)r}r(hLUhMjSubhsX -- rr}r(hLUhMjSubhsX"Micro version number, defaults to rr}r(hLX"Micro version number, defaults to hMjSubh)r}r(hLX``0``hU}r(hY]hZ]hX]hW]h[]uhMjShG]rhsX0r}r(hLUhMjubahShubhsX.r}r(hLX.hMjSubehShubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(j)r}r(hLX releaselevelhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX releaselevelrr}r(hLUhMjubahSjubhsX (rr}r(hLUhMjubj)r}r(hLX :class:`str`rhMjhNNhSjhU}r(UreftypeXclassjjXstrU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-classrehX]hW]h[]uhMjhG]rhsXstrrr}r(hLUhMjubahShubaubhsX)r}r(hLUhMjubhsX -- rr}r(hLUhMjubh)r}r(hLXRelease level name.rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rhsXRelease level name.rr}r(hLjhMjubaubh)r}r(hLXaThere is a constraint on allowed values of releaselevel. Only the following values are permitted:rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rhsXaThere is a constraint on allowed values of releaselevel. Only the following values are permitted:rr}r(hLjhMjubaubj)r}r(hLUhU}r(UbulletrX*hW]hX]hY]hZ]h[]uhMjhG]r(j)r}r(hLX'dev'rhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLjhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K"hG]rhsX'dev'rr}r(hLjhMjubaubahSjubj)r}r(hLX'alpha'rhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLjhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K#hG]rhsX'alpha'rr}r(hLjhMjubaubahSjubj)r}r(hLX'beta'rhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLjhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K$hG]rhsX'beta'rr}r(hLjhMjubaubahSjubj)r}r(hLX 'candidate'rhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLjhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K%hG]rhsX 'candidate'rr}r(hLjhMjubaubahSjubj)r}r(hLX'final' hU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX'final'rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K&hG]rhsX'final'rr}r(hLjhMjubaubahSjubehSU bullet_listr ubehShubahSjubj)r }r (hLUhU}r (hY]hZ]hX]hW]h[]uhMjhG]r h)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMj hG]r(j)r}r(hLXserialhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXserialrr}r(hLUhMjubahSjubhsX -- rr}r(hLUhMjubhsXqSerial number, usually zero, only used for alpha, beta and candidate versions where it must be greater than zero.rr}r(hLXqSerial number, usually zero, only used for alpha, beta and candidate versions where it must be greater than zero.rhMjubehShubahSjubehSj ubahSU field_bodyr ubehSUfieldr!ubj)r"}r#(hLUhU}r$(hY]hZ]hX]hW]h[]uhMjhG]r%(j)r&}r'(hLUhU}r((hY]hZ]hX]hW]h[]uhMj"hG]r)(hsXRaisesr*r+}r,(hLUhMj&ubhsX r-}r.(hLUhMj&ubj)r/}r0(hLUhU}r1(UreftypeUexcr2U reftargetX ValueErrorr3U refdomainjRhW]hX]U refexplicithY]hZ]h[]uhMj&hG]r4hsX ValueErrorr5r6}r7(hLj3hMj/ubahSjubehSjubj)r8}r9(hLUhU}r:(hY]hZ]hX]hW]h[]uhMj"hG]r;h)r<}r=(hLUhU}r>(hY]hZ]hX]hW]h[]uhMj8hG]r?hsXzIf releaselevel is incorrect, a version component is negative or serial is 0 and releaselevel is alpha, beta or candidate.r@rA}rB(hLXzIf releaselevel is incorrect, a version component is negative or serial is 0 and releaselevel is alpha, beta or candidate.rChMj<ubahShubahSj ubehSj!ubeubeubeubhw)rD}rE(hLUhMjhNX0:docstring of versiontools.Version.majorrFhSh{hU}rG(hW]hX]hY]hZ]h[]Uentries]rH(h~X&major (versiontools.Version attribute)hUtrIauh]Nh^hhG]ubh)rJ}rK(hLUhMjhNjFhShhU}rL(hΉhXpyhW]hX]hY]hZ]h[]hX attributerMhjMuh]Nh^hhG]rN(h)rO}rP(hLX Version.majorhMjJhNhhShhU}rQ(hW]rRhahhOX versiontoolsrSrT}rUbhX]hY]hZ]h[]rVhahX Version.majorhhhuh]Nh^hhG]rWh)rX}rY(hLXmajorhMjOhNhhShhU}rZ(hY]hZ]hX]hW]h[]uh]Nh^hhG]r[hsXmajorr\r]}r^(hLUhMjXubaubaubj)r_}r`(hLUhMjJhNhhSjhU}ra(hY]hZ]hX]hW]h[]uh]Nh^hhG]rbh)rc}rd(hLXMajor version numberrehMj_hNjFhShhU}rf(hY]hZ]hX]hW]h[]uh]Kh^hhG]rghsXMajor version numberrhri}rj(hLjehMjcubaubaubeubhw)rk}rl(hLUhMjhNX0:docstring of versiontools.Version.minorrmhSh{hU}rn(hW]hX]hY]hZ]h[]Uentries]ro(h~X&minor (versiontools.Version attribute)h!Utrpauh]Nh^hhG]ubh)rq}rr(hLUhMjhNjmhShhU}rs(hΉhXpyhW]hX]hY]hZ]h[]hX attributerthjtuh]Nh^hhG]ru(h)rv}rw(hLX Version.minorhMjqhNhhShhU}rx(hW]ryh!ahhOX versiontoolsrzr{}r|bhX]hY]hZ]h[]r}h!ahX Version.minorhhhuh]Nh^hhG]r~h)r}r(hLXminorhMjvhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsXminorrr}r(hLUhMjubaubaubj)r}r(hLUhMjqhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rh)r}r(hLXMinor version numberrhMjhNjmhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXMinor version numberrr}r(hLjhMjubaubaubeubhw)r}r(hLUhMjhNX0:docstring of versiontools.Version.microrhSh{hU}r(hW]hX]hY]hZ]h[]Uentries]r(h~X&micro (versiontools.Version attribute)hUtrauh]Nh^hhG]ubh)r}r(hLUhMjhNjhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hX attributerhjuh]Nh^hhG]r(h)r}r(hLX Version.microhMjhNhhShhU}r(hW]rhahhOX versiontoolsrr}rbhX]hY]hZ]h[]rhahX Version.microhhhuh]Nh^hhG]rh)r}r(hLXmicrohMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsXmicrorr}r(hLUhMjubaubaubj)r}r(hLUhMjhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rh)r}r(hLXMicro version numberrhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXMicro version numberrr}r(hLjhMjubaubaubeubhw)r}r(hLUhMjhNX7:docstring of versiontools.Version.releaselevelrhSh{hU}r(hW]hX]hY]hZ]h[]Uentries]r(h~X-releaselevel (versiontools.Version attribute)hUtrauh]Nh^hhG]ubh)r}r(hLUhMjhNjhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hX attributerhjuh]Nh^hhG]r(h)r}r(hLXVersion.releaselevelhMjhNhhShhU}r(hW]rhahhOX versiontoolsrr}rbhX]hY]hZ]h[]rhahXVersion.releaselevelhhhuh]Nh^hhG]rh)r}r(hLX releaselevelhMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsX releaselevelrr}r(hLUhMjubaubaubj)r}r(hLUhMjhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rh)r}r(hLXRelease level stringrhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXRelease level stringrr}r(hLjhMjubaubaubeubhw)r}r(hLUhMjhNX1:docstring of versiontools.Version.serialrhSh{hU}r(hW]hX]hY]hZ]h[]Uentries]r(h~X'serial (versiontools.Version attribute)hUtrauh]Nh^hhG]ubh)r}r(hLUhMjhNjhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hX attributerhjuh]Nh^hhG]r(h)r}r(hLXVersion.serialhMjhNhhShhU}r(hW]rhahhOX versiontoolsrr}rbhX]hY]hZ]h[]rhahXVersion.serialhhhuh]Nh^hhG]rh)r}r(hLXserialhMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsXserialrr}r(hLUhMjubaubaubj)r}r(hLUhMjhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rh)r}r(hLX Serial numberrhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsX Serial numberrr}r(hLjhMjubaubaubeubhw)r}r(hLUhMjhNNhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X0from_tuple() (versiontools.Version class method)h Utr auh]Nh^hhG]ubh)r }r (hLUhMjhNNhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hX classmethodrhjuh]Nh^hhG]r(h)r}r(hLX!Version.from_tuple(version_tuple)hMj hNhhShhU}r(hW]rh ahhOX versiontoolsrr}rbhX]hY]hZ]h[]rh ahXVersion.from_tuplerhhhuh]Nh^hhG]r(h)r}r(hLU classmethod rhMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsX classmethod r r!}r"(hLUhMjubaubh)r#}r$(hLX from_tuplehMjhNhhShhU}r%(hY]hZ]hX]hW]h[]uh]Nh^hhG]r&hsX from_tupler'r(}r)(hLUhMj#ubaubjm)r*}r+(hLUhMjhNhhSjphU}r,(hY]hZ]hX]hW]h[]uh]Nh^hhG]r-js)r.}r/(hLX version_tuplehU}r0(hY]hZ]hX]hW]h[]uhMj*hG]r1hsX version_tupler2r3}r4(hLUhMj.ubahSj{ubaubeubj)r5}r6(hLUhMj hNhhSjhU}r7(hY]hZ]hX]hW]h[]uh]Nh^hhG]r8(h)r9}r:(hLX#Create version from 5-element tupler;hMj5hNX5:docstring of versiontools.Version.from_tupler<hShhU}r=(hY]hZ]hX]hW]h[]uh]Kh^hhG]r>hsX#Create version from 5-element tupler?r@}rA(hLj;hMj9ubaubcdocutils.nodes note rB)rC}rD(hLX_This method is identical to the constructor, just spelled in a way that is more obvious to use.hMj5hNj<hSUnoterEhU}rF(hY]hZ]hX]hW]h[]uh]Nh^hhG]rGh)rH}rI(hLX_This method is identical to the constructor, just spelled in a way that is more obvious to use.rJhMjChNj<hShhU}rK(hY]hZ]hX]hW]h[]uh]KhG]rLhsX_This method is identical to the constructor, just spelled in a way that is more obvious to use.rMrN}rO(hLjJhMjHubaubaubcsphinx.addnodes versionmodified rP)rQ}rR(hLUhMj5hNj<hSUversionmodifiedrShU}rT(UversionrUX1.1rVhW]hX]hY]hZ]h[]UtyperWX versionaddedrXuh]Kh^hhG]ubeubeubhw)rY}rZ(hLUhMjhNNhSh{hU}r[(hW]hX]hY]hZ]h[]Uentries]r\(h~X9from_tuple_and_hint() (versiontools.Version class method)h)Utr]auh]Nh^hhG]ubh)r^}r_(hLUhMjhNNhShhU}r`(hΉhXpyhW]hX]hY]hZ]h[]hX classmethodrahjauh]Nh^hhG]rb(h)rc}rd(hLX0Version.from_tuple_and_hint(version_tuple, hint)hMj^hNhhShhU}re(hW]rfh)ahhOX versiontoolsrgrh}ribhX]hY]hZ]h[]rjh)ahXVersion.from_tuple_and_hintrkhhhuh]Nh^hhG]rl(h)rm}rn(hLjhMjchNhhShhU}ro(hY]hZ]hX]hW]h[]uh]Nh^hhG]rphsX classmethod rqrr}rs(hLUhMjmubaubh)rt}ru(hLXfrom_tuple_and_hinthMjchNhhShhU}rv(hY]hZ]hX]hW]h[]uh]Nh^hhG]rwhsXfrom_tuple_and_hintrxry}rz(hLUhMjtubaubjm)r{}r|(hLUhMjchNhhSjphU}r}(hY]hZ]hX]hW]h[]uh]Nh^hhG]r~(js)r}r(hLX version_tuplehU}r(hY]hZ]hX]hW]h[]uhMj{hG]rhsX version_tuplerr}r(hLUhMjubahSj{ubjs)r}r(hLXhinthU}r(hY]hZ]hX]hW]h[]uhMj{hG]rhsXhintrr}r(hLUhMjubahSj{ubeubeubj)r}r(hLUhMj^hNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(h)r}r(hLX<Create version from a 5-element tuple and VCS location hint.rhMjhNX>:docstring of versiontools.Version.from_tuple_and_hintrhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsX<Create version from a 5-element tuple and VCS location hint.rr}r(hLjhMjubaubh)r}r(hLXSimilar to :meth:`~versiontools.Version.from_tuple` but uses the hint object to locate the source tree if needed. A good candidate for hint object is the module that contains the version_tuple. In general anything that works with :meth:`inspect.getsourcefile()` is good.hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r(hsX Similar to rr}r(hLX Similar to hMjubj)r}r(hLX(:meth:`~versiontools.Version.from_tuple`rhMjhNNhSjhU}r(UreftypeXmethjjXversiontools.Version.from_tupleU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-methrehX]hW]h[]uhMjhG]rhsX from_tuple()rr}r(hLUhMjubahShubaubhsX but uses the hint object to locate the source tree if needed. A good candidate for hint object is the module that contains the version_tuple. In general anything that works with rr}r(hLX but uses the hint object to locate the source tree if needed. A good candidate for hint object is the module that contains the version_tuple. In general anything that works with hMjubj)r}r(hLX:meth:`inspect.getsourcefile()`rhMjhNNhSjhU}r(UreftypeXmethjjXinspect.getsourcefileU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-methrehX]hW]h[]uhMjhG]rhsXinspect.getsourcefile()rr}r(hLUhMjubahShubaubhsX is good.rr}r(hLX is good.hMjubeubjP)r}r(hLUhMjhNjhSjShU}r(jUX1.4rhW]hX]hY]hZ]h[]jWX versionaddedruh]Kh^hhG]ubeubeubhw)r}r(hLUhMjhNNhSh{hU}r(hW]hX]hY]hZ]h[]Uentries]r(h~X5from_expression() (versiontools.Version class method)h/Utrauh]Nh^hhG]ubh)r}r(hLUhMjhNNhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hX classmethodrhjuh]Nh^hhG]r(h)r}r(hLX'Version.from_expression(pkg_expression)hMjhNhhShhU}r(hW]rh/ahhOX versiontoolsrr}rbhX]hY]hZ]h[]rh/ahXVersion.from_expressionrhhhuh]Nh^hhG]r(h)r}r(hLjhMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsX classmethod rr}r(hLUhMjubaubh)r}r(hLXfrom_expressionhMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsXfrom_expressionrr}r(hLUhMjubaubjm)r}r(hLUhMjhNhhSjphU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rjs)r}r(hLXpkg_expressionhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXpkg_expressionrr}r(hLUhMjubahSj{ubaubeubj)r}r(hLUhMjhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(h)r}r(hLX+Create a version from a python module name.rhMjhNX::docstring of versiontools.Version.from_expressionrhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsX+Create a version from a python module name.rr}r(hLjhMjubaubh)r}r(hLXThe argument must describe a module to import. The module must declare a variable that holds the actual version. The version cannot be a plain string and instead must be a tuple of five elements as described by the :class:`~versiontools.Version` class.hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r(hsXThe argument must describe a module to import. The module must declare a variable that holds the actual version. The version cannot be a plain string and instead must be a tuple of five elements as described by the rr }r (hLXThe argument must describe a module to import. The module must declare a variable that holds the actual version. The version cannot be a plain string and instead must be a tuple of five elements as described by the hMjubj)r }r (hLX:class:`~versiontools.Version`r hMjhNNhSjhU}r(UreftypeXclassjjXversiontools.VersionU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!hj"j#uh]NhG]rh)r}r(hLj hU}r(hY]hZ]r(j)jXpy-classrehX]hW]h[]uhMj hG]rhsXVersionrr}r(hLUhMjubahShubaubhsX class.rr}r(hLX class.hMjubeubh)r}r(hLXThe variable that holds the version should be called ``__version__``. If it is called something else the actual name has to be specified explicitly in ``pkg_expression`` by appending a colon (``:``) and the name of the variable (for example ``package:version``).hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r (hsX5The variable that holds the version should be called r!r"}r#(hLX5The variable that holds the version should be called hMjubh)r$}r%(hLX``__version__``hU}r&(hY]hZ]hX]hW]h[]uhMjhG]r'hsX __version__r(r)}r*(hLUhMj$ubahShubhsXS. If it is called something else the actual name has to be specified explicitly in r+r,}r-(hLXS. If it is called something else the actual name has to be specified explicitly in hMjubh)r.}r/(hLX``pkg_expression``hU}r0(hY]hZ]hX]hW]h[]uhMjhG]r1hsXpkg_expressionr2r3}r4(hLUhMj.ubahShubhsX by appending a colon (r5r6}r7(hLX by appending a colon (hMjubh)r8}r9(hLX``:``hU}r:(hY]hZ]hX]hW]h[]uhMjhG]r;hsX:r<}r=(hLUhMj8ubahShubhsX,) and the name of the variable (for example r>r?}r@(hLX,) and the name of the variable (for example hMjubh)rA}rB(hLX``package:version``hU}rC(hY]hZ]hX]hW]h[]uhMjhG]rDhsXpackage:versionrErF}rG(hLUhMjAubahShubhsX).rHrI}rJ(hLX).hMjubeubjP)rK}rL(hLUhMjhNjhSjShU}rM(jUX1.9rNhW]hX]hY]hZ]h[]jWX versionaddedrOuh]K h^hhG]ubeubeubhw)rP}rQ(hLUhMjhNNhSh{hU}rR(hW]hX]hY]hZ]h[]Uentries]rS(h~X$vcs (versiontools.Version attribute)h UtrTauh]Nh^hhG]ubh)rU}rV(hLUhMjhNNhShhU}rW(hΉhXpyhW]hX]hY]hZ]h[]hX attributerXhjXuh]Nh^hhG]rY(h)rZ}r[(hLX Version.vcshMjUhNhhShhU}r\(hW]r]h ahhOX versiontoolsr^r_}r`bhX]hY]hZ]h[]rah ahX Version.vcsrbhhhuh]Nh^hhG]rch)rd}re(hLXvcshMjZhNhhShhU}rf(hY]hZ]hX]hW]h[]uh]Nh^hhG]rghsXvcsrhri}rj(hLUhMjdubaubaubj)rk}rl(hLUhMjUhNhhSjhU}rm(hY]hZ]hX]hW]h[]uh]Nh^hhG]rn(h)ro}rp(hLX&Return VCS integration object, if any.rqhMjkhNX.:docstring of versiontools.Version.vcsrrhShhU}rs(hY]hZ]hX]hW]h[]uh]Kh^hhG]rthsX&Return VCS integration object, if any.rurv}rw(hLjqhMjoubaubh)rx}ry(hLXAccessing this attribute for the first time will query VCS lookup (may be slower, will trigger imports of various VCS plugins).rzhMjkhNjrhShhU}r{(hY]hZ]hX]hW]h[]uh]Kh^hhG]r|hsXAccessing this attribute for the first time will query VCS lookup (may be slower, will trigger imports of various VCS plugins).r}r~}r(hLjzhMjxubaubh)r}r(hLXThe returned object, if not None, should have at least the `revno` property. For details see your particular version control integration plugin.hMjkhNjrhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r(hsX;The returned object, if not None, should have at least the rr}r(hLX;The returned object, if not None, should have at least the hMjubcdocutils.nodes title_reference r)r}r(hLX`revno`hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXrevnorr}r(hLUhMjubahSUtitle_referencerubhsXN property. For details see your particular version control integration plugin.rr}r(hLXN property. For details see your particular version control integration plugin.hMjubeubjB)r}r(hLXZThis attribute is **not** an element of the version tuple and thus does not break sorting.hMjkhNjrhSjEhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rh)r}r(hLXZThis attribute is **not** an element of the version tuple and thus does not break sorting.hMjhNjrhShhU}r(hY]hZ]hX]hW]h[]uh]K hG]r(hsXThis attribute is rr}r(hLXThis attribute is hMjubj)r}r(hLX**not**hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXnotrr}r(hLUhMjubahSjubhsXA an element of the version tuple and thus does not break sorting.rr}r(hLXA an element of the version tuple and thus does not break sorting.hMjubeubaubjP)r}r(hLUhMjkhNjrhSjShU}r(jUX1.0.4rhW]hX]hY]hZ]h[]jWX versionaddedruh]Kh^hhG]ubeubeubhw)r}r(hLUhMjhNX2:docstring of versiontools.Version.__str__rhSh{hU}r(hW]hX]hY]hZ]h[]Uentries]r(h~X'__str__() (versiontools.Version method)h#Utrauh]Nh^hhG]ubh)r}r(hLUhMjhNjhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hXmethodrhjuh]Nh^hhG]r(h)r}r(hLXVersion.__str__()hMjhNhhShhU}r(hW]rh#ahhOX versiontoolsrr}rbhX]hY]hZ]h[]rh#ahXVersion.__str__hhhuh]Nh^hhG]r(h)r}r(hLX__str__hMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsX__str__rr}r(hLUhMjubaubjm)r}r(hLUhMjhNhhSjphU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]ubeubj)r}r(hLUhMjhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(h)r}r(hLX4Return a string representation of the version tuple.rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsX4Return a string representation of the version tuple.rr}r(hLjhMjubaubh)r}r(hLXThe string is not a direct concatenation of all version components. Instead it's a more natural 'human friendly' version where components with certain values are left out.rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXThe string is not a direct concatenation of all version components. Instead it's a more natural 'human friendly' version where components with certain values are left out.rr}r(hLjhMjubaubh)r}r(hLXQThe following table shows how a version tuple gets converted to a version string.rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsXQThe following table shows how a version tuple gets converted to a version string.rr}r(hLjhMjubaubcdocutils.nodes table r)r}r(hLUhMjhNjhSUtablerhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rcdocutils.nodes tgroup r)r}r(hLUhU}r(hW]hX]hY]hZ]h[]UcolsKuhMjhG]r(cdocutils.nodes colspec r)r}r(hLUhU}r(hW]hX]hY]hZ]h[]UcolwidthKuhMjhG]hSUcolspecrubj)r}r(hLUhU}r(hW]hX]hY]hZ]h[]UcolwidthKuhMjhG]hSjubcdocutils.nodes thead r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rcdocutils.nodes row r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(cdocutils.nodes entry r)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r }r (hLX __version__r hMjhNjhShhU}r (hY]hZ]hX]hW]h[]uh]K hG]r hsX __version__rr}r(hLj hMj ubaubahSUentryrubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLXFormatter versionrhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K hG]rhsXFormatter versionrr}r(hLjhMjubaubahSjubehSUrowrubahSUtheadrubcdocutils.nodes tbody r )r!}r"(hLUhU}r#(hY]hZ]hX]hW]h[]uhMjhG]r$(j)r%}r&(hLUhU}r'(hY]hZ]hX]hW]h[]uhMj!hG]r((j)r)}r*(hLUhU}r+(hY]hZ]hX]hW]h[]uhMj%hG]r,h)r-}r.(hLX``(1, 2, 0, "final", 0)``r/hMj)hNjhShhU}r0(hY]hZ]hX]hW]h[]uh]K hG]r1h)r2}r3(hLj/hU}r4(hY]hZ]hX]hW]h[]uhMj-hG]r5hsX(1, 2, 0, "final", 0)r6r7}r8(hLUhMj2ubahShubaubahSjubj)r9}r:(hLUhU}r;(hY]hZ]hX]hW]h[]uhMj%hG]r<h)r=}r>(hLX ``"1.2"``r?hMj9hNjhShhU}r@(hY]hZ]hX]hW]h[]uh]K hG]rAh)rB}rC(hLj?hU}rD(hY]hZ]hX]hW]h[]uhMj=hG]rEhsX"1.2"rFrG}rH(hLUhMjBubahShubaubahSjubehSjubj)rI}rJ(hLUhU}rK(hY]hZ]hX]hW]h[]uhMj!hG]rL(j)rM}rN(hLUhU}rO(hY]hZ]hX]hW]h[]uhMjIhG]rPh)rQ}rR(hLX``(1, 2, 3, "final", 0)``rShMjMhNjhShhU}rT(hY]hZ]hX]hW]h[]uh]KhG]rUh)rV}rW(hLjShU}rX(hY]hZ]hX]hW]h[]uhMjQhG]rYhsX(1, 2, 3, "final", 0)rZr[}r\(hLUhMjVubahShubaubahSjubj)r]}r^(hLUhU}r_(hY]hZ]hX]hW]h[]uhMjIhG]r`h)ra}rb(hLX ``"1.2.3"``rchMj]hNjhShhU}rd(hY]hZ]hX]hW]h[]uh]KhG]reh)rf}rg(hLjchU}rh(hY]hZ]hX]hW]h[]uhMjahG]rihsX"1.2.3"rjrk}rl(hLUhMjfubahShubaubahSjubehSjubj)rm}rn(hLUhU}ro(hY]hZ]hX]hW]h[]uhMj!hG]rp(j)rq}rr(hLUhU}rs(hY]hZ]hX]hW]h[]uhMjmhG]rth)ru}rv(hLX``(1, 3, 0, "alpha", 1)``rwhMjqhNjhShhU}rx(hY]hZ]hX]hW]h[]uh]KhG]ryh)rz}r{(hLjwhU}r|(hY]hZ]hX]hW]h[]uhMjuhG]r}hsX(1, 3, 0, "alpha", 1)r~r}r(hLUhMjzubahShubaubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjmhG]rh)r}r(hLX ``"1.3a1"``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX"1.3a1"rr}r(hLUhMjubahShubaubahSjubehSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMj!hG]r(j)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX``(1, 3, 0, "beta", 1)``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX(1, 3, 0, "beta", 1)rr}r(hLUhMjubahShubaubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX ``"1.3b1"``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX"1.3b1"rr}r(hLUhMjubahShubaubahSjubehSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMj!hG]r(j)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX``(1, 3, 0, "candidate", 1)``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX(1, 3, 0, "candidate", 1)rr}r(hLUhMjubahShubaubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX ``"1.3c1"``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX"1.3c1"rr}r(hLUhMjubahShubaubahSjubehSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMj!hG]r(j)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX``(1, 3, 0, "dev", 0)``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX(1, 3, 0, "dev", 0)rr}r(hLUhMjubahShubaubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX ``"1.3.dev"``rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]KhG]rh)r}r(hLjhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX "1.3.dev"rr}r(hLUhMjubahShubaubahSjubehSjubehSUtbodyrubehSUtgrouprubaubh)r}r(hLXNow when release level is set to ``"dev"`` then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: ``"1.3.dev54"`` which indicates that the tree was at revision 54 at that time.hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r(hsX!Now when release level is set to rr}r(hLX!Now when release level is set to hMjubh)r}r(hLX ``"dev"``hU}r(hY]hZ]hX]hW]h[]uhMjhG]r hsX"dev"r r }r (hLUhMjubahShubhsXH then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: r r}r(hLXH then interesting things start to happen. When possible, version control system is queried for revision or changeset identifier. This information gets used to create a more useful version string. The suffix gets appended to the base version string. So for example a full version string, when using Bazaar might look like this: hMjubh)r}r(hLX``"1.3.dev54"``hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX "1.3.dev54"rr}r(hLUhMjubahShubhsX? which indicates that the tree was at revision 54 at that time.rr}r(hLX? which indicates that the tree was at revision 54 at that time.hMjubeubh)r}r(hLXPThe following table describes what gets appended by each version control system.rhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K"h^hhG]rhsXPThe following table describes what gets appended by each version control system.rr }r!(hLjhMjubaubj)r"}r#(hLUhMjhNjhSjhU}r$(hY]hZ]hX]hW]h[]uh]Nh^hhG]r%j)r&}r'(hLUhU}r((hW]hX]hY]hZ]h[]UcolsKuhMj"hG]r)(j)r*}r+(hLUhU}r,(hW]hX]hY]hZ]h[]UcolwidthK uhMj&hG]hSjubj)r-}r.(hLUhU}r/(hW]hX]hY]hZ]h[]UcolwidthK0uhMj&hG]hSjubj)r0}r1(hLUhU}r2(hY]hZ]hX]hW]h[]uhMj&hG]r3j)r4}r5(hLUhU}r6(hY]hZ]hX]hW]h[]uhMj0hG]r7(j)r8}r9(hLUhU}r:(hY]hZ]hX]hW]h[]uhMj4hG]r;h)r<}r=(hLXVCSr>hMj8hNjhShhU}r?(hY]hZ]hX]hW]h[]uh]K&hG]r@hsXVCSrArB}rC(hLj>hMj<ubaubahSjubj)rD}rE(hLUhU}rF(hY]hZ]hX]hW]h[]uhMj4hG]rGh)rH}rI(hLXFormatted version suffixrJhMjDhNjhShhU}rK(hY]hZ]hX]hW]h[]uh]K&hG]rLhsXFormatted version suffixrMrN}rO(hLjJhMjHubaubahSjubehSjubahSjubj )rP}rQ(hLUhU}rR(hY]hZ]hX]hW]h[]uhMj&hG]rS(j)rT}rU(hLUhU}rV(hY]hZ]hX]hW]h[]uhMjPhG]rW(j)rX}rY(hLUhU}rZ(hY]hZ]hX]hW]h[]uhMjThG]r[h)r\}r](hLXBazaarr^hMjXhNjhShhU}r_(hY]hZ]hX]hW]h[]uh]K(hG]r`hsXBazaarrarb}rc(hLj^hMj\ubaubahSjubj)rd}re(hLUhU}rf(hY]hZ]hX]hW]h[]uhMjThG]rgh)rh}ri(hLX%Revision number (revno), e.g. ``54``hMjdhNjhShhU}rj(hY]hZ]hX]hW]h[]uh]K(hG]rk(hsXRevision number (revno), e.g. rlrm}rn(hLXRevision number (revno), e.g. hMjhubh)ro}rp(hLX``54``hU}rq(hY]hZ]hX]hW]h[]uhMjhhG]rrhsX54rsrt}ru(hLUhMjoubahShubeubahSjubehSjubj)rv}rw(hLUhU}rx(hY]hZ]hX]hW]h[]uhMjPhG]ry(j)rz}r{(hLUhU}r|(hY]hZ]hX]hW]h[]uhMjvhG]r}h)r~}r(hLXGitrhMjzhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K*hG]rhsXGitrr}r(hLjhMj~ubaubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjvhG]rh)r}r(hLX8Short commit ID of the current branch e.g. ``"763fbe3"``hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K*hG]r(hsX+Short commit ID of the current branch e.g. rr}r(hLX+Short commit ID of the current branch e.g. hMjubh)r}r(hLX ``"763fbe3"``hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX "763fbe3"rr}r(hLUhMjubahShubeubahSjubehSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjPhG]r(j)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX MercurialrhMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K-hG]rhsX Mercurialrr}r(hLjhMjubaubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rh)r}r(hLX Tip revision number, e.g. ``54``hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]K-hG]r(hsXTip revision number, e.g. rr}r(hLXTip revision number, e.g. hMjubh)r}r(hLX``54``hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX54rr}r(hLUhMjubahShubeubahSjubehSjubehSjubehSjubaubeubeubeubeubhw)r}r(hLUhMh`hNNhSh{hU}r(hW]hX]hY]hZ]h[]Uentries]r(h~X)format_version() (in module versiontools)hUtrauh]Nh^hhG]ubh)r}r(hLUhMh`hNNhShhU}r(hΉhXpyhW]hX]hY]hZ]h[]hXfunctionrhjuh]Nh^hhG]r(h)r}r(hLX"format_version(version, hint=None)hMjhNhhShhU}r(hW]rhahhOX versiontoolsrr}rbhX]hY]hZ]h[]rhahXformat_versionrhUhuh]Nh^hhG]r(h)r}r(hLX versiontools.hMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsX versiontools.rr}r(hLUhMjubaubh)r}r(hLjhMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsXformat_versionrr}r(hLUhMjubaubjm)r}r(hLUhMjhNhhSjphU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(js)r}r(hLXversionhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXversionrr}r(hLUhMjubahSj{ubjs)r}r(hLX hint=NonehU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX hint=Nonerr}r(hLUhMjubahSj{ubeubeubj)r}r(hLUhMjhNhhSjhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]r(h)r}r(hLX.Pretty formatting for 5-element version tuple.rhMjhNX1:docstring of versiontools.format_versionrhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]rhsX.Pretty formatting for 5-element version tuple.rr}r(hLjhMjubaubh)r}r(hLXInstead of using :class:`~versiontools.Version` class directly you may want to use this simplified interface where you simply interpret an arbitrary five-element version tuple as a version to get the pretty and :pep:`386`-compliant version string.hMjhNjhShhU}r(hY]hZ]hX]hW]h[]uh]Kh^hhG]r(hsXInstead of using rr}r(hLXInstead of using hMjubj)r}r(hLX:class:`~versiontools.Version`rhMjhNhQhSjhU}r(UreftypeXclassjjXversiontools.VersionU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]KhG]rh)r}r (hLjhU}r (hY]hZ]r (j)jXpy-classr ehX]hW]h[]uhMjhG]r hsXVersionrr}r(hLUhMjubahShubaubhsX class directly you may want to use this simplified interface where you simply interpret an arbitrary five-element version tuple as a version to get the pretty and rr}r(hLX class directly you may want to use this simplified interface where you simply interpret an arbitrary five-element version tuple as a version to get the pretty and hMjubhw)r}r(hLUhU}r(hW]hX]hY]hZ]h[]Uentriesr]r(h~X%Python Enhancement Proposals; PEP 386Uindex-0rUtrauhMjhG]hSh{ubhI)r}r(hLUhU}r(hY]hZ]hX]hW]rjah[]uhMjhG]hShTubcdocutils.nodes reference r)r }r!(hLUhU}r"(UrefuriU'http://www.python.org/dev/peps/pep-0386hW]hX]hY]hZ]r#Xpepr$ah[]UinternaluhMjhG]r%j)r&}r'(hLXPEP 386hU}r((hY]hZ]hX]hW]h[]uhMj hG]r)hsXPEP 386r*r+}r,(hLUhMj&ubahSjubahSU referencer-ubhsX-compliant version string.r.r/}r0(hLX-compliant version string.hMjubeubj)r1}r2(hLUhMjhNNhSjhU}r3(hY]hZ]hX]hW]h[]uh]Nh^hhG]r4j)r5}r6(hLUhU}r7(hY]hZ]hX]hW]h[]uhMj1hG]r8(j)r9}r:(hLUhU}r;(hY]hZ]hX]hW]h[]uhMj5hG]r<hsX Parametersr=r>}r?(hLUhMj9ubahSjubj)r@}rA(hLUhU}rB(hY]hZ]hX]hW]h[]uhMj5hG]rCj)rD}rE(hLUhU}rF(hY]hZ]hX]hW]h[]uhMj@hG]rG(j)rH}rI(hLUhU}rJ(hY]hZ]hX]hW]h[]uhMjDhG]rKh)rL}rM(hLUhU}rN(hY]hZ]hX]hW]h[]uhMjHhG]rO(j)rP}rQ(hLXversionhU}rR(hY]hZ]hX]hW]h[]uhMjLhG]rShsXversionrTrU}rV(hLUhMjPubahSjubhsX (rWrX}rY(hLUhMjLubhsXA rZr[}r\(hLXA hMjLubj)r]}r^(hLX:class:`tuple`r_hMjLhNhQhSjhU}r`(UreftypeXclassjjXtupleU refdomainXpyrahW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]KhG]rbh)rc}rd(hLj_hU}re(hY]hZ]rf(j)jaXpy-classrgehX]hW]h[]uhMj]hG]rhhsXtuplerirj}rk(hLUhMjcubahShubaubhsX, with five elements, as the one provided to rlrm}rn(hLX, with five elements, as the one provided to hMjLubj)ro}rp(hLX':meth:`versiontools.Version.from_tuple`rqhMjLhNhQhSjhU}rr(UreftypeXmethjjXversiontools.Version.from_tupleU refdomainXpyrshW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]KhG]rth)ru}rv(hLjqhU}rw(hY]hZ]rx(j)jsXpy-methryehX]hW]h[]uhMjohG]rzhsX!versiontools.Version.from_tuple()r{r|}r}(hLUhMjuubahShubaubhsX, or an existing instance of r~r}r(hLX, or an existing instance of hMjLubj)r}r(hLX:class:`versiontools.Version`rhMjLhNhQhSjhU}r(UreftypeXclassjjXversiontools.VersionU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]KhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-classrehX]hW]h[]uhMjhG]rhsXversiontools.Versionrr}r(hLUhMjubahShubaubhsX.r}r(hLX.hMjLubhsX)r}r(hLUhMjLubhsX -- rr}r(hLUhMjLubhsXThe version to formatrr}r(hLXThe version to formathMjLubehShubahSjubj)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjDhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]r(j)r}r(hLXhinthU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXhintrr}r(hLUhMjubahSjubhsX (rr}r(hLUhMjubhsXeither rr}r(hLXeither hMjubj)r}r(hLX :obj:`None`rhMjhNNhSjhU}r(UreftypeXobjjjXNoneU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]NhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-objrehX]hW]h[]uhMjhG]rhsXNonerr}r(hLUhMjubahShubaubhsX, or a module.rr}r(hLX, or a module.hMjubhsX)r}r(hLUhMjubhsX -- rr}r(hLUhMjubhsXThe hint object, if provided, helps versiontools to locate the directory which might host the project's source code. The idea is to pass rr}r(hLXThe hint object, if provided, helps versiontools to locate the directory which might host the project's source code. The idea is to pass hMjubj)r}r(hLX`module.__version__`hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXmodule.__version__rr}r(hLUhMjubahSjubhsX as the first argument and rr}r(hLX as the first argument and hMjubj)r}r(hLX`module`hU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXmodulerr}r(hLUhMjubahSjubhsX as the hint. This way we can lookup where module came from, and look for version control system data in that directory. Technically passing hint will make us call rr}r(hLX as the hint. This way we can lookup where module came from, and look for version control system data in that directory. Technically passing hint will make us call hMjubj)r}r(hLX3:meth:`~versiontools.Version.from_tuple_and_hint()`rhMjhNhQhSjhU}r(UreftypeXmethjjX(versiontools.Version.from_tuple_and_hintU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]KhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-methrehX]hW]h[]uhMjhG]rhsXfrom_tuple_and_hint()rr}r(hLUhMjubahShubaubhsX instead of rr}r(hLX instead of hMjubj)r}r(hLX*:meth:`~versiontools.Version.from_tuple()`rhMjhNhQhSjhU}r(UreftypeXmethjjXversiontools.Version.from_tupleU refdomainXpyrhW]hX]U refexplicithY]hZ]h[]jj j!Nj"j#uh]KhG]rh)r}r(hLjhU}r(hY]hZ]r(j)jXpy-methrehX]hW]h[]uhMjhG]rhsX from_tuple()rr}r(hLUhMjubahShubaubhsX.r}r(hLX.hMjubehShubahSjubehSj ubahSj ubehSj!ubaubjP)r }r (hLUhMjhNjhSjShU}r (jUX1.1hW]hX]hY]hZ]h[]jWX versionaddedr uh]Kh^hhG]ubeubeubhI)r }r (hLUhMh`hNhzhShThU}r (hY]hW]r X$module-versiontools.setuptools_hooksr ahX]UismodhZ]h[]uh]Kh^hhG]ubhw)r }r (hLUhMh`hNhzhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X&versiontools.setuptools_hooks (module)X$module-versiontools.setuptools_hooksUtr auh]Kh^hhG]ubh_)r }r (hLUhMh`hNX3:docstring of versiontools.setuptools_hooksr hShdhU}r (hY]hZ]hX]hW]r hDah[]r h-auh]Kh^hhG]r (hl)r }r (hLXversiontools.setuptools_hooksr hMj hNj hShphU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXversiontools.setuptools_hooksr r }r (hLj hMj ubaubh)r }r (hLX5Plugins for setuptools that add versintools features.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r! hsX5Plugins for setuptools that add versintools features.r" r# }r$ (hLj hMj ubaubh)r% }r& (hLX Setuptools has a framework where external packages, such as versiontools, can hook into setup.py metadata and commands. We use this feature to intercept special values of the ``version`` keyword argument to ``setup()``. This argument handled by the following method:hMj hNj hShhU}r' (hY]hZ]hX]hW]h[]uh]Kh^hhG]r( (hsXSetuptools has a framework where external packages, such as versiontools, can hook into setup.py metadata and commands. We use this feature to intercept special values of the r) r* }r+ (hLXSetuptools has a framework where external packages, such as versiontools, can hook into setup.py metadata and commands. We use this feature to intercept special values of the hMj% ubh)r, }r- (hLX ``version``hU}r. (hY]hZ]hX]hW]h[]uhMj% hG]r/ hsXversionr0 r1 }r2 (hLUhMj, ubahShubhsX keyword argument to r3 r4 }r5 (hLX keyword argument to hMj% ubh)r6 }r7 (hLX ``setup()``hU}r8 (hY]hZ]hX]hW]h[]uhMj% hG]r9 hsXsetup()r: r; }r< (hLUhMj6 ubahShubhsX0. This argument handled by the following method:r= r> }r? (hLX0. This argument handled by the following method:hMj% ubeubhw)r@ }rA (hLUhMj hNNhSh{hU}rB (hW]hX]hY]hZ]h[]Uentries]rC (h~X3version() (in module versiontools.setuptools_hooks)h UtrD auh]Nh^hhG]ubh)rE }rF (hLUhMj hNNhShhU}rG (hΉhXpyhW]hX]hY]hZ]h[]hXfunctionrH hjH uh]Nh^hhG]rI (h)rJ }rK (hLXversion(dist, attr, value)hMjE hNhhShhU}rL (hW]rM h ahhOXversiontools.setuptools_hooksrN rO }rP bhX]hY]hZ]h[]rQ h ahXversionrR hUhuh]Nh^hhG]rS (h)rT }rU (hLXversiontools.setuptools_hooks.hMjJ hNhhShhU}rV (hY]hZ]hX]hW]h[]uh]Nh^hhG]rW hsXversiontools.setuptools_hooks.rX rY }rZ (hLUhMjT ubaubh)r[ }r\ (hLjR hMjJ hNhhShhU}r] (hY]hZ]hX]hW]h[]uh]Nh^hhG]r^ hsXversionr_ r` }ra (hLUhMj[ ubaubjm)rb }rc (hLUhMjJ hNhhSjphU}rd (hY]hZ]hX]hW]h[]uh]Nh^hhG]re (js)rf }rg (hLXdisthU}rh (hY]hZ]hX]hW]h[]uhMjb hG]ri hsXdistrj rk }rl (hLUhMjf ubahSj{ubjs)rm }rn (hLXattrhU}ro (hY]hZ]hX]hW]h[]uhMjb hG]rp hsXattrrq rr }rs (hLUhMjm ubahSj{ubjs)rt }ru (hLXvaluehU}rv (hY]hZ]hX]hW]h[]uhMjb hG]rw hsXvaluerx ry }rz (hLUhMjt ubahSj{ubeubeubj)r{ }r| (hLUhMjE hNhhSjhU}r} (hY]hZ]hX]hW]h[]uh]Nh^hhG]r~ (h)r }r (hLX4Handle the ``version`` keyword to setuptools.setup()hMj{ hNX;:docstring of versiontools.setuptools_hooks.versionr hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r (hsX Handle the r r }r (hLX Handle the hMj ubh)r }r (hLX ``version``hU}r (hY]hZ]hX]hW]h[]uhMj hG]r hsXversionr r }r (hLUhMj ubahShubhsX keyword to setuptools.setup()r r }r (hLX keyword to setuptools.setup()hMj ubeubjB)r }r (hLXThis function is normally called by setuptools, it is advertised in the entry points of versiontools as setuptools extension. There is no need to call in manually.hMj{ hNj hSjEhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXThis function is normally called by setuptools, it is advertised in the entry points of versiontools as setuptools extension. There is no need to call in manually.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]KhG]r hsXThis function is normally called by setuptools, it is advertised in the entry points of versiontools as setuptools extension. There is no need to call in manually.r r }r (hLj hMj ubaubaubjP)r }r (hLUhMj{ hNj hSjShU}r (jUX1.3r hW]hX]hY]hZ]h[]jWX versionaddedr uh]Kh^hhG]ubeubeubeubhI)r }r (hLUhMh`hNhzhShThU}r (hY]hW]r X(module-versiontools.versiontools_supportr ahX]UismodhZ]h[]uh]Kh^hhG]ubhw)r }r (hLUhMh`hNhzhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X*versiontools.versiontools_support (module)X(module-versiontools.versiontools_supportUtr auh]Kh^hhG]ubh_)r }r (hLUhMh`hNX7:docstring of versiontools.versiontools_supportr hShdhU}r (hY]hZ]hX]hW]r hFah[]r h0auh]Kh^hhG]r (hl)r }r (hLX!versiontools.versiontools_supportr hMj hNj hShphU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsX!versiontools.versiontools_supportr r }r (hLj hMj ubaubh)r }r (hLXFA small standalone module that allows any package to use versiontools.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXFA small standalone module that allows any package to use versiontools.r r }r (hLj hMj ubaubh)r }r (hLXKTypically you should copy this file verbatim into your source distribution.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXKTypically you should copy this file verbatim into your source distribution.r r }r (hLj hMj ubaubh)r }r (hLXQHistorically versiontools was depending on a exotic feature of setuptools to work. Setuptools has so-called setup-time dependencies, that is modules that need to be downloaded and imported/interrogated for setup.py to run successfully. Versiontools supports this by installing a handler for the 'version' keyword of the setup() function.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXQHistorically versiontools was depending on a exotic feature of setuptools to work. Setuptools has so-called setup-time dependencies, that is modules that need to be downloaded and imported/interrogated for setup.py to run successfully. Versiontools supports this by installing a handler for the 'version' keyword of the setup() function.r r }r (hLj hMj ubaubh)r }r (hLX5This approach was always a little annoying as this setuptools feature is rather odd and very few other packages made any use of it. In the future the standard tools for python packaging (especially in python3 world) this feature may be removed or have equivalent thus rendering versiontools completely broken.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsX5This approach was always a little annoying as this setuptools feature is rather odd and very few other packages made any use of it. In the future the standard tools for python packaging (especially in python3 world) this feature may be removed or have equivalent thus rendering versiontools completely broken.r r }r (hLj hMj ubaubh)r }r (hLXCurrently the biggest practical issue is the apparent inability to prevent setuptools from downloading packages designated as setup_requires. This is discussed in this pip issue: https://github.com/pypa/pip/issues/410hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r (hsXCurrently the biggest practical issue is the apparent inability to prevent setuptools from downloading packages designated as setup_requires. This is discussed in this pip issue: r r }r (hLXCurrently the biggest practical issue is the apparent inability to prevent setuptools from downloading packages designated as setup_requires. This is discussed in this pip issue: hMj ubj)r }r (hLX&https://github.com/pypa/pip/issues/410r hU}r (Urefurij hW]hX]hY]hZ]h[]uhMj hG]r hsX&https://github.com/pypa/pip/issues/410r r }r (hLUhMj ubahSj-ubeubh)r }r (hLXTo counter this issue I've redesigned versiontools to be a little smarter. The old mode stays as-is for compatibility. The new mode works differently, without the need for using setup_requires in your setup() call. Instead it requires each package that uses versiontools to ship a verbatim copy of this module and to import it in their setup.py script. This module helps setuptools find package version in the standard PKG-INFO file that is created for all source distributions. Remember that you only need this mode when you don't want to add a dependency on versiontools. This will still allow you to use versiontools (in a limited way) in your setup.py file.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXTo counter this issue I've redesigned versiontools to be a little smarter. The old mode stays as-is for compatibility. The new mode works differently, without the need for using setup_requires in your setup() call. Instead it requires each package that uses versiontools to ship a verbatim copy of this module and to import it in their setup.py script. This module helps setuptools find package version in the standard PKG-INFO file that is created for all source distributions. Remember that you only need this mode when you don't want to add a dependency on versiontools. This will still allow you to use versiontools (in a limited way) in your setup.py file.r r }r (hLj hMj ubaubh)r }r (hLX Technically this module defines an improved version of one of distutils.dist.DistributionMetadata class and monkey-patches distutils to use it. To retain backward compatibility the new feature is only active when a special version string is passed to the setup() call.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]K!h^hhG]r hsX Technically this module defines an improved version of one of distutils.dist.DistributionMetadata class and monkey-patches distutils to use it. To retain backward compatibility the new feature is only active when a special version string is passed to the setup() call.r r }r (hLj hMj ubaubhw)r }r (hLUhMj hNNhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~XVVersiontoolsEnchancedDistributionMetadata (class in versiontools.versiontools_support)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj hNNhShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hXclassr hj uh]Nh^hhG]r (h)r }r (hLX4VersiontoolsEnchancedDistributionMetadata(path=None)hMj hNhhShhU}r (hW]r hahhOX!versiontools.versiontools_supportr r }r bhX]hY]hZ]h[]r hahX)VersiontoolsEnchancedDistributionMetadatar hUhuh]Nh^hhG]r (h)r }r (hLXclass hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXclass r r }r (hLUhMj ubaubh)r }r (hLX"versiontools.versiontools_support.hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsX"versiontools.versiontools_support.r r }r (hLUhMj ubaubh)r }r (hLj hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsX)VersiontoolsEnchancedDistributionMetadatar r! }r" (hLUhMj ubaubjm)r# }r$ (hLUhMj hNhhSjphU}r% (hY]hZ]hX]hW]h[]uh]Nh^hhG]r& js)r' }r( (hLX path=NonehU}r) (hY]hZ]hX]hW]h[]uhMj# hG]r* hsX path=Noner+ r, }r- (hLUhMj' ubahSj{ubaubeubj)r. }r/ (hLUhMj hNhhSjhU}r0 (hY]hZ]hX]hW]h[]uh]Nh^hhG]r1 (h)r2 }r3 (hLXHA subclass of distutils.dist.DistributionMetadata that uses versiontoolsr4 hMj. hNXa:docstring of versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadatar5 hShhU}r6 (hY]hZ]hX]hW]h[]uh]Kh^hhG]r7 hsXHA subclass of distutils.dist.DistributionMetadata that uses versiontoolsr8 r9 }r: (hLj4 hMj2 ubaubh)r; }r< (hLXTypically you would not instantiate this class directly. It is constructed by distutils.dist.Distribution.__init__() method. Since there is no other way to do it, this module monkey-patches distutils to override the original version of DistributionMetadatar= hMj. hNj5 hShhU}r> (hY]hZ]hX]hW]h[]uh]Kh^hhG]r? hsXTypically you would not instantiate this class directly. It is constructed by distutils.dist.Distribution.__init__() method. Since there is no other way to do it, this module monkey-patches distutils to override the original version of DistributionMetadatar@ rA }rB (hLj= hMj; ubaubhw)rC }rD (hLUhMj. hNXm:docstring of versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata.get_versionrE hSh{hU}rF (hW]hX]hY]hZ]h[]Uentries]rG (h~Xbget_version() (versiontools.versiontools_support.VersiontoolsEnchancedDistributionMetadata method)h UtrH auh]Nh^hhG]ubh)rI }rJ (hLUhMj. hNjE hShhU}rK (hΉhXpyhW]hX]hY]hZ]h[]hXmethodrL hjL uh]Nh^hhG]rM (h)rN }rO (hLX7VersiontoolsEnchancedDistributionMetadata.get_version()hMjI hNhhShhU}rP (hW]rQ h ahhOX!versiontools.versiontools_supportrR rS }rT bhX]hY]hZ]h[]rU h ahX5VersiontoolsEnchancedDistributionMetadata.get_versionhj huh]Nh^hhG]rV (h)rW }rX (hLX get_versionhMjN hNhhShhU}rY (hY]hZ]hX]hW]h[]uh]Nh^hhG]rZ hsX get_versionr[ r\ }r] (hLUhMjW ubaubjm)r^ }r_ (hLUhMjN hNhhSjphU}r` (hY]hZ]hX]hW]h[]uh]Nh^hhG]ubeubj)ra }rb (hLUhMjI hNhhSjhU}rc (hY]hZ]hX]hW]h[]uh]Nh^hhG]rd (h)re }rf (hLXGet distribution version.rg hMja hNjE hShhU}rh (hY]hZ]hX]hW]h[]uh]Kh^hhG]ri hsXGet distribution version.rj rk }rl (hLjg hMje ubaubh)rm }rn (hLXThis method is enhanced compared to original distutils implementation. If the version string is set to a special value then instead of using the actual value the real version is obtained by querying versiontools.ro hMja hNjE hShhU}rp (hY]hZ]hX]hW]h[]uh]Kh^hhG]rq hsXThis method is enhanced compared to original distutils implementation. If the version string is set to a special value then instead of using the actual value the real version is obtained by querying versiontools.rr rs }rt (hLjo hMjm ubaubh)ru }rv (hLXIf versiontools package is not installed then the version is obtained from the standard section of the ``PKG-INFO`` file. This file is automatically created by any source distribution. This method is less useful as it cannot take advantage of version control information that is automatically loaded by versiontools. It has the advantage of not requiring versiontools installation and that it does not depend on ``setup_requires`` feature of ``setuptools``.hMja hNjE hShhU}rw (hY]hZ]hX]hW]h[]uh]Kh^hhG]rx (hsXgIf versiontools package is not installed then the version is obtained from the standard section of the ry rz }r{ (hLXgIf versiontools package is not installed then the version is obtained from the standard section of the hMju ubh)r| }r} (hLX ``PKG-INFO``hU}r~ (hY]hZ]hX]hW]h[]uhMju hG]r hsXPKG-INFOr r }r (hLUhMj| ubahShubhsX) file. This file is automatically created by any source distribution. This method is less useful as it cannot take advantage of version control information that is automatically loaded by versiontools. It has the advantage of not requiring versiontools installation and that it does not depend on r r }r (hLX) file. This file is automatically created by any source distribution. This method is less useful as it cannot take advantage of version control information that is automatically loaded by versiontools. It has the advantage of not requiring versiontools installation and that it does not depend on hMju ubh)r }r (hLX``setup_requires``hU}r (hY]hZ]hX]hW]h[]uhMju hG]r hsXsetup_requiresr r }r (hLUhMj ubahShubhsX feature of r r }r (hLX feature of hMju ubh)r }r (hLX``setuptools``hU}r (hY]hZ]hX]hW]h[]uhMju hG]r hsX setuptoolsr r }r (hLUhMj ubahShubhsX.r }r (hLX.hMju ubeubeubeubeubeubeubhI)r }r (hLUhMh`hNhzhShThU}r (hY]hW]r Xmodule-versiontools.bzr_supportr ahX]UismodhZ]h[]uh]Kh^hhG]ubhw)r }r (hLUhMh`hNhzhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X!versiontools.bzr_support (module)Xmodule-versiontools.bzr_supportUtr auh]Kh^hhG]ubhI)r }r (hLX.. _bzr:hMh`hNX.:docstring of versiontools.bzr_supportr hShThU}r (hW]hX]hY]hZ]h[]h\h@uh]Kh^hhG]ubh_)r }r (hLUhMh`hNj hb}r h%j shShdhU}r (hY]hZ]hX]hW]r (h>h@eh[]r (hh%euh]Kh^hhi}r h@j shG]r (hl)r }r (hLXversiontools.bzr_supportr hMj hNj hShphU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXversiontools.bzr_supportr r }r (hLj hMj ubaubh)r }r (hLXBazaar support for versiontoolsr hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXBazaar support for versiontoolsr r }r (hLj hMj ubaubjB)r }r (hLXzTo work with Bazaar repositories you will need bzrlib. You can install it with pip or from the ``bzr`` package on Ubuntu.hMj hNj hSjEhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXzTo work with Bazaar repositories you will need bzrlib. You can install it with pip or from the ``bzr`` package on Ubuntu.hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]K hG]r (hsX`To work with Bazaar repositories you will need bzrlib. You can install it with pip or from the r r }r (hLX`To work with Bazaar repositories you will need bzrlib. You can install it with pip or from the hMj ubh)r }r (hLX``bzr``hU}r (hY]hZ]hX]hW]h[]uhMj hG]r hsXbzrr r }r (hLUhMj ubahShubhsX package on Ubuntu.r r }r (hLX package on Ubuntu.hMj ubeubaubcdocutils.nodes warning r )r }r (hLXOn Windows the typical Bazaar installation bundles both the python interpreter and a host of libraries and those libraries are not accessible by the typically-installed python interpreter. If you wish to use Bazaar on windows we would recommend to install Bazaar directly from pypi.hMj hNj hSUwarningr hU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXOn Windows the typical Bazaar installation bundles both the python interpreter and a host of libraries and those libraries are not accessible by the typically-installed python interpreter. If you wish to use Bazaar on windows we would recommend to install Bazaar directly from pypi.r hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]KhG]r hsXOn Windows the typical Bazaar installation bundles both the python interpreter and a host of libraries and those libraries are not accessible by the typically-installed python interpreter. If you wish to use Bazaar on windows we would recommend to install Bazaar directly from pypi.r r }r (hLj hMj ubaubaubhw)r }r (hLUhMj hNNhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X2BzrIntegration (class in versiontools.bzr_support)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj hNNhShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hXclassr hj uh]Nh^hhG]r (h)r }r (hLXBzrIntegration(branch)hMj hNhhShhU}r (hW]r hahhOXversiontools.bzr_supportr r }r bhX]hY]hZ]h[]r hahXBzrIntegrationr hUhuh]Nh^hhG]r (h)r }r (hLXclass hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXclass r r }r (hLUhMj ubaubh)r }r (hLXversiontools.bzr_support.hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXversiontools.bzr_support.r r }r (hLUhMj ubaubh)r }r (hLj hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXBzrIntegrationr r }r (hLUhMj ubaubjm)r }r (hLUhMj hNhhSjphU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r js)r }r (hLXbranchhU}r (hY]hZ]hX]hW]h[]uhMj hG]r hsXbranchr r }r (hLUhMj ubahSj{ubaubeubj)r }r (hLUhMj hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r (h)r }r (hLX#Bazaar integration for versiontoolsr hMj hNX=:docstring of versiontools.bzr_support.BzrIntegrationhShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsX#Bazaar integration for versiontoolsr r }r! (hLj hMj ubaubhw)r" }r# (hLUhMj hNNhSh{hU}r$ (hW]hX]hY]hZ]h[]Uentries]r% (h~X?branch_nick (versiontools.bzr_support.BzrIntegration attribute)h&Utr& auh]Nh^hhG]ubh)r' }r( (hLUhMj hNNhShhU}r) (hΉhXpyhW]hX]hY]hZ]h[]hX attributer* hj* uh]Nh^hhG]r+ (h)r, }r- (hLXBzrIntegration.branch_nickhMj' hNhhShhU}r. (hW]r/ h&ahhOXversiontools.bzr_supportr0 r1 }r2 bhX]hY]hZ]h[]r3 h&ahXBzrIntegration.branch_nickr4 hj huh]Nh^hhG]r5 h)r6 }r7 (hLX branch_nickhMj, hNhhShhU}r8 (hY]hZ]hX]hW]h[]uh]Nh^hhG]r9 hsX branch_nickr: r; }r< (hLUhMj6 ubaubaubj)r= }r> (hLUhMj' hNhhSjhU}r? (hY]hZ]hX]hW]h[]uh]Nh^hhG]r@ (h)rA }rB (hLXNickname of the branchrC hMj= hNXI:docstring of versiontools.bzr_support.BzrIntegration.branch_nickrD hShhU}rE (hY]hZ]hX]hW]h[]uh]Kh^hhG]rF hsXNickname of the branchrG rH }rI (hLjC hMjA ubaubjP)rJ }rK (hLUhMj= hNjD hSjShU}rL (jUX1.0.4hW]hX]hY]hZ]h[]jWX versionaddedrM uh]Kh^hhG]ubeubeubhw)rN }rO (hLUhMj hNXN:docstring of versiontools.bzr_support.BzrIntegration.from_source_treerP hSh{hU}rQ (hW]hX]hY]hZ]h[]Uentries]rR (h~XIfrom_source_tree() (versiontools.bzr_support.BzrIntegration class method)h UtrS auh]Nh^hhG]ubh)rT }rU (hLUhMj hNjP hShhU}rV (hΉhXpyhW]hX]hY]hZ]h[]hX classmethodrW hjW uh]Nh^hhG]rX (h)rY }rZ (hLX,BzrIntegration.from_source_tree(source_tree)hMjT hNhhShhU}r[ (hW]r\ h ahhOXversiontools.bzr_supportr] r^ }r_ bhX]hY]hZ]h[]r` h ahXBzrIntegration.from_source_treehj huh]Nh^hhG]ra (h)rb }rc (hLjhMjY hNhhShhU}rd (hY]hZ]hX]hW]h[]uh]Nh^hhG]re hsX classmethod rf rg }rh (hLUhMjb ubaubh)ri }rj (hLXfrom_source_treehMjY hNhhShhU}rk (hY]hZ]hX]hW]h[]uh]Nh^hhG]rl hsXfrom_source_treerm rn }ro (hLUhMji ubaubjm)rp }rq (hLUhMjY hNhhSjphU}rr (hY]hZ]hX]hW]h[]uh]Nh^hhG]rs js)rt }ru (hLX source_treehU}rv (hY]hZ]hX]hW]h[]uhMjp hG]rw hsX source_treerx ry }rz (hLUhMjt ubahSj{ubaubeubj)r{ }r| (hLUhMjT hNhhSjhU}r} (hY]hZ]hX]hW]h[]uh]Nh^hhG]r~ h)r }r (hLXInitialize :class:`~versiontools.bzr_support.BzrIntegration` by pointing at the source tree. Any file or directory inside the source tree may be used.hMj{ hNjP hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r (hsX Initialize r r }r (hLX Initialize hMj ubj)r }r (hLX1:class:`~versiontools.bzr_support.BzrIntegration`r hMj hNNhSjhU}r (UreftypeXclassjjX'versiontools.bzr_support.BzrIntegrationU refdomainXpyr hW]hX]U refexplicithY]hZ]h[]jj j!j j"Xversiontools.bzr_supportr uh]NhG]r h)r }r (hLj hU}r (hY]hZ]r (j)j Xpy-classr ehX]hW]h[]uhMj hG]r hsXBzrIntegrationr r }r (hLUhMj ubahShubaubhsX[ by pointing at the source tree. Any file or directory inside the source tree may be used.r r }r (hLX[ by pointing at the source tree. Any file or directory inside the source tree may be used.hMj ubeubaubeubhw)r }r (hLUhMj hNXC:docstring of versiontools.bzr_support.BzrIntegration.revnor hSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X9revno (versiontools.bzr_support.BzrIntegration attribute)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj hNj hShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hX attributer hj uh]Nh^hhG]r (h)r }r (hLXBzrIntegration.revnohMj hNhhShhU}r (hW]r hahhOXversiontools.bzr_supportr r }r bhX]hY]hZ]h[]r hahXBzrIntegration.revnohj huh]Nh^hhG]r h)r }r (hLXrevnohMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXrevnor r }r (hLUhMj ubaubaubj)r }r (hLUhMj hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXRevision number of the branchr hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXRevision number of the branchr r }r (hLj hMj ubaubaubeubeubeubeubhI)r }r (hLUhMh`hNhzhShThU}r (hY]hW]r Xmodule-versiontools.git_supportr ahX]UismodhZ]h[]uh]Kh^hhG]ubhw)r }r (hLUhMh`hNhzhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X!versiontools.git_support (module)Xmodule-versiontools.git_supportUtr auh]Kh^hhG]ubhI)r }r (hLX.. _git:hMh`hNX.:docstring of versiontools.git_supportr hShThU}r (hW]hX]hY]hZ]h[]h\h`_. Version 0.1.6 is sufficient to run the code. You can install it with pip. hMj hNj hSjEhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXTo work with Git repositories you will need `GitPython `_. Version 0.1.6 is sufficient to run the code. You can install it with pip.hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]K hG]r (hsX,To work with Git repositories you will need r r }r (hLX,To work with Git repositories you will need hMj ubj)r }r (hLX4`GitPython `_hU}r (UnameX GitPythonUrefurir X%http://pypi.python.org/pypi/GitPythonr hW]hX]hY]hZ]h[]uhMj hG]r hsX GitPythonr r }r (hLUhMj ubahSj-ubhI)r }r (hLX( U referencedr KhMj hShThU}r (Urefurij hW]r hAahX]hY]hZ]h[]r h'auhG]ubhsXK. Version 0.1.6 is sufficient to run the code. You can install it with pip.r r }r (hLXK. Version 0.1.6 is sufficient to run the code. You can install it with pip.hMj ubeubaubhw)r }r (hLUhMj hNNhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X2GitIntegration (class in versiontools.git_support)h*Utr auh]Nh^hhG]ubh)r }r (hLUhMj hNNhShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hXclassr hj uh]Nh^hhG]r (h)r }r (hLXGitIntegration(repo)hMj hNhhShhU}r (hW]r h*ahhOXversiontools.git_supportr r }r bhX]hY]hZ]h[]r h*ahXGitIntegrationr hUhuh]Nh^hhG]r (h)r }r (hLXclass hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXclass r r }r (hLUhMj ubaubh)r }r (hLXversiontools.git_support.hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r! hsXversiontools.git_support.r" r# }r$ (hLUhMj ubaubh)r% }r& (hLj hMj hNhhShhU}r' (hY]hZ]hX]hW]h[]uh]Nh^hhG]r( hsXGitIntegrationr) r* }r+ (hLUhMj% ubaubjm)r, }r- (hLUhMj hNhhSjphU}r. (hY]hZ]hX]hW]h[]uh]Nh^hhG]r/ js)r0 }r1 (hLXrepohU}r2 (hY]hZ]hX]hW]h[]uhMj, hG]r3 hsXrepor4 r5 }r6 (hLUhMj0 ubahSj{ubaubeubj)r7 }r8 (hLUhMj hNhhSjhU}r9 (hY]hZ]hX]hW]h[]uh]Nh^hhG]r: (h)r; }r< (hLX Git integration for versiontoolsr= hMj7 hNX=:docstring of versiontools.git_support.GitIntegrationr> hShhU}r? (hY]hZ]hX]hW]h[]uh]Kh^hhG]r@ hsX Git integration for versiontoolsrA rB }rC (hLj= hMj; ubaubhw)rD }rE (hLUhMj7 hNNhSh{hU}rF (hW]hX]hY]hZ]h[]Uentries]rG (h~X?branch_nick (versiontools.git_support.GitIntegration attribute)h,UtrH auh]Nh^hhG]ubh)rI }rJ (hLUhMj7 hNNhShhU}rK (hΉhXpyhW]hX]hY]hZ]h[]hX attributerL hjL uh]Nh^hhG]rM (h)rN }rO (hLXGitIntegration.branch_nickhMjI hNhhShhU}rP (hW]rQ h,ahhOXversiontools.git_supportrR rS }rT bhX]hY]hZ]h[]rU h,ahXGitIntegration.branch_nickrV hj huh]Nh^hhG]rW h)rX }rY (hLX branch_nickhMjN hNhhShhU}rZ (hY]hZ]hX]hW]h[]uh]Nh^hhG]r[ hsX branch_nickr\ r] }r^ (hLUhMjX ubaubaubj)r_ }r` (hLUhMjI hNhhSjhU}ra (hY]hZ]hX]hW]h[]uh]Nh^hhG]rb (h)rc }rd (hLXNickname of the branchre hMj_ hNXI:docstring of versiontools.git_support.GitIntegration.branch_nickrf hShhU}rg (hY]hZ]hX]hW]h[]uh]Kh^hhG]rh hsXNickname of the branchri rj }rk (hLje hMjc ubaubjP)rl }rm (hLUhMj_ hNjf hSjShU}rn (jUX1.0.4hW]hX]hY]hZ]h[]jWX versionaddedro uh]Kh^hhG]ubeubeubhw)rp }rq (hLUhMj7 hNXG:docstring of versiontools.git_support.GitIntegration.commit_idrr hSh{hU}rs (hW]hX]hY]hZ]h[]Uentries]rt (h~X=commit_id (versiontools.git_support.GitIntegration attribute)h$Utru auh]Nh^hhG]ubh)rv }rw (hLUhMj7 hNjr hShhU}rx (hΉhXpyhW]hX]hY]hZ]h[]hX attributery hjy uh]Nh^hhG]rz (h)r{ }r| (hLXGitIntegration.commit_idhMjv hNhhShhU}r} (hW]r~ h$ahhOXversiontools.git_supportr r }r bhX]hY]hZ]h[]r h$ahXGitIntegration.commit_idhj huh]Nh^hhG]r h)r }r (hLX commit_idhMj{ hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsX commit_idr r }r (hLUhMj ubaubaubj)r }r (hLUhMjv hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXThe full commit idr hMj hNjr hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXThe full commit idr r }r (hLj hMj ubaubaubeubhw)r }r (hLUhMj7 hNXN:docstring of versiontools.git_support.GitIntegration.commit_id_abbrevr hSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~XDcommit_id_abbrev (versiontools.git_support.GitIntegration attribute)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj7 hNj hShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hX attributer hj uh]Nh^hhG]r (h)r }r (hLXGitIntegration.commit_id_abbrevhMj hNhhShhU}r (hW]r hahhOXversiontools.git_supportr r }r bhX]hY]hZ]h[]r hahXGitIntegration.commit_id_abbrevhj huh]Nh^hhG]r h)r }r (hLXcommit_id_abbrevhMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXcommit_id_abbrevr r }r (hLUhMj ubaubaubj)r }r (hLUhMj hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLX&The abbreviated, 7 character commit idr hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsX&The abbreviated, 7 character commit idr r }r (hLj hMj ubaubaubeubhw)r }r (hLUhMj7 hNXN:docstring of versiontools.git_support.GitIntegration.from_source_treer hSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~XIfrom_source_tree() (versiontools.git_support.GitIntegration class method)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj7 hNj hShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hX classmethodr hj uh]Nh^hhG]r (h)r }r (hLX,GitIntegration.from_source_tree(source_tree)hMj hNhhShhU}r (hW]r hahhOXversiontools.git_supportr r }r bhX]hY]hZ]h[]r hahXGitIntegration.from_source_treehj huh]Nh^hhG]r (h)r }r (hLjhMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsX classmethod r r }r (hLUhMj ubaubh)r }r (hLXfrom_source_treehMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXfrom_source_treer r }r (hLUhMj ubaubjm)r }r (hLUhMj hNhhSjphU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r js)r }r (hLX source_treehU}r (hY]hZ]hX]hW]h[]uhMj hG]r hsX source_treer r }r (hLUhMj ubahSj{ubaubeubj)r }r (hLUhMj hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r h)r }r (hLXInitialize :class:`~versiontools.git_support.GitIntegration` by pointing at the source tree. Any file or directory inside the source tree may be used.hMj hNj hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r (hsX Initialize r r }r (hLX Initialize hMj ubj)r }r (hLX1:class:`~versiontools.git_support.GitIntegration`r hMj hNNhSjhU}r (UreftypeXclassjjX'versiontools.git_support.GitIntegrationU refdomainXpyr hW]hX]U refexplicithY]hZ]h[]jj j!j j"Xversiontools.git_supportr uh]NhG]r h)r }r (hLj hU}r (hY]hZ]r (j)j Xpy-classr ehX]hW]h[]uhMj hG]r hsXGitIntegrationr r }r (hLUhMj ubahShubaubhsX[ by pointing at the source tree. Any file or directory inside the source tree may be used.r r }r (hLX[ by pointing at the source tree. Any file or directory inside the source tree may be used.hMj ubeubaubeubhw)r }r (hLUhMj7 hNXC:docstring of versiontools.git_support.GitIntegration.revnor hSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X9revno (versiontools.git_support.GitIntegration attribute)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj7 hNj hShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hX attributer hj uh]Nh^hhG]r (h)r }r (hLXGitIntegration.revnohMj hNhhShhU}r (hW]r hahhOXversiontools.git_supportr r }r bhX]hY]hZ]h[]r hahXGitIntegration.revnohj huh]Nh^hhG]r h)r }r (hLXrevnohMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXrevnor! r" }r# (hLUhMj ubaubaubj)r$ }r% (hLUhMj hNhhSjhU}r& (hY]hZ]hX]hW]h[]uh]Nh^hhG]r' h)r( }r) (hLXISame as :attr:`~versiontools.git_support.GitIntegration.commit_id_abbrev`hMj$ hNj hShhU}r* (hY]hZ]hX]hW]h[]uh]Kh^hhG]r+ (hsXSame as r, r- }r. (hLXSame as hMj( ubj)r/ }r0 (hLXA:attr:`~versiontools.git_support.GitIntegration.commit_id_abbrev`r1 hMj( hNNhSjhU}r2 (UreftypeXattrjjX8versiontools.git_support.GitIntegration.commit_id_abbrevU refdomainXpyr3 hW]hX]U refexplicithY]hZ]h[]jj j!j j"j uh]NhG]r4 h)r5 }r6 (hLj1 hU}r7 (hY]hZ]r8 (j)j3 Xpy-attrr9 ehX]hW]h[]uhMj/ hG]r: hsXcommit_id_abbrevr; r< }r= (hLUhMj5 ubahShubaubeubaubeubeubeubeubhI)r> }r? (hLUhMh`hNhzhShThU}r@ (hY]hW]rA Xmodule-versiontools.hg_supportrB ahX]UismodhZ]h[]uh]Kh^hhG]ubhw)rC }rD (hLUhMh`hNhzhSh{hU}rE (hW]hX]hY]hZ]h[]Uentries]rF (h~X versiontools.hg_support (module)Xmodule-versiontools.hg_supportUtrG auh]Kh^hhG]ubhI)rH }rI (hLX.. _hg:hMh`hNX-:docstring of versiontools.hg_supportrJ hShThU}rK (hW]hX]hY]hZ]h[]h\h?uh]Kh^hhG]ubh_)rL }rM (hLUhMh`hNjJ hb}rN h"jH shShdhU}rO (hY]hZ]hX]hW]rP (hCh?eh[]rQ (h+h"euh]Kh^hhi}rR h?jH shG]rS (hl)rT }rU (hLXversiontools.hg_supportrV hMjL hNjJ hShphU}rW (hY]hZ]hX]hW]h[]uh]Kh^hhG]rX hsXversiontools.hg_supportrY rZ }r[ (hLjV hMjT ubaubh)r\ }r] (hLX(Mercurial (Hg) support for versiontools.r^ hMjL hNjJ hShhU}r_ (hY]hZ]hX]hW]h[]uh]Kh^hhG]r` hsX(Mercurial (Hg) support for versiontools.ra rb }rc (hLj^ hMj\ ubaubjB)rd }re (hLXTo work with Mercurial repositories you will need `Mercurial `_. You can install it with pip or from the `mercurial` package on Ubuntu. hMjL hNjJ hSjEhU}rf (hY]hZ]hX]hW]h[]uh]Nh^hhG]rg h)rh }ri (hLXTo work with Mercurial repositories you will need `Mercurial `_. You can install it with pip or from the `mercurial` package on Ubuntu.hMjd hNjJ hShhU}rj (hY]hZ]hX]hW]h[]uh]K hG]rk (hsX2To work with Mercurial repositories you will need rl rm }rn (hLX2To work with Mercurial repositories you will need hMjh ubj)ro }rp (hLX,`Mercurial `_hU}rq (UnameX Mercurialj Xhttp://mercurial.selenic.com/rr hW]hX]hY]hZ]h[]uhMjh hG]rs hsX Mercurialrt ru }rv (hLUhMjo ubahSj-ubhI)rw }rx (hLX j KhMjh hShThU}ry (Urefurijr hW]rz hBahX]hY]hZ]h[]r{ h(auhG]ubhsX*. You can install it with pip or from the r| r} }r~ (hLX*. You can install it with pip or from the hMjh ubj)r }r (hLX `mercurial`hU}r (hY]hZ]hX]hW]h[]uhMjh hG]r hsX mercurialr r }r (hLUhMj ubahSjubhsX package on Ubuntu.r r }r (hLX package on Ubuntu.hMjh ubeubaubhw)r }r (hLUhMjL hNNhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X0HgIntegration (class in versiontools.hg_support)hUtr auh]Nh^hhG]ubh)r }r (hLUhMjL hNNhShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hXclassr hj uh]Nh^hhG]r (h)r }r (hLXHgIntegration(repo)r hMj hNhhShhU}r (hW]r hahhOXversiontools.hg_supportr r }r bhX]hY]hZ]h[]r hahX HgIntegrationr hUhuh]Nh^hhG]r (h)r }r (hLXclass hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXclass r r }r (hLUhMj ubaubh)r }r (hLXversiontools.hg_support.hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsXversiontools.hg_support.r r }r (hLUhMj ubaubh)r }r (hLj hMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsX HgIntegrationr r }r (hLUhMj ubaubjm)r }r (hLUhMj hNhhSjphU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r js)r }r (hLXrepohU}r (hY]hZ]hX]hW]h[]uhMj hG]r hsXrepor r }r (hLUhMj ubahSj{ubaubeubj)r }r (hLUhMj hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r (h)r }r (hLXHg integration for versiontoolsr hMj hNX;:docstring of versiontools.hg_support.HgIntegrationr hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXHg integration for versiontoolsr r }r (hLj hMj ubaubhw)r }r (hLUhMj hNNhSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~X=branch_nick (versiontools.hg_support.HgIntegration attribute)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj hNNhShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hX attributer hj uh]Nh^hhG]r (h)r }r (hLXHgIntegration.branch_nickhMj hNhhShhU}r (hW]r hahhOXversiontools.hg_supportr r }r bhX]hY]hZ]h[]r hahXHgIntegration.branch_nickr hj huh]Nh^hhG]r h)r }r (hLX branch_nickhMj hNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r hsX branch_nickr r }r (hLUhMj ubaubaubj)r }r (hLUhMj hNhhSjhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]r (h)r }r (hLXNickname of the branchr hMj hNXG:docstring of versiontools.hg_support.HgIntegration.branch_nickr hShhU}r (hY]hZ]hX]hW]h[]uh]Kh^hhG]r hsXNickname of the branchr r }r (hLj hMj ubaubjP)r }r (hLUhMj hNj hSjShU}r (jUX1.0.4hW]hX]hY]hZ]h[]jWX versionaddedr uh]Kh^hhG]ubeubeubhw)r }r (hLUhMj hNXL:docstring of versiontools.hg_support.HgIntegration.from_source_treer hSh{hU}r (hW]hX]hY]hZ]h[]Uentries]r (h~XGfrom_source_tree() (versiontools.hg_support.HgIntegration class method)hUtr auh]Nh^hhG]ubh)r }r (hLUhMj hNj hShhU}r (hΉhXpyhW]hX]hY]hZ]h[]hX classmethodrhjuh]Nh^hhG]r(h)r}r(hLX+HgIntegration.from_source_tree(source_tree)hMj hNhhShhU}r(hW]rhahhOXversiontools.hg_supportrr}rbhX]hY]hZ]h[]r hahXHgIntegration.from_source_treehj huh]Nh^hhG]r (h)r }r (hLjhMjhNhhShhU}r (hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsX classmethod rr}r(hLUhMj ubaubh)r}r(hLXfrom_source_treehMjhNhhShhU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rhsXfrom_source_treerr}r(hLUhMjubaubjm)r}r(hLUhMjhNhhSjphU}r(hY]hZ]hX]hW]h[]uh]Nh^hhG]rjs)r}r(hLX source_treehU}r(hY]hZ]hX]hW]h[]uhMjhG]r hsX source_treer!r"}r#(hLUhMjubahSj{ubaubeubj)r$}r%(hLUhMj hNhhSjhU}r&(hY]hZ]hX]hW]h[]uh]Nh^hhG]r'h)r(}r)(hLXInitialize :class:`~versiontools.hg_support.HgIntegration` by pointing at the source tree. Any file or directory inside the source tree may be used.hMj$hNj hShhU}r*(hY]hZ]hX]hW]h[]uh]Kh^hhG]r+(hsX Initialize r,r-}r.(hLX Initialize hMj(ubj)r/}r0(hLX/:class:`~versiontools.hg_support.HgIntegration`r1hMj(hNNhSjhU}r2(UreftypeXclassjjX%versiontools.hg_support.HgIntegrationU refdomainXpyr3hW]hX]U refexplicithY]hZ]h[]jj j!j j"Xversiontools.hg_supportr4uh]NhG]r5h)r6}r7(hLj1hU}r8(hY]hZ]r9(j)j3Xpy-classr:ehX]hW]h[]uhMj/hG]r;hsX HgIntegrationr<r=}r>(hLUhMj6ubahShubaubhsX[ by pointing at the source tree. Any file or directory inside the source tree may be used.r?r@}rA(hLX[ by pointing at the source tree. Any file or directory inside the source tree may be used.hMj(ubeubaubeubhw)rB}rC(hLUhMj hNXA:docstring of versiontools.hg_support.HgIntegration.revnorDhSh{hU}rE(hW]hX]hY]hZ]h[]Uentries]rF(h~X7revno (versiontools.hg_support.HgIntegration attribute)hUtrGauh]Nh^hhG]ubh)rH}rI(hLUhMj hNjDhShhU}rJ(hΉhXpyhW]hX]hY]hZ]h[]hX attributerKhjKuh]Nh^hhG]rL(h)rM}rN(hLXHgIntegration.revnorOhMjHhNhhShhU}rP(hW]rQhahhOXversiontools.hg_supportrRrS}rTbhX]hY]hZ]h[]rUhahXHgIntegration.revnohj huh]Nh^hhG]rVh)rW}rX(hLXrevnohMjMhNhhShhU}rY(hY]hZ]hX]hW]h[]uh]Nh^hhG]rZhsXrevnor[r\}r](hLUhMjWubaubaubj)r^}r_(hLUhMjHhNhhSjhU}r`(hY]hZ]hX]hW]h[]uh]Nh^hhG]rah)rb}rc(hLXRevision number of the branchrdhMj^hNjDhShhU}re(hY]hZ]hX]hW]h[]uh]Kh^hhG]rfhsXRevision number of the branchrgrh}ri(hLjdhMjbubaubaubeubeubeubeubeubehLUU transformerrjNU footnote_refsrk}rlUrefnamesrm}rnUsymbol_footnotesro]rpUautofootnote_refsrq]rrUsymbol_footnote_refsrs]rtU citationsru]rvh^hU current_linerwNUtransform_messagesrx]ry(cdocutils.nodes system_message rz)r{}r|(hLUhU}r}(hY]UlevelKhW]hX]UsourcehQhZ]h[]UlineKUtypeUINFOr~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMj{hG]rhsX4Hyperlink target "code-reference" is not referenced.rr}r(hLUhMjubahShubahSUsystem_messagerubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcejhZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX-Hyperlink target "index-0" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcehzhZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXJHyperlink target "module-versiontools.setuptools_hooks" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcehzhZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXNHyperlink target "module-versiontools.versiontools_support" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcehzhZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXEHyperlink target "module-versiontools.bzr_support" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]Usourcej hZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX)Hyperlink target "bzr" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcehzhZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXEHyperlink target "module-versiontools.git_support" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]Usourcej hZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX)Hyperlink target "git" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcehzhZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsXDHyperlink target "module-versiontools.hg_support" is not referenced.rr}r(hLUhMjubahShubahSjubjz)r}r(hLUhU}r(hY]UlevelKhW]hX]UsourcejJ hZ]h[]UlineKUtypej~uhG]rh)r}r(hLUhU}r(hY]hZ]hX]hW]h[]uhMjhG]rhsX(Hyperlink target "hg" is not referenced.rr}r(hLUhMjubahShubahSjubeUreporterrNUid_startrKU autofootnotesr]rU citation_refsr}rUindirect_targetsr]rUsettingsr(cdocutils.frontend Values ror}r(Ufootnote_backlinksrKUrecord_dependenciesrNU rfc_base_urlrUhttp://tools.ietf.org/html/rU tracebackrUpep_referencesrNUstrip_commentsrNU toc_backlinksrjU language_coderUenrU datestamprNU report_levelrKU _destinationrNU halt_levelrKU strip_classesrNhpNUerror_encoding_error_handlerrUbackslashreplacerUdebugrNUembed_stylesheetr Uoutput_encoding_error_handlerr Ustrictr U sectnum_xformr KUdump_transformsr NU docinfo_xformrKUwarning_streamrNUpep_file_url_templaterUpep-%04drUexit_status_levelrKUconfigrNUstrict_visitorrNUcloak_email_addressesrUtrim_footnote_reference_spacerUenvrNUdump_pseudo_xmlrNUexpose_internalsrNUsectsubtitle_xformrU source_linkrNUrfc_referencesrNUoutput_encodingrUutf-8rU source_urlrNUinput_encodingr U utf-8-sigr!U_disable_configr"NU id_prefixr#UU tab_widthr$KUerror_encodingr%UUTF-8r&U_sourcer'UF/var/build/user_builds/versiontools/checkouts/latest/doc/reference.rstr(Ugettext_compactr)U generatorr*NUdump_internalsr+NU smart_quotesr,U pep_base_urlr-Uhttp://www.python.org/dev/peps/r.Usyntax_highlightr/Ulongr0Uinput_encoding_error_handlerr1j Uauto_id_prefixr2Uidr3Udoctitle_xformr4Ustrip_elements_with_classesr5NU _config_filesr6]Ufile_insertion_enabledr7KU raw_enabledr8KU dump_settingsr9NubUsymbol_footnote_startr:KUidsr;}r<(hjOhj h>j h jN hFj h jJ h jZj j h jY hjhjMhj hjUh;h`hj hghI)r=}r>(hLUhMh`hNhzhShThU}r?(hY]hW]r@hgahX]UismodhZ]h[]uh]Kh^hhG]ubjjh=hhCjL hjhj h&j, hj j j hjhj h:h`hj hhj j hjjB j> hj hz(BpipPc |IENDB`PKi=#Dkl\\(versiontools-latest/_static/pygments.css.highlight .hll { background-color: #ffffcc } .highlight { background: #eeffcc; } .highlight .c { color: #408090; font-style: italic } /* Comment */ .highlight .err { border: 1px solid #FF0000 } /* Error */ .highlight .k { color: #007020; font-weight: bold } /* Keyword */ .highlight .o { color: #666666 } /* Operator */ .highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ .highlight .cp { color: #007020 } /* Comment.Preproc */ .highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ .highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #A00000 } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #FF0000 } /* Generic.Error */ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight .gi { color: #00A000 } /* Generic.Inserted */ .highlight .go { color: #333333 } /* Generic.Output */ .highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .highlight .gt { color: #0044DD } /* Generic.Traceback */ .highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #007020 } /* Keyword.Pseudo */ .highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #902000 } /* Keyword.Type */ .highlight .m { color: #208050 } /* Literal.Number */ .highlight .s { color: #4070a0 } /* Literal.String */ .highlight .na { color: #4070a0 } /* Name.Attribute */ .highlight .nb { color: #007020 } /* Name.Builtin */ .highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ .highlight .no { color: #60add5 } /* Name.Constant */ .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ .highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ .highlight .ne { color: #007020 } /* Name.Exception */ .highlight .nf { color: #06287e } /* Name.Function */ .highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ .highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ .highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #bb60d5 } /* Name.Variable */ .highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mf { color: #208050 } /* Literal.Number.Float */ .highlight .mh { color: #208050 } /* Literal.Number.Hex */ .highlight .mi { color: #208050 } /* Literal.Number.Integer */ .highlight .mo { color: #208050 } /* Literal.Number.Oct */ .highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ .highlight .sc { color: #4070a0 } /* Literal.String.Char */ .highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ .highlight .s2 { color: #4070a0 } /* Literal.String.Double */ .highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ .highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ .highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ .highlight .sx { color: #c65d09 } /* Literal.String.Other */ .highlight .sr { color: #235388 } /* Literal.String.Regex */ .highlight .s1 { color: #4070a0 } /* Literal.String.Single */ .highlight .ss { color: #517918 } /* Literal.String.Symbol */ .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ .highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ .highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ .highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ .highlight .il { color: #208050 } /* Literal.Number.Integer.Long */PK:#DDUkk"versiontools-latest/_static/up.pngPNG  IHDRasRGBbKGDC pHYs B(xtIME!.<̓EIDAT8͓NABP\EG{%<|xc  cr6@t;b$;3&)h1!﫳Hzz@=)p 3۵e2/ߴ ( %^ND^ }3H1DoǪISFұ?, G`{v^X[b]&HC3{:sO& ?,[eL#IENDB`PKBFCVR>>#versiontools-latest/_static/rtd.css/* * rtd.css * ~~~~~~~~~~~~~~~ * * Sphinx stylesheet -- sphinxdoc theme. Originally created by * Armin Ronacher for Werkzeug. * * Customized for ReadTheDocs by Eric Pierce & Eric Holscher * * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ /* RTD colors * light blue: #e8ecef * medium blue: #8ca1af * dark blue: #465158 * dark grey: #444444 * * white hover: #d1d9df; * medium blue hover: #697983; * green highlight: #8ecc4c * light blue (project bar): #e8ecef */ @import url("basic.css"); /* PAGE LAYOUT -------------------------------------------------------------- */ body { font: 100%/1.5 "ff-meta-web-pro-1","ff-meta-web-pro-2",Arial,"Helvetica Neue",sans-serif; text-align: center; color: black; background-color: #465158; padding: 0; margin: 0; } div.document { text-align: left; background-color: #e8ecef; } div.bodywrapper { background-color: #ffffff; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; margin: 0 0 0 16em; } div.body { margin: 0; padding: 0.5em 1.3em; min-width: 20em; } div.related { font-size: 1em; background-color: #465158; } div.documentwrapper { float: left; width: 100%; background-color: #e8ecef; } /* HEADINGS --------------------------------------------------------------- */ h1 { margin: 0; padding: 0.7em 0 0.3em 0; font-size: 1.5em; line-height: 1.15; color: #111; clear: both; } h2 { margin: 2em 0 0.2em 0; font-size: 1.35em; padding: 0; color: #465158; } h3 { margin: 1em 0 -0.3em 0; font-size: 1.2em; color: #6c818f; } div.body h1 a, div.body h2 a, div.body h3 a, div.body h4 a, div.body h5 a, div.body h6 a { color: black; } h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor { display: none; margin: 0 0 0 0.3em; padding: 0 0.2em 0 0.2em; color: #aaa !important; } h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor { display: inline; } h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover, h5 a.anchor:hover, h6 a.anchor:hover { color: #777; background-color: #eee; } /* LINKS ------------------------------------------------------------------ */ /* Normal links get a pseudo-underline */ a { color: #444; text-decoration: none; border-bottom: 1px solid #ccc; } /* Links in sidebar, TOC, index trees and tables have no underline */ .sphinxsidebar a, .toctree-wrapper a, .indextable a, #indices-and-tables a { color: #444; text-decoration: none; /* border-bottom: none; */ } /* Search box size */ div.sphinxsidebar #searchbox input[type="submit"] { width: 50px; } /* Most links get an underline-effect when hovered */ a:hover, div.toctree-wrapper a:hover, .indextable a:hover, #indices-and-tables a:hover { color: #111; text-decoration: none; border-bottom: 1px solid #111; } /* Footer links */ div.footer a { color: #86989B; text-decoration: none; border: none; } div.footer a:hover { color: #a6b8bb; text-decoration: underline; border: none; } /* Permalink anchor (subtle grey with a red hover) */ div.body a.headerlink { color: #ccc; font-size: 1em; margin-left: 6px; padding: 0 4px 0 4px; text-decoration: none; border: none; } div.body a.headerlink:hover { color: #c60f0f; border: none; } /* NAVIGATION BAR --------------------------------------------------------- */ div.related ul { height: 2.5em; } div.related ul li { margin: 0; padding: 0.65em 0; float: left; display: block; color: white; /* For the >> separators */ font-size: 0.8em; } div.related ul li.right { float: right; margin-right: 5px; color: transparent; /* Hide the | separators */ } /* "Breadcrumb" links in nav bar */ div.related ul li a { order: none; background-color: inherit; font-weight: bold; margin: 6px 0 6px 4px; line-height: 1.75em; color: #ffffff; padding: 0.4em 0.8em; border: none; border-radius: 3px; } /* previous / next / modules / index links look more like buttons */ div.related ul li.right a { margin: 0.375em 0; background-color: #697983; text-shadow: 0 1px rgba(0, 0, 0, 0.5); border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; } /* All navbar links light up as buttons when hovered */ div.related ul li a:hover { background-color: #8ca1af; color: #ffffff; text-decoration: none; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; } /* Take extra precautions for tt within links */ a tt, div.related ul li a tt { background: inherit !important; color: inherit !important; } /* SIDEBAR ---------------------------------------------------------------- */ div.sphinxsidebarwrapper { padding: 0; } div.sphinxsidebar { margin: 0; margin-left: -100%; float: left; top: 3em; left: 0; padding: 0 1em; width: 14em; font-size: 1em; text-align: left; background-color: #e8ecef; } div.sphinxsidebar img { max-width: 12em; } div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p.logo { margin: 1.2em 0 0.3em 0; font-size: 1em; padding: 0; color: #222222; font-family: "ff-meta-web-pro-1", "ff-meta-web-pro-2", "Arial", "Helvetica Neue", sans-serif; } div.sphinxsidebar h3 a { color: #444444; } div.sphinxsidebar ul, div.sphinxsidebar p { margin-top: 0; padding-left: 0; line-height: 130%; background-color: #e8ecef; } /* No bullets for nested lists, but a little extra indentation */ div.sphinxsidebar ul ul { list-style-type: none; margin-left: 1.5em; padding: 0; } /* A little top/bottom padding to prevent adjacent links' borders * from overlapping each other */ div.sphinxsidebar ul li { padding: 1px 0; } /* A little left-padding to make these align with the ULs */ div.sphinxsidebar p.topless { padding-left: 0 0 0 1em; } /* Make these into hidden one-liners */ div.sphinxsidebar ul li, div.sphinxsidebar p.topless { white-space: nowrap; overflow: hidden; } /* ...which become visible when hovered */ div.sphinxsidebar ul li:hover, div.sphinxsidebar p.topless:hover { overflow: visible; } /* Search text box and "Go" button */ #searchbox { margin-top: 2em; margin-bottom: 1em; background: #ddd; padding: 0.5em; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; } #searchbox h3 { margin-top: 0; } /* Make search box and button abut and have a border */ input, div.sphinxsidebar input { border: 1px solid #999; float: left; } /* Search textbox */ input[type="text"] { margin: 0; padding: 0 3px; height: 20px; width: 144px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-topleft: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-top-left-radius: 3px; -webkit-border-bottom-left-radius: 3px; } /* Search button */ input[type="submit"] { margin: 0 0 0 -1px; /* -1px prevents a double-border with textbox */ height: 22px; color: #444; background-color: #e8ecef; padding: 1px 4px; font-weight: bold; border-top-right-radius: 3px; border-bottom-right-radius: 3px; -moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; } input[type="submit"]:hover { color: #ffffff; background-color: #8ecc4c; } div.sphinxsidebar p.searchtip { clear: both; padding: 0.5em 0 0 0; background: #ddd; color: #666; font-size: 0.9em; } /* Sidebar links are unusual */ div.sphinxsidebar li a, div.sphinxsidebar p a { background: #e8ecef; /* In case links overlap main content */ border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border: 1px solid transparent; /* To prevent things jumping around on hover */ padding: 0 5px 0 5px; } div.sphinxsidebar li a:hover, div.sphinxsidebar p a:hover { color: #111; text-decoration: none; border: 1px solid #888; } div.sphinxsidebar p.logo a { border: 0; } /* Tweak any link appearing in a heading */ div.sphinxsidebar h3 a { } /* OTHER STUFF ------------------------------------------------------------ */ cite, code, tt { font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; font-size: 0.95em; letter-spacing: 0.01em; } tt { background-color: #f2f2f2; color: #444; } tt.descname, tt.descclassname, tt.xref { border: 0; } hr { border: 1px solid #abc; margin: 2em; } pre, #_fontwidthtest { font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; margin: 1em 2em; font-size: 0.95em; letter-spacing: 0.015em; line-height: 120%; padding: 0.5em; border: 1px solid #ccc; background-color: #eee; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; } pre a { color: inherit; text-decoration: underline; } td.linenos pre { margin: 1em 0em; } td.code pre { margin: 1em 0em; } div.quotebar { background-color: #f8f8f8; max-width: 250px; float: right; padding: 2px 7px; border: 1px solid #ccc; } div.topic { background-color: #f8f8f8; } table { border-collapse: collapse; margin: 0 -0.5em 0 -0.5em; } table td, table th { padding: 0.2em 0.5em 0.2em 0.5em; } /* ADMONITIONS AND WARNINGS ------------------------------------------------- */ /* Shared by admonitions, warnings and sidebars */ div.admonition, div.warning, div.sidebar { font-size: 0.9em; margin: 2em; padding: 0; /* border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; */ } div.admonition p, div.warning p, div.sidebar p { margin: 0.5em 1em 0.5em 1em; padding: 0; } div.admonition pre, div.warning pre, div.sidebar pre { margin: 0.4em 1em 0.4em 1em; } div.admonition p.admonition-title, div.warning p.admonition-title, div.sidebar p.sidebar-title { margin: 0; padding: 0.1em 0 0.1em 0.5em; color: white; font-weight: bold; font-size: 1.1em; text-shadow: 0 1px rgba(0, 0, 0, 0.5); } div.admonition ul, div.admonition ol, div.warning ul, div.warning ol, div.sidebar ul, div.sidebar ol { margin: 0.1em 0.5em 0.5em 3em; padding: 0; } /* Admonitions and sidebars only */ div.admonition, div.sidebar { border: 1px solid #609060; background-color: #e9ffe9; } div.admonition p.admonition-title, div.sidebar p.sidebar-title { background-color: #70A070; border-bottom: 1px solid #609060; } /* Warnings only */ div.warning { border: 1px solid #900000; background-color: #ffe9e9; } div.warning p.admonition-title { background-color: #b04040; border-bottom: 1px solid #900000; } /* Sidebars only */ div.sidebar { max-width: 30%; } div.versioninfo { margin: 1em 0 0 0; border: 1px solid #ccc; background-color: #DDEAF0; padding: 8px; line-height: 1.3em; font-size: 0.9em; } .viewcode-back { font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif; } div.viewcode-block:target { background-color: #f4debf; border-top: 1px solid #ac9; border-bottom: 1px solid #ac9; } dl { margin: 1em 0 2.5em 0; } dl dt { font-style: italic; } dl dd { color: rgb(68, 68, 68); font-size: 0.95em; } /* Highlight target when you click an internal link */ dt:target { background: #ffe080; } /* Don't highlight whole divs */ div.highlight { background: transparent; } /* But do highlight spans (so search results can be highlighted) */ span.highlight { background: #ffe080; } div.footer { background-color: #465158; color: #eeeeee; padding: 0 2em 2em 2em; clear: both; font-size: 0.8em; text-align: center; } p { margin: 0.8em 0 0.5em 0; } .section p img.math { margin: 0; } .section p img { margin: 1em 2em; } table.docutils td, table.docutils th { padding: 1px 8px 1px 5px; } /* MOBILE LAYOUT -------------------------------------------------------------- */ @media screen and (max-width: 600px) { h1, h2, h3, h4, h5 { position: relative; } ul { padding-left: 1.25em; } div.bodywrapper a.headerlink, #indices-and-tables h1 a { color: #e6e6e6; font-size: 80%; float: right; line-height: 1.8; position: absolute; right: -0.7em; visibility: inherit; } div.bodywrapper h1 a.headerlink, #indices-and-tables h1 a { line-height: 1.5; } pre { font-size: 0.7em; overflow: auto; word-wrap: break-word; white-space: pre-wrap; } div.related ul { height: 2.5em; padding: 0; text-align: left; } div.related ul li { clear: both; color: #465158; padding: 0.2em 0; } div.related ul li:last-child { border-bottom: 1px dotted #8ca1af; padding-bottom: 0.4em; margin-bottom: 1em; width: 100%; } div.related ul li a { color: #465158; padding-right: 0; } div.related ul li a:hover { background: inherit; color: inherit; } div.related ul li.right { clear: none; padding: 0.65em 0; margin-bottom: 0.5em; } div.related ul li.right a { color: #fff; padding-right: 0.8em; } div.related ul li.right a:hover { background-color: #8ca1af; } div.body { clear: both; min-width: 0; word-wrap: break-word; } div.bodywrapper { margin: 0 0 0 0; } div.sphinxsidebar { float: none; margin: 0; width: auto; } div.sphinxsidebar input[type="text"] { height: 2em; line-height: 2em; width: 70%; } div.sphinxsidebar input[type="submit"] { height: 2em; margin-left: 0.5em; width: 20%; } div.sphinxsidebar p.searchtip { background: inherit; margin-bottom: 1em; } div.sphinxsidebar ul li, div.sphinxsidebar p.topless { white-space: normal; } .bodywrapper img { display: block; margin-left: auto; margin-right: auto; max-width: 100%; } div.documentwrapper { float: none; } div.admonition, div.warning, pre, blockquote { margin-left: 0em; margin-right: 0em; } .body p img { margin: 0; } #searchbox { background: transparent; } .related:not(:first-child) li { display: none; } .related:not(:first-child) li.right { display: block; } div.footer { padding: 1em; } .rtd_doc_footer .rtd-badge { float: none; margin: 1em auto; position: static; } .rtd_doc_footer .rtd-badge.revsys-inline { margin-right: auto; margin-bottom: 2em; } table.indextable { display: block; width: auto; } .indextable tr { display: block; } .indextable td { display: block; padding: 0; width: auto !important; } .indextable td dt { margin: 1em 0; } ul.search { margin-left: 0.25em; } ul.search li div.context { font-size: 90%; line-height: 1.1; margin-bottom: 1; margin-left: 0; } } PK:#D2,~~!~!)versiontools-latest/_static/underscore.js// Underscore.js 0.5.5 // (c) 2009 Jeremy Ashkenas, DocumentCloud Inc. // Underscore is freely distributable under the terms of the MIT license. // Portions of Underscore are inspired by or borrowed from Prototype.js, // Oliver Steele's Functional, and John Resig's Micro-Templating. // For all details and documentation: // http://documentcloud.github.com/underscore/ (function(){var j=this,n=j._,i=function(a){this._wrapped=a},m=typeof StopIteration!=="undefined"?StopIteration:"__break__",b=j._=function(a){return new i(a)};if(typeof exports!=="undefined")exports._=b;var k=Array.prototype.slice,o=Array.prototype.unshift,p=Object.prototype.toString,q=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;b.VERSION="0.5.5";b.each=function(a,c,d){try{if(a.forEach)a.forEach(c,d);else if(b.isArray(a)||b.isArguments(a))for(var e=0,f=a.length;e=e.computed&&(e={value:f,computed:g})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);var e={computed:Infinity};b.each(a,function(f,g,h){g=c?c.call(d,f,g,h):f;gf?1:0}),"value")};b.sortedIndex=function(a,c,d){d=d||b.identity;for(var e=0,f=a.length;e>1;d(a[g])=0})})};b.zip=function(){for(var a=b.toArray(arguments),c=b.max(b.pluck(a,"length")),d=new Array(c),e=0;e0?f-c:c-f)>=0)return e;e[g++]=f}};b.bind=function(a,c){var d=b.rest(arguments,2);return function(){return a.apply(c||j,d.concat(b.toArray(arguments)))}};b.bindAll=function(a){var c=b.rest(arguments);if(c.length==0)c=b.functions(a);b.each(c,function(d){a[d]=b.bind(a[d],a)}); return a};b.delay=function(a,c){var d=b.rest(arguments,2);return setTimeout(function(){return a.apply(a,d)},c)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(b.rest(arguments)))};b.wrap=function(a,c){return function(){var d=[a].concat(b.toArray(arguments));return c.apply(c,d)}};b.compose=function(){var a=b.toArray(arguments);return function(){for(var c=b.toArray(arguments),d=a.length-1;d>=0;d--)c=[a[d].apply(this,c)];return c[0]}};b.keys=function(a){if(b.isArray(a))return b.range(0,a.length); var c=[];for(var d in a)q.call(a,d)&&c.push(d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=function(a){return b.select(b.keys(a),function(c){return b.isFunction(a[c])}).sort()};b.extend=function(a,c){for(var d in c)a[d]=c[d];return a};b.clone=function(a){if(b.isArray(a))return a.slice(0);return b.extend({},a)};b.tap=function(a,c){c(a);return a};b.isEqual=function(a,c){if(a===c)return true;var d=typeof a;if(d!=typeof c)return false;if(a==c)return true;if(!a&&c||a&&!c)return false; if(a.isEqual)return a.isEqual(c);if(b.isDate(a)&&b.isDate(c))return a.getTime()===c.getTime();if(b.isNaN(a)&&b.isNaN(c))return true;if(b.isRegExp(a)&&b.isRegExp(c))return a.source===c.source&&a.global===c.global&&a.ignoreCase===c.ignoreCase&&a.multiline===c.multiline;if(d!=="object")return false;if(a.length&&a.length!==c.length)return false;d=b.keys(a);var e=b.keys(c);if(d.length!=e.length)return false;for(var f in a)if(!b.isEqual(a[f],c[f]))return false;return true};b.isEmpty=function(a){return b.keys(a).length== 0};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=function(a){return!!(a&&a.concat&&a.unshift)};b.isArguments=function(a){return a&&b.isNumber(a.length)&&!b.isArray(a)&&!r.call(a,"length")};b.isFunction=function(a){return!!(a&&a.constructor&&a.call&&a.apply)};b.isString=function(a){return!!(a===""||a&&a.charCodeAt&&a.substr)};b.isNumber=function(a){return p.call(a)==="[object Number]"};b.isDate=function(a){return!!(a&&a.getTimezoneOffset&&a.setUTCFullYear)};b.isRegExp=function(a){return!!(a&& a.test&&a.exec&&(a.ignoreCase||a.ignoreCase===false))};b.isNaN=function(a){return b.isNumber(a)&&isNaN(a)};b.isNull=function(a){return a===null};b.isUndefined=function(a){return typeof a=="undefined"};b.noConflict=function(){j._=n;return this};b.identity=function(a){return a};b.breakLoop=function(){throw m;};var s=0;b.uniqueId=function(a){var c=s++;return a?a+c:c};b.template=function(a,c){a=new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+a.replace(/[\r\t\n]/g, " ").replace(/'(?=[^%]*%>)/g,"\t").split("'").join("\\'").split("\t").join("'").replace(/<%=(.+?)%>/g,"',$1,'").split("<%").join("');").split("%>").join("p.push('")+"');}return p.join('');");return c?a(c):a};b.forEach=b.each;b.foldl=b.inject=b.reduce;b.foldr=b.reduceRight;b.filter=b.select;b.every=b.all;b.some=b.any;b.head=b.first;b.tail=b.rest;b.methods=b.functions;var l=function(a,c){return c?b(a).chain():a};b.each(b.functions(b),function(a){var c=b[a];i.prototype[a]=function(){var d=b.toArray(arguments); o.call(d,this._wrapped);return l(c.apply(b,d),this._chain)}});b.each(["pop","push","reverse","shift","sort","splice","unshift"],function(a){var c=Array.prototype[a];i.prototype[a]=function(){c.apply(this._wrapped,arguments);return l(this._wrapped,this._chain)}});b.each(["concat","join","slice"],function(a){var c=Array.prototype[a];i.prototype[a]=function(){return l(c.apply(this._wrapped,arguments),this._chain)}});i.prototype.chain=function(){this._chain=true;return this};i.prototype.value=function(){return this._wrapped}})(); PKi=#Dq.versiontools-latest/_static/readthedocs-ext.js // Intenionally left blank PK:#D<>+versiontools-latest/_static/ajax-loader.gifGIF89aU|NU|l!Created with ajaxload.info! ! NETSCAPE2.0,30Ikc:Nf E1º.`q-[9ݦ9 JkH! ,4N!  DqBQT`1 `LE[|ua C%$*! ,62#+AȐ̔V/cNIBap ̳ƨ+Y2d! ,3b%+2V_ ! 1DaFbR]=08,Ȥr9L! ,2r'+JdL &v`\bThYB)@<&,ȤR! ,3 9tڞ0!.BW1  sa50 m)J! ,2 ٜU]qp`a4AF0` @1Α! ,20IeBԜ) q10ʰPaVڥ ub[;PK:#DPu u 'versiontools-latest/_static/comment.pngPNG  IHDRa OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-bKGD pHYs  tIME 1;VIDAT8ukU?sg4h`G1 RQܸp%Bn"bЍXJ .4V iZ##T;m!4bP~7r>ιbwc;m;oӍAΆ ζZ^/|s{;yR=9(rtVoG1w#_ө{*E&!(LVuoᲵ‘D PG4 :&~*ݳreu: S-,U^E&JY[P!RB ŖޞʖR@_ȐdBfNvHf"2T]R j'B1ddAak/DIJD D2H&L`&L $Ex,6|~_\P $MH`I=@Z||ttvgcЕWTZ'3rje"ܵx9W> mb|byfFRx{w%DZC$wdցHmWnta(M<~;9]C/_;Տ#}o`zSڷ_>:;x컓?yݩ|}~wam-/7=0S5RP"*֯ IENDB`PK:#Dhkk$versiontools-latest/_static/down.pngPNG  IHDRasRGBbKGDC pHYs B(xtIME"U{IDAT8ҡNCAJ, ++@4>/U^,~T&3M^^^PM6ٹs*RJa)eG*W<"F Fg78G>q OIp:sAj5GنyD^+yU:p_%G@D|aOs(yM,"msx:.b@D|`Vٟ۲иeKſ/G!IENDB`PK:#D+0$versiontools-latest/_static/file.pngPNG  IHDRabKGD pHYs  tIME  )TIDAT8˭J@Ir('[ "&xYZ X0!i|_@tD] #xjv YNaEi(əy@D&`6PZk$)5%"z.NA#Aba`Vs_3c,2mj [klvy|!Iմy;v "߮a?A7`c^nk?Bg}TЙD# "RD1yER*6MJ3K_Ut8F~IENDB`PK:#D[{gtt*versiontools-latest/_static/up-pressed.pngPNG  IHDRasRGBbKGDC pHYs B(xtIME ,ZeIDAT8͓jA*WKk-,By@- و/`cXYh!6jf GrOlXvvfk2!p!GOOԲ &zf 6|M~%`]* ΛM]K ZĆ1Er%ȶcm1`= 0 && !jQuery(node.parentNode).hasClass(className)) { var span = document.createElement("span"); span.className = className; span.appendChild(document.createTextNode(val.substr(pos, text.length))); node.parentNode.insertBefore(span, node.parentNode.insertBefore( document.createTextNode(val.substr(pos + text.length)), node.nextSibling)); node.nodeValue = val.substr(0, pos); } } else if (!jQuery(node).is("button, select, textarea")) { jQuery.each(node.childNodes, function() { highlight(this); }); } } return this.each(function() { highlight(this); }); }; /** * Small JavaScript module for the documentation. */ var Documentation = { init : function() { this.fixFirefoxAnchorBug(); this.highlightSearchWords(); this.initIndexTable(); }, /** * i18n support */ TRANSLATIONS : {}, PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, LOCALE : 'unknown', // gettext and ngettext don't access this so that the functions // can safely bound to a different name (_ = Documentation.gettext) gettext : function(string) { var translated = Documentation.TRANSLATIONS[string]; if (typeof translated == 'undefined') return string; return (typeof translated == 'string') ? translated : translated[0]; }, ngettext : function(singular, plural, n) { var translated = Documentation.TRANSLATIONS[singular]; if (typeof translated == 'undefined') return (n == 1) ? singular : plural; return translated[Documentation.PLURALEXPR(n)]; }, addTranslations : function(catalog) { for (var key in catalog.messages) this.TRANSLATIONS[key] = catalog.messages[key]; this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); this.LOCALE = catalog.locale; }, /** * add context elements like header anchor links */ addContextElements : function() { $('div[id] > :header:first').each(function() { $('\u00B6'). attr('href', '#' + this.id). attr('title', _('Permalink to this headline')). appendTo(this); }); $('dt[id]').each(function() { $('\u00B6'). attr('href', '#' + this.id). attr('title', _('Permalink to this definition')). appendTo(this); }); }, /** * workaround a firefox stupidity */ fixFirefoxAnchorBug : function() { if (document.location.hash && $.browser.mozilla) window.setTimeout(function() { document.location.href += ''; }, 10); }, /** * highlight the search words provided in the url in the text */ highlightSearchWords : function() { var params = $.getQueryParameters(); var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; if (terms.length) { var body = $('div.body'); window.setTimeout(function() { $.each(terms, function() { body.highlightText(this.toLowerCase(), 'highlighted'); }); }, 10); $('') .appendTo($('#searchbox')); } }, /** * init the domain index toggle buttons */ initIndexTable : function() { var togglers = $('img.toggler').click(function() { var src = $(this).attr('src'); var idnum = $(this).attr('id').substr(7); $('tr.cg-' + idnum).toggle(); if (src.substr(-9) == 'minus.png') $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); else $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); }).css('display', ''); if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { togglers.click(); } }, /** * helper function to hide the search marks again */ hideSearchWords : function() { $('#searchbox .highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); }, /** * make the url absolute */ makeURL : function(relativeURL) { return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; }, /** * get the current relative url */ getCurrentURL : function() { var path = document.location.pathname; var parts = path.split(/\//); $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { if (this == '..') parts.pop(); }); var url = parts.join('/'); return path.substring(url.lastIndexOf('/') + 1, path.length - 1); } }; // quick alias for translations _ = Documentation.gettext; $(document).ready(function() { Documentation.init(); }); PKi=#D:>>>*versiontools-latest/_static/searchtools.js/* * searchtools.js_t * ~~~~~~~~~~~~~~~~ * * Sphinx JavaScript utilties for the full-text search. * * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ /** * helper function to return a node containing the * search summary for a given text. keywords is a list * of stemmed words, hlwords is the list of normal, unstemmed * words. the first one is used to find the occurance, the * latter for highlighting it. */ jQuery.makeSearchSummary = function(text, keywords, hlwords) { var textLower = text.toLowerCase(); var start = 0; $.each(keywords, function() { var i = textLower.indexOf(this.toLowerCase()); if (i > -1) start = i; }); start = Math.max(start - 120, 0); var excerpt = ((start > 0) ? '...' : '') + $.trim(text.substr(start, 240)) + ((start + 240 - text.length) ? '...' : ''); var rv = $('
').text(excerpt); $.each(hlwords, function() { rv = rv.highlightText(this, 'highlighted'); }); return rv; } /** * Porter Stemmer */ var Stemmer = function() { var step2list = { ational: 'ate', tional: 'tion', enci: 'ence', anci: 'ance', izer: 'ize', bli: 'ble', alli: 'al', entli: 'ent', eli: 'e', ousli: 'ous', ization: 'ize', ation: 'ate', ator: 'ate', alism: 'al', iveness: 'ive', fulness: 'ful', ousness: 'ous', aliti: 'al', iviti: 'ive', biliti: 'ble', logi: 'log' }; var step3list = { icate: 'ic', ative: '', alize: 'al', iciti: 'ic', ical: 'ic', ful: '', ness: '' }; var c = "[^aeiou]"; // consonant var v = "[aeiouy]"; // vowel var C = c + "[^aeiouy]*"; // consonant sequence var V = v + "[aeiou]*"; // vowel sequence var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 var s_v = "^(" + C + ")?" + v; // vowel in stem this.stemWord = function (w) { var stem; var suffix; var firstch; var origword = w; if (w.length < 3) return w; var re; var re2; var re3; var re4; firstch = w.substr(0,1); if (firstch == "y") w = firstch.toUpperCase() + w.substr(1); // Step 1a re = /^(.+?)(ss|i)es$/; re2 = /^(.+?)([^s])s$/; if (re.test(w)) w = w.replace(re,"$1$2"); else if (re2.test(w)) w = w.replace(re2,"$1$2"); // Step 1b re = /^(.+?)eed$/; re2 = /^(.+?)(ed|ing)$/; if (re.test(w)) { var fp = re.exec(w); re = new RegExp(mgr0); if (re.test(fp[1])) { re = /.$/; w = w.replace(re,""); } } else if (re2.test(w)) { var fp = re2.exec(w); stem = fp[1]; re2 = new RegExp(s_v); if (re2.test(stem)) { w = stem; re2 = /(at|bl|iz)$/; re3 = new RegExp("([^aeiouylsz])\\1$"); re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); if (re2.test(w)) w = w + "e"; else if (re3.test(w)) { re = /.$/; w = w.replace(re,""); } else if (re4.test(w)) w = w + "e"; } } // Step 1c re = /^(.+?)y$/; if (re.test(w)) { var fp = re.exec(w); stem = fp[1]; re = new RegExp(s_v); if (re.test(stem)) w = stem + "i"; } // Step 2 re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; if (re.test(w)) { var fp = re.exec(w); stem = fp[1]; suffix = fp[2]; re = new RegExp(mgr0); if (re.test(stem)) w = stem + step2list[suffix]; } // Step 3 re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; if (re.test(w)) { var fp = re.exec(w); stem = fp[1]; suffix = fp[2]; re = new RegExp(mgr0); if (re.test(stem)) w = stem + step3list[suffix]; } // Step 4 re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; re2 = /^(.+?)(s|t)(ion)$/; if (re.test(w)) { var fp = re.exec(w); stem = fp[1]; re = new RegExp(mgr1); if (re.test(stem)) w = stem; } else if (re2.test(w)) { var fp = re2.exec(w); stem = fp[1] + fp[2]; re2 = new RegExp(mgr1); if (re2.test(stem)) w = stem; } // Step 5 re = /^(.+?)e$/; if (re.test(w)) { var fp = re.exec(w); stem = fp[1]; re = new RegExp(mgr1); re2 = new RegExp(meq1); re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) w = stem; } re = /ll$/; re2 = new RegExp(mgr1); if (re.test(w) && re2.test(w)) { re = /.$/; w = w.replace(re,""); } // and turn initial Y back to y if (firstch == "y") w = firstch.toLowerCase() + w.substr(1); return w; } } /** * Search Module */ var Search = { _index : null, _queued_query : null, _pulse_status : -1, init : function() { var params = $.getQueryParameters(); if (params.q) { var query = params.q[0]; $('input[name="q"]')[0].value = query; this.performSearch(query); } }, loadIndex : function(url) { $.ajax({type: "GET", url: url, data: null, success: null, dataType: "script", cache: true}); }, setIndex : function(index) { var q; this._index = index; if ((q = this._queued_query) !== null) { this._queued_query = null; Search.query(q); } }, hasIndex : function() { return this._index !== null; }, deferQuery : function(query) { this._queued_query = query; }, stopPulse : function() { this._pulse_status = 0; }, startPulse : function() { if (this._pulse_status >= 0) return; function pulse() { Search._pulse_status = (Search._pulse_status + 1) % 4; var dotString = ''; for (var i = 0; i < Search._pulse_status; i++) dotString += '.'; Search.dots.text(dotString); if (Search._pulse_status > -1) window.setTimeout(pulse, 500); }; pulse(); }, /** * perform a search for something */ performSearch : function(query) { // create the required interface elements this.out = $('#search-results'); this.title = $('

' + _('Searching') + '

').appendTo(this.out); this.dots = $('').appendTo(this.title); this.status = $('

').appendTo(this.out); this.output = $('