Notice: While JavaScript is not essential for this website, your interaction with the content will be limited. Please turn JavaScript on for the full experience.
...classes are more accessible and less dangerous. Terminology-wise, a metaclass is simply "the class of a class". Any class whose instances are themselves classes, is a metaclass. When we talk about an instance that's not a class, the instance's metaclass is the class of its class: by definition, x's metaclass is x.__class__.__class__. But when we talk about a class C, we often refer to its metaclass when we mean C.__class__ (not C.__class__.__class__, which would be a meta-metaclass; th...
...centered on PyCon 2010 Registration Status. It was provided to Board members by K. Kaiser prior to the Board meeting. In addition, K. Kaiser provided a summary of the current treasurer's activities. Excerpt from summary: "I'm currently processing refunds totalling about $5,000. There may be a few more that I haven't heard about as yet." 11 Progress Report Board members have continued to discuss the current state of the members' meeting election for 2010 and are makin...
...center in Santa Clara. Currently, we have paid a ~39K deposit for the 2012 convention and on 12/1/2011 we must pay a deposit of 38,667 for the 2013 conference. These deposits are, while unfortunate in the short term, provide a long term benefit - quoting Van Lindberg (who constructed these contracts in conjunction with CTE guidance): "A little bit of background - this is a case of spend money to save money. Right now there is still quite a bit of depression in the hotel/convention market - ...
...center and the hotels) the accrued expense and revenue will move to the P&L and our assets and liabilities will return to normal levels. He reported on the revenue and expense below: Revenue: In the month of February, YTD income was up by 87K, primarily due to invoicing our PSF Sponsors for 2012 dues. Total equity rose to 476K. Donations for the month were $1811. Expense: Outside Services: Wendroff 1,150 The treasurer goes on to say: AR is up by 6K due to P...
...center staff. 4. Activate the Program Committee - I am pushing hard to get the volunteers and staff activated and engaged. 5. Management of the program guide has been passed off to Yannick, Ewa, Van and Doug N. 6. We have announced the first keynote speaker: Paul Graham of Y Combinator, as well as the first Plenary speaker - David Beazley. Both announcements have generated an amazing amount of buzz and positive energy for the conference. http://pycon.blogspot.com/2011/09/announcing-first-pycon-2...
...center: all in one place, most people will stay there. It's more expensive than the Crowne ($135/night vs. $109 at the Crowne). We still have an obligation for rooms at Crowne, which is still the budget option. Also catering: we'll have one reception there, which will cover the $65K obligation. The bottom line is that we'll need some growth to meet the room obligation. There are two contracts to sign: RESOLVED, that the PyCon Chairman be authorized to sign the necessary contracts for PyCon 2...
...Class Renamed RESOLVED, that the "honorary associate member" membership class, created by Board resolution on 2010-06-21, be renamed to "associate member". Approved, 10-0-1. RESOLVED, that the Associate Member [membership] class shall be added to the Bylaws as described in the board resolution of June 2010, defining the Associate Member [membership] class as per-term membership with no voting rights. Approved, 10-0-1. 9 Membership Application for Hood Med...
...class of members (if the members are divided into classes), one third (1/3) of such class of members, represented in person or represented by proxy, shall constitute a quorum for the transaction of such item of business by that class of members. If a quorum is present, the affirmative vote of a majority of the members represented at the meeting and entitled to vote on the subject matter shall be the act of the members, unless the vote of a greater number or voting by class is required by the Gen...
...center. 8.6 PyCon Electrical Nothing to report for Jan 8.7 PyCon Exhibit Hall Draft of the expo hall layout has been sent to all the sponsors. The final layout should be finished this week. Need to work on signage for Start up Row 8.8 PyCon Financial Aid Emails, emails, emails Answering many financial aid emails regarding housing and how certain funds will be applied for people. There seem to be many special cases where funds have to...
...center and the hotels, including room commissions) the accrued expense and revenue will move to the P&L and our assets and liabilities will return to normal levels. He reported on the revenue and expense below: Revenue: In the month of March, YTD income was down by 14K, primarily due to payroll and Python Brochure expense. Total equity declined to 462K. Donations for the month were $5026. Expense: Outside Services: Wendroff 1,150 Evenios: Python Brochure ...
...class, fromdict): # Initialize a class object of given type from a conformant dictionary. class_sig = toclass.__dict__.keys(); class_sig.sort() dict_keys = fromdict.keys(); dict_keys.sort() common = intersect(class_sig, dict_keys) if 'typemap' in class_sig: class_sig.remove('typemap') if tuple(class_sig) != tuple(dict_keys): print "Conformability error" # print "Class signature: " + `class_sig` # print "Dictionary keys: &qu...
...class that contains a method for each rule. This allows to create a new parser state for each parse process. It also gives easy access to additional functions: In the XPath parser, I have defined a subclass of the generated parser class: class MyXPath(XPath): ... UNION = pyxpath.UNION_OPERATOR ... def nop(self, operator, left, right): return self.factory.createNumericOperator(operator, left, right) This class can ...
...classes of string can no longer be interned. The semantics of interning were not clear here -- a subclass could be mutable, for example -- and had bugs. Explicitly interning a subclass of string via intern() will raise a TypeError. Internal operations that attempt to intern a string subclass will have no effect. Bug 1003935: xrange() could report bogus OverflowErrors. Documented what xrange() intends, and repaired tests accordingly. Extension modules difflib now supports HTML side-by-si...
...class" functions and classes pose significant challenges. We will also investigate program slicing [Tip] and program paths [Ball] as techniques to help users understand where to make changes and what impact those changes will have. Slicing is a well-known technique for identifying subsets of programs that affect a particular variable. Analysis via program paths shows the various possible execution paths through a body of code. Each technique has value for testing and debugging programs. T...
...class or variable. The import statement first tests whether the item is defined in the package; if not, it assumes it is a module and attempts to load it. If it fails to find it, ImportError is raised. Contrarily, when using syntax like import item.subitem.subsubitem, each item except for the last must be a package; the last item can be a module or a package but can't be a class or function or variable defined in the previous item. Importing * From a Package; the __all__ Attribut...
...class unification and new-style classes Multiple inheritance mixing new-style and classic classes in the list of base classes is now allowed, so this works now: class Classic: pass class Mixed(Classic, object): pass The MRO (method resolution order) for each base class is respected according to its kind, but the MRO for the derived class is computed using new-style MRO rules if any base class is a new-style class. This needs to be documented. The new builtin dictionary() constructor, and dic...
...classes for over 2000 women in Washington, DC. She teaches all the classes with the help of women who have previously taken the classes. She empowers hundreds of women to code with Python by lowering barriers to entry. More than just a class where women learn to build websites, Hear Me Code focuses on leadership development, peer mentoring, and turning students into teachers. Approved 8-0-0, December 2, 2016 RESOLVED, that the Python Software Foundation grant $430 USD to PyLadies Data Mining Wo...
If you didn't find what you need, try your search in the Python language documentation.