summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Issue #18652: Add an itertools recipe for first_true()Raymond Hettinger2014-04-022-0/+29
| | |
* | | Documentation nit. List the traditional keyword-only argument first and the ↵Raymond Hettinger2014-04-021-2/+2
| | | | | | | | | | | | default last.
* | | Issue 21125: minor documentation tweak.Raymond Hettinger2014-04-021-1/+1
| | |
* | | update version changedBenjamin Peterson2014-04-011-3/+3
| | |
* | | merge 3.3 (#21082)Benjamin Peterson2014-04-014-34/+20
|\ \ \ | |/ /
| * | merge 3.2 (#21082)Benjamin Peterson2014-04-014-34/+20
| |\ \ | | |/
| | * remove directory mode check from makedirs (closes #21082)Benjamin Peterson2014-04-014-32/+20
| | |
* | | fix typoBenjamin Peterson2014-04-011-1/+1
| | |
* | | simplify check, since now there are only new-style classesBenjamin Peterson2014-04-011-5/+2
| | |
* | | Issue #15067: Port 2.7 sqlite3 docs to 3.4Zachary Ware2014-04-011-46/+51
| | |
* | | #16716: remove deprecation warningAndrew Svetlov2014-03-311-4/+0
| | |
* | | Get rid of deprecated IOError in the docAndrew Svetlov2014-03-315-12/+12
| | |
* | | IOError -> OSErrorAndrew Svetlov2014-03-311-1/+1
| | |
* | | Fix the doc: add deprecation warning in select module.Andrew Svetlov2014-03-311-1/+5
| | |
* | | Issue #21073: explain why Py_ReprEnter() allows for a missing thread state.Antoine Pitrou2014-03-311-0/+2
| | |
* | | use https docs urlBenjamin Peterson2014-03-311-2/+2
| | |
* | | merge 3.3 (#21115)Benjamin Peterson2014-03-311-2/+2
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2014-03-311-2/+2
| |\ \ | | |/
| | * use https docs url (#21115)Benjamin Peterson2014-03-311-2/+2
| | |
* | | Issue #20668: Remove tests.txt of test_asyncioVictor Stinner2014-03-311-14/+0
| | | | | | | | | | | | It's useless, tests are now discovered automatically.
* | | merge 3.3Benjamin Peterson2014-03-311-0/+1
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2014-03-311-0/+1
| |\ \ | | |/
| | * add Ian BeerBenjamin Peterson2014-03-311-0/+1
| | |
* | | merge 3.3Benjamin Peterson2014-03-301-19/+19
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2014-03-301-19/+19
| |\ \ | | |/
| | * fix expandtabs overflow detection to be consistent and not rely on signed ↵Benjamin Peterson2014-03-301-19/+19
| | | | | | | | | | | | overflow
* | | update notes to talk about -X showrefcountBenjamin Peterson2014-03-301-3/+5
| | |
* | | Add test case for freeze.Martin v. Löwis2014-03-303-0/+15
| | |
* | | Issue #16047: Fix module exception list and __file__ handling in freeze.Martin v. Löwis2014-03-304-4/+16
| | | | | | | | | | | | Patch by Meador Inge.
* | | make partialmethod example work (closes #21105)Benjamin Peterson2014-03-301-0/+2
| | |
* | | Issue #11824: Consider ABI tags in freeze. Patch by Meador Inge.Martin v. Löwis2014-03-302-4/+8
| | |
* | | Fix doc typo.Guido van Rossum2014-03-301-1/+1
| | |
* | | Issue #21097: Move test_namespace_pkgs into test_importlib.Eric Snow2014-03-2916-0/+2
| | |
* | | Minor readability improvement.Raymond Hettinger2014-03-291-1/+1
| | |
* | | Issue #21093: Prevent failures of ctypes test_macholib on OS X if aNed Deily2014-03-292-2/+8
| | | | | | | | | | | | copy of libz exists in $HOME/lib or /usr/local/lib.
* | | Issue #19697: document more __main__.__spec__ quirksNick Coghlan2014-03-291-2/+16
| | |
* | | Fix another old mention of "Standard Edition" VS in PCbuild/readme.txt.Zachary Ware2014-03-291-2/+1
| | | | | | | | | | | | | | | | | | Also removes a mention of using "Express Edition with the Windows SDK 64-bit compilers" to build 64-bit Python. If that can be made to work, it will need some extra instructions somewhere.
* | | Issue #19697: Document cases where __main__.__spec__ is None.Eric Snow2014-03-292-1/+43
| | |
* | | Issue 21014: Use booleans instead of 0 and 1 in examples.Raymond Hettinger2014-03-282-2/+2
| | |
* | | undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089)Benjamin Peterson2014-03-281-0/+1
| | |
* | | Doc: do not compress .epub for dist, it is already zipped.Georg Brandl2014-03-282-10/+4
| | |
* | | Issue #17654: Ensure IDLE menus are customized properly on OS X forNed Deily2014-03-2812-93/+129
| | | | | | | | | | | | non-framework builds and for all variants of Tk.
* | | Issue #6676: Ensure a meaningful exception is raised when attemptingNed Deily2014-03-274-2/+26
| | | | | | | | | | | | | | | | | | to parse more than one XML document per pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto and Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)
* | | inspect: Fix getcallargs() to fail correctly if more than 3 args are missing.Yury Selivanov2014-03-273-1/+10
| | | | | | | | | | | | Patch by Jeremiah Lowin. Closes #20817.
* | | inspect: Fix getcallargs() to raise correct TypeErrorYury Selivanov2014-03-273-1/+12
| | | | | | | | | | | | | | | ... for missing keyword-only arguments. Patch by Jeremiah Lowin. Closes #20816.
* | | asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668Yury Selivanov2014-03-272-12/+13
| | |
* | | Issue #21069: Temporarily use www.google.com while investigatingNed Deily2014-03-271-1/+1
| | | | | | | | | | | | test_urllibnet.test_fileno intermittent failures with www.example.com.
* | | Issue #20939: remove stray character from commentNed Deily2014-03-271-1/+1
| | |
* | | Issue #20939: Use www.example.com instead of www.python.org to avoid testNed Deily2014-03-275-20/+26
| | | | | | | | | | | | failures when ssl is not present.
* | | Issue #20939: Backout test_urllib2.test_issue16464 disables:Ned Deily2014-03-271-6/+0
| | | | | | | | | | | | | | | 68335b8afb1f 3.4 ad0c75b7bd7d default