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]), but overall this was a big hit with those users who were already used to augmented assignment in other languages. Less warm was the welcome for the extended print statement: print>>file, a shortcut for printing to a different file object than standard output. Personally, it's the Python 2.0 feature I use most frequently, but most people who opened their mouth about found it an abomination. The discussion thread on the newsgroup berating this simple language extension w...
...Index, mentored and recruited contributors to Zulip, helped journalists open-source their code, and more. Right now I'm leading pip's work replacing its dependency resolver, which is a game-changer for future work making Python packaging easier to deal with. People who care about Python invested in running that workshop, and it's paid off very well in my case. Investing in Python events, and the organization that supports them, is a good bet. Sumana Harihareswara, Changeset Consulting PyCon U...
...index: 333; //border-radius: 5px; } .goal-stat { width: 33%; //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...
...index: 333; //border-radius: 5px; } .goal-stat { width: 32%; //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; } We have surpassed our goal to raise $60,000 USD by December 31st! Thank you to everyone that ...
...Index May I use the PyPI logo? Isn't that logo dilutive of the Python logo since it changes the shape? The Python Package Index (PyPI) is maintained and governed by the Python Software Foundation. Therefore, the related and derived logo used for the project is an additional reserved trademark chosen for its thematic connection to the Python logo. Logo with wording Unadorned logo You may not use the PyPI logo for another software index websites, which could be confused with the offi...
...IndexPhrase (DocBook.Rules.Phrase): "italic indexible text phrase" TITLE = DocBook.Rules.Phrase def __init__ (self, text): DocBook.Rules.Phrase.__init__ (self, 'xe', 'italic') self.data = [ text ] class NameCell (DocBook.Rules.Entry): "table row cell describing name of identifier (italic and indexible text!)" TITLE = DocBook.Rules.Entry def __init__ (self, text): DocBook.Rules.Entry.__init__ (sel...
...index, item). This solves the old "for i in range(len(seq))" problem more elegantly. (PEP 279) basestring - an abstract string type which is the base class for str (8-bit strings) and unicode. Primarily used to simplify tests for string-ness to isinstance(x, basestring). bool, True, False - these were introduced as ints in Python 2.2.1, but are now a separate type (a subtype of int). This means that True and False are now printed as the strings 'True' and 'False', respectively. As...
...Index. Supports CPython directly through the CPython Developer in Residence Holds and defends the copyright and other intellectual property rights for the Python programming language. Provides infrastructure and operations support to 13 regional conferences, meetups, and Python projects as a fiscal sponsor. Recognizes individuals who have contributed to the Python community with Community Awards. To learn about recent PSF activities, visit the Python Software Fo...
...Index (PyPI) that hosts thousands of third-party modules for Python. The PSF was just awarded $170,000 grant from Mozilla Open Source Program to improve the sustainability of PyPI. The Community Service Awards for 2017 were given to 6 individuals who have contributed to the scientific Python community, iPython, JuPyter, pandas, twisted, and Python 3, in addition to those who organized and chaired Python events. The 2017 Distinguished Service Award (the Foundation's highest award) was giv...
...indexLabel}", indexLabel: "#percent%", percentFormatString: "#0.##", toolTipContent: "{y}%", dataPoints: [ { y: 59.8, indexLabel: "Python Conference Grants " }, { y: 10.7, indexLabel: "Python Sprints" }, { y: 7.7, indexLabel: "Workshops" }, { y: 5.2, indexLabel: "Django Girls Workshops" }, { y: 5.2, indexLabel: "Training" }, { y: 2.8, indexLabel: "Meetup Subscription Costs" }, { y: 2.1, indexLabel: "Ambass...
...indexing done." M. von Löwis: "I think we should ask the members whether they think that a "Miro community" is something useful to have." Further discussion deferred to the PSF members email list. 9 PSF Members Meeting at PyCon 2010 Further preparations are being made by the board for the PSF members meeting to be held at PyCon 2010. All nominations and deadlines will be listed on the wiki page. 10 IRC Policy B. Cannon initiated a d...
...Index (PyPI), awarding grants to Python initiatives worldwide, maintaining critical community infrastructure, and more. To build the future of Python and sustain the thriving community that its users deserve, we need your help. By backing the PSF, you’re investing in Python’s growth and health, and your contributions directly impact the language's future. Is your community, work, or hobby powered by Python? Join this year’s drive and power Python’s future with us by donating or becoming a Sup...
...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=-1) so that list.pop() complements list.append(x) and list.pop(i) list.insert(i, x)] > OTOH, anyone can kill the idea instantly just by proposing a > generalization to list.pop(lo:hi) <0.5 wink>. [David Ascher] > [suggests] list.pop(lo:hi:stride). > And I propose an extension to the indexing notation in general > -- if a callable is sent in as either lo, hi or stride, that > callable is called with either (lo,hi,stride), (hi,lo,stride) or > (stride,lo,hi) de...
...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 contacted Thomas Wouters, and he will talk to XS4ALL this week. Status: in progress. 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. Originally from May 2007, Section 4, Frank Willison Award: D. Goodger will set up a page on www....
...indexing operation is sufficient. The relative speed of f4() compared to f1() and f3() suggests that both reasons why f3() is faster contribute, but that the first reason (fewer lookups) is a bit more important. (To get more precise data on this, we would have to instrument the interpreter.) Still, our best version, f3(), was only twice as fast as the most straightforward version, f1(). Could we do better? I was worried that the quadratic behavior of the algorithm was killing ...
...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. Originally from May 2007, Section 4, Frank Willison Award: D. Goodger will coordinate the selection of the 2007 recipient of the Frank Willison Award. See Frank Willison...
...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. Originally from May 2007, Section 4, Frank Willison Award: D. Goodger will coordinate the selection of the 2007 recipient of the Frank Willison Award. Status: done. Ori...
...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 yo...
...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 to confirm the ximinez memory increase with Thomas Wouters and XS4ALL. Status: in progress. 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. Originally from May 2007, Section 4, Frank Willison Award: D. Goodger will set up a page ...
If you didn't find what you need, try your search in the Python language documentation.