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.
...Index (Cheese Shop): A. Kuchling will ask Thomas Wouters about increasing the memory on ximinez, and getting another machine for PyPI. M. von Löwis reported that Thomas Wouters spoke with XS4ALL, who assigned us a contact and made a proposal for a hardware upgrade which the Infrastructure Committee shall discuss. Eventually, the board will probably need to vote to approve the upgrade. Status: done. Originally from April 2007, Section 9, New PSF Members: D. Goodger will contact the PSF members ...
...Index (Cheese Shop): A. Kuchling will ask Thomas Wouters about increasing the memory on ximinez, and getting another machine for PyPI. Status: carried forward. Originally from April 2007, Section 9, New PSF Members: D. Goodger will contact the PSF members not subscribed to the PSF-Members mailing list. Status: carried forward. 3.2 New in May These action items originated at the 15 May 2007 board meeting on IRC. Section 4, Frank Willison Award: D. Goodger will coordinate th...
...index: 333; //border-radius: 5px; } .goal-stat { width: 50%; //height: 30px; padding: 10px; float: left; text-align: center; margin: 0; color: #888; font-weight: bolder; @media only screen and (max-width : 640px) { width: 50%; text-align: center; } } .goal-number, .goal-label { display: block; } .goal-number { font-weight: bold; } #donate-cta { background: orange; border-radius: .5rem; padding: 1rem 1.5rem; color: white; margin-top: 1rem...
...indexes. String formatting (s % args) has a new formatting option, '%r', which acts like '%s' but inserts repr(arg) instead of str(arg). (Not yet in alpha 1.) Greg Ward's "distutils" package is included: this will make installing, building and distributing third party packages much simpler. There's now special syntax that you can use instead of the apply() function. f(*args, **kwds) is equivalent to apply(f, args, kwds). You can also use variations f(a1, a2, *args, **kwds) and you can...
...indexed by the instance's id()) Automatically wrap or trap all or certain methods for tracing for precondition and postcondition checking for synchronized methods for automatic value caching When an attribute is a parameterless function, call it on reference (to mimic it being an instance variable); same on assignment Instrumentation: see how many times various attributes are used Different semantics for __setattr__ and __getattr__ (e.g. disable them when the...
...Index (Cheese Shop): A. Kuchling will ask Thomas Wouters about increasing the memory on ximinez, and getting another machine for PyPI. Status: carried forward. Section 9, New PSF Members: D. Goodger will contact the PSF members not subscribed to the PSF-Members mailing list. Status: carried forward. 4 Frank Willison Award D. Goodger reported: I got a reply from O'Reilly. They just need a name from us, and Betsy Waliszewski will handle the certificate & the prize...
...Index and researching other options. Financial impacts aside, the PSF community did continue to grow in 2020! The PSF launched two new Work Groups! The first was the Funding Work Group whose mission is to help our community seek external grants for their own projects. The second, the Diversity and Inclusion Work Group, was launched to improve geographical diversity amongst the board and the PSF membership. Our memb...
...index].attr). However, if A is a mutable object, A may be modified in place. Thus, if A is a number or a string, A += B has the same effect as A = A+B (except A is only evaluated once); but if a is a list, A += B has the same effect as A.extend(B)! Classes and built-in object types can override the new operators in order to implement the in-place behavior; the not-in-place behavior is used automatically as a fallback when an object doesn't implement the in-place behavior. For class...
...index of the package. The import statement uses the following convention: if a package's __init__.py code defines a list named __all__, it is taken to be the list of module names that should be imported when from package import * is encountered. It is up to the package author to keep this list up-to-date when a new version of the package is released. Package authors may also decide not to support it, if they don't see a use for importing * from their package. For example, the file So...
...index access is giving us problems." In terms of having any issues surrounding his project, M. A. Lemburg reported no issues except that he just does not have enough time to devote to his Moving PyPI to Amazon CloudFront project. Lemburg also reported on future plans for the project: "Check to see whether a trigger based approach to S3 syncing wouldn't be easier to implement right from the start." 5.7 PyCon US Website D. Napoleone, PyCon US Website Project,...
...index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> >>> dir([]) ['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] Under the new proposal, the __methods__ attribute no longer exists: Python 2.2c1 (#803, Dec 13 2001, 23:06:05) [GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2 Type "copyright", "credits" or "license" for more information. >>> [].__methods__ Traceback (most recent cal...
...index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> >>> dir([]) ['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] Under the new proposal, the __methods__ attribute no longer exists: Python 2.2c1 (#803, Dec 13 2001, 23:06:05) [GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2 Type "copyright", "credits" or "license" for more information. >>> [].__methods__ Traceback (most recent call last): File "<stdin>", line 1, i...
...INDEX.html. The other, anthologize, was used to automatically generate the PostScript for the sixth edition of Linux from the Linux Documentation Project's archive of HOWTOs. Both programs are available at Metalab. Writing these programs left me progressively less satisfied with Perl. Larger project size seemed to magnify some of Perl's annoyances into serious, continuing problems. The syntax that had seemed merely eccentric at a hundred lines began to seem like a nigh-impenetrable hedge of thor...
...Index which is a repository that includes close to 7000 additional packages. The following represent just a small sample of what is available. NumPy is the fundamental package needed for scientific computing with Python. It contains: a powerful N-dimensional array object sophisticated broadcasting functions basic linear algebra functions basic Fourier transforms sophisticated random number capabilities tools for integrating Fortran code. tools for integrating C/C++ code. SciPy (pronounced &qu...
...indexed. In the worst case, the index may be a slice object, so these recomputed every day or month name each time they were indexed. This is much slower than necessary in the usual case, when the index is just an integer. In that case, only the single spelling needed is recomputed now; and, when the index is a slice object, only the spellings needed by the slice are recomputed now. Patch 1061679: Added __all__ to pickletools.py. Build Bug 1034277 / Patch 1035255: Remove compilation of co...
...index i doesn't actually reach 2**31. (Python uses regular ints for sequence and string indices; fixing that is much more work.) Two changes to from...import: "from M import X" now works even if (after loading module M) sys.modules['M'] is not a real module; it's basically a getattr() operation with AttributeError exceptions changed into ImportError. "from M import *" now looks for M.__all__ to decide which names to import; if M.__all__ doesn't exist, it uses M.__dict__.key...
...index list. Issue #1721812: Binary set operations and copy() returned the input type instead of the appropriate base type. This was incorrect because set subclasses would be created without their __init__() method being called. The corrected behavior brings sets into line with lists and dicts. Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to True, even when x doesn't compare equal to itself. This was a regression from 2.6. Issue #3705: Command-line arguments...
...index() now accepts optional start and stop arguments. Similar changes were made to UserList.index(). SF feature request 754014. SF patch 751998 fixes an unwanted side effect of the previous fix for SF bug 742860 (the next item). SF bug 742860: "WeakKeyDictionary __delitem__ uses iterkeys". This wasn't threadsafe, was very inefficient (expected time O(len(dict)) instead of O(1)), and could raise a spurious RuntimeError if another thread mutated the dict during __delitem__, or if a co...
If you didn't find what you need, try your search in the Python language documentation.