summaryrefslogtreecommitdiffstats
path: root/Doc/faq
Commit message (Collapse)AuthorAgeFilesLines
* stop talking about svnBenjamin Peterson2016-05-271-4/+3
|
* remove cruft from Schwarzian transform sectionBenjamin Peterson2016-05-271-30/+1
|
* "Numeric Python" -> "NumPy"Benjamin Peterson2016-05-271-1/+1
|
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-103-33/+35
| | | | Original patch by James Edwards.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-076-15/+15
|
* Issue #25910: Fixed dead links in the docs.Serhiy Storchaka2016-04-111-1/+1
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-265-14/+14
| | | | to SilentGhost for the patch.
* actually link to the version attributes documentationBenjamin Peterson2015-10-121-2/+2
|
* don't mention Python 2.2 (closes #25375)Benjamin Peterson2015-10-111-2/+2
|
* Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-122-7/+7
| | | | Fixed the case of the "Ctrl-" prefixes.
* Issue #23406: Clarify documentation on multiplying a sequenceMartin Panter2015-09-071-0/+2
| | | | Patch from Matheus Vieira Portela.
* Issue #23589: Remove duplicate sentence from the FAQ. Patch by Yongzhi Pan.Robert Collins2015-07-291-4/+2
|
* Issue 24304: Fix broken license link in FAQ.Ned Deily2015-05-271-1/+1
|
* Issue #22155: Add File Handlers subsection with createfilehandler to TkinterTerry Jan Reedy2015-05-171-22/+3
| | | | doc. Remove obsolete example from FAQ. Patch by Martin Panter.
* Fixing broken links in doc, part 4: some more breaks and redirectsGeorg Brandl2014-10-295-7/+7
|
* Fixing broken links in doc, part 1: faq/Georg Brandl2014-10-297-33/+27
|
* Remove now-dead link to IDLE debugger doc and add PyCharm to the commercial ↵Georg Brandl2014-10-291-2/+2
| | | | IDEs.
* Update "where is python.org hosted" FAQ.Georg Brandl2014-10-291-4/+5
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-295-41/+41
|
* Closes #16155: fix a few errors in doctest output of the FAQ pages.Georg Brandl2014-10-063-6/+14
|
* Closes #10031: overhaul the "imports" section of the programming FAQ.Georg Brandl2014-10-061-15/+5
| | | | | | Remove the advice to never use relative imports. Remove the advice to locally import modules in __init__, it is a strange practice. Remove the advice to use "from ... import *" with some modules.
* #20135: FAQ entry for list mutation.R David Murray2014-09-291-1/+76
| | | | | | | | | This is a perennial question and something someone opens a ticket for probably every other month or so, so I'm surprised we didn't already have a FAQ entry for it. The original patch was written by M. Votz, refined first by Ezio Melotti and further refined by me.
* y2k compliance, lol (closes #22380)Benjamin Peterson2014-09-101-37/+0
|
* Issue #22320: Fix broken link in the General Python FAQ.Ned Deily2014-09-011-1/+2
| | | | Original patch by Josh Lynn.
* #18034: update FAQ to suggest importlib.import_module instead of __import__. ↵Ezio Melotti2014-08-041-12/+3
| | | | Patch by Wouter van Heyst.
* #20135: move FAQ about mutable default arguments to the programming FAQs page.Ezio Melotti2014-07-062-56/+56
|
* Closes #21759: URL Typo in Documentation FAQJesus Cea2014-06-161-1/+1
|
* Remove references to the obsolete Mac Carbon modules in the GUINed Deily2014-04-121-9/+5
| | | | section of the FAQ.
* send people to the right editors page (#20938)Benjamin Peterson2014-03-151-1/+2
|
* update sphinx urlBenjamin Peterson2014-01-251-2/+2
|
* linkifyBenjamin Peterson2014-01-251-3/+4
|
* update hosting faqBenjamin Peterson2014-01-251-3/+6
|
* Removed spaces before colons and semicolons.Serhiy Storchaka2013-12-242-2/+2
|
* Removed spaces before commas and periods.Serhiy Storchaka2013-12-231-1/+1
|
* Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-1/+2
|
* Closes #13203: add a FAQ section about seemingly duplicate id()s.Georg Brandl2013-10-121-0/+26
|
* Use "lambda expression" as preferred to "lambda form".Georg Brandl2013-10-061-5/+5
|
* Fix markup.Georg Brandl2013-10-061-1/+1
|
* #19074: mention PySide in the GUI FAQs.Ezio Melotti2013-10-051-7/+9
|
* Tweak programming faq examples so that it (mostly) passes doctest.R David Murray2013-06-191-18/+19
| | | | | | | | Back port of 0113247f894b from 3.3. The exceptions are the import related questions at the end, which need to be rewritten anyway, and a math example that doesn't exist in the 3.3+ docs that I didn't bother trying to fix.
* #18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev.Ezio Melotti2013-06-081-1/+1
|
* #17973: fix technical inaccuracy in faq entry (it now passes doctest).R David Murray2013-05-211-5/+8
|
* #17973: Add FAQ entry for ([],)[0] += [1] both extending and raising.R David Murray2013-05-201-0/+83
| | | | This has come up often enough now on the tracker that it deserves a FAQ entry.
* Closes #17726: small clarification in design FAQ.Georg Brandl2013-04-141-2/+2
|
* Backport rev. 3ae74b361f53 to 2.7 branch.Georg Brandl2013-03-286-6/+19
|\
| * Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-286-6/+19
| | | | | | | | otherwise are cut off or have overlapping text.
| * cleanup references to PyString_ APIs from 2.x in the 3.3 docs.Gregory P. Smith2013-03-221-6/+8
| |\
| | * Clean up references to the no longer existing PyString_ APIs in our docs.Gregory P. Smith2013-03-221-6/+8
| | |
| * | #16862: merge with 3.2.Ezio Melotti2013-01-051-6/+3
| |\ \ | | |/
| | * #16862: remove outdated statements about Stackless.Ezio Melotti2013-01-051-3/+0
| | |