Python Software Developer / Rackspace / Blacksburg, VA
Updated: 2012-02-06 10:46:05
Save Forgot Password Register Here Resources Forums Blogs Submit Jobs PH Welcome to the Programmer's Heaven Jobs area Got a job available Post it here to reach 1 million visitors a month Jobs You Might Like Search Jobs Follow Job Alerts RSS Feeds Twitter Jobs Home Python Software Developer Python Software Developer Posted Feb 06 Rackspace Blacksburg , VA This employer requests that only candidates in United States apply to this job . You appear to be located in United Kingdom not United States Please be aware of this if you choose to apply for this job . Job Details Python Software Developer 14716 This details all the information about the job posting . To submit your résumé CV , click on the Submit your Résumé CV to this Job' . button Show Instructions Job TitlePython Software Developer

United States Communities Social Applications Oracle Mix Oracle Blogs Oracle Wiki Oracle on Facebook Oracle on Twitter Oracle on LinkedIn Oracle on Google+ Oracle on YouTube Networks Oracle ACEs Oracle PartnerNetwork Oracle Technology Network Knowledge Base Oracle User Groups Oracle Discussion Forums Support My Oracle Support Community I am a . Java Developer Database Admins and Developers System Admins and Developers Architect C-Level Executives Chief Financial Officer CFO Chief Information Officer CIO Other Roles Analyst Investor Job Seeker Partner Student Midsize Company I want to . Support Create or Update Service Request Search Support Knowledge Database Download Patches Education Find Oracle University Training Choose an Oracle Certification Path Partner Find a Partner Solution
Voidspace The website , technical blog and projects of Michael Foord Home Blog Book IronPython Python Projects Python Articles Contact Python Programming , news on the Voidspace Python Projects and all things . techie Front page All By Date All By Category RSS Feed 1233 Callable object with state using generators It's often convenient to create callable objects that maintain some kind of state . In Python we can do this with objects that implement the call__ method and store the state as instance attributes . Here's the canonical example with a : counter class Counter object def init__ self start self value start def call__ self value self value self value 1 return value counter Counter 0 counter 0 counter 1 counter 2 Generators can be seen as objects that implement the iteration protocol