summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge from 3.3Andrew Kuchling2013-06-212-2/+2
|\
| * Closes #18218: use correct variable name for starting pointAndrew Kuchling2013-06-211-1/+1
| |
| * Closes #18239: correct description of count() in module docstringAndrew Kuchling2013-06-211-1/+1
| |
* | Closes #18247: add Lib/test/data/* to .gitignoreAndrew Kuchling2013-06-211-0/+1
| |
* | Merge from 3.3Andrew Kuchling2013-06-211-2/+2
|\ \ | |/
| * Closes #18267: use floor division in code exampleAndrew Kuchling2013-06-211-2/+2
| |
* | Grammatical mistake in a commentBrett Cannon2013-06-211-1/+1
| |
* | Merge from 3.3Andrew Kuchling2013-06-212-2/+2
|\ \ | |/
| * Closes #18272: use 'builtins' for 3.3 instead of __builtin__Andrew Kuchling2013-06-212-2/+2
| |
* | whatsnew/3.4: mention functools.singledispatch, PEP 443Victor Stinner2013-06-201-0/+6
| |
* | whatsnew/3.4: mention the new enum module, PEP 435Victor Stinner2013-06-201-2/+2
| |
* | Merge from 3.3Andrew Kuchling2013-06-201-95/+162
|\ \ | |/
| * #4153: update Unicode howto for Python 3.3Andrew Kuchling2013-06-201-95/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * state that python3 source encoding is UTF-8, and give examples * mention surrogateescape in the 'tips and tricks' section, and backslashreplace in the "Python's Unicode Support" section. * Describe Unicode support provided by the re module. * link to Nick Coghlan's and Ned Batchelder's notes/presentations. * default filesystem encoding is now UTF-8, not ascii. * Describe StreamRecoder class. * update acks section * remove usage of "I think", "I'm not going to", etc. * various edits * remove revision history and original outline
* | merge from 3.3Senthil Kumaran2013-06-201-4/+18
|\ \ | |/ | | | | | | Add -b and -X options to python man page. Patch contributed by Corey Brune.
| * Add -b and -X options to python man page.Senthil Kumaran2013-06-201-4/+18
| | | | | | | | Patch contributed by Corey Brune.
* | Merge: Tweak programming faq examples so that it (mostly) passes doctest.R David Murray2013-06-191-18/+19
|\ \ | |/
| * Tweak programming faq examples so that it (mostly) passes doctest.R David Murray2013-06-191-18/+19
| | | | | | | | | | The exception is the import related questions at the end, which need to be rewritten anyway.
* | merge 3.3 (#18248)Benjamin Peterson2013-06-193-2/+4
|\ \ | |/
| * fix libffi build on AIX (closes #18248)Benjamin Peterson2013-06-193-2/+4
| |
* | Issue #18202: Fix minor bugs and cleanup test_source_encoding.py.Serhiy Storchaka2013-06-191-12/+13
|\ \ | |/
| * Issue #18202: Fix minor bugs and cleanup test_coding.py.Serhiy Storchaka2013-06-191-17/+15
| |
* | mergeBrett Cannon2013-06-193-1/+10
|\ \
| * \ fixed libffi on PPC without __NO_FPRS__Christian Heimes2013-06-191-1/+3
| |\ \ | | |/ | | | | | | ISO C90 forbids mixed declarations and code
| | * fixed libffi on PPC without __NO_FPRS__Christian Heimes2013-06-191-1/+3
| | | | | | | | | | | | ISO C90 forbids mixed declarations and code
| | * merge headsChristian Heimes2013-06-193-0/+7
| | |\
| * | \ merge headsChristian Heimes2013-06-194-1/+7
| |\ \ \
| * \ \ \ Issue #18259: Declare sethostname in socketmodule.c for AIXChristian Heimes2013-06-192-0/+7
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | Issue #18259: Declare sethostname in socketmodule.c for AIXChristian Heimes2013-06-192-0/+7
| | | | |
* | | | | Issue #17177: Clarify some deprecationsBrett Cannon2013-06-191-3/+11
| |_|/ / |/| | |
* | | | Fix compilation warning with gcc 4.8 (unused typedef)Antoine Pitrou2013-06-181-1/+0
| | | |
* | | | Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-183-0/+7
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-183-0/+7
| |/
* | Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if ↵Christian Heimes2013-06-184-2/+8
|\ \ | |/ | | | | it's available
| * Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if ↵Christian Heimes2013-06-184-2/+8
| | | | | | | | it's available
* | Grammar tweakBrett Cannon2013-06-171-1/+1
| |
* | Issue #17222: fix a mix-up in some exception messages.Brett Cannon2013-06-171-2/+2
| | | | | | | | Reported by Arfrever Frehtes Taifersar Arahesis.
* | (Merge 3.3) test_faulthandler: use _sigsegv() instead of _read_null()Victor Stinner2013-06-171-5/+5
|\ \ | |/ | | | | faulthandler._read_null() is not reliable: it does not crash on AIX.
| * test_faulthandler: use _sigsegv() instead of _read_null()Victor Stinner2013-06-171-5/+5
| | | | | | | | faulthandler._read_null() is not reliable: it does not crash on AIX.
* | (Merge 3.3) ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
|\ \ | |/
| * ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
| |
* | (Merge 3.3) Issue #18238: Skip test_signal.test_sigwaitinfo_interrupted() on AIXVictor Stinner2013-06-171-0/+4
|\ \ | |/ | | | | | | sigwaitinfo() can be interrupted on Linux (raises InterruptedError), but not on AIX.
| * Issue #18238: Skip test_signal.test_sigwaitinfo_interrupted() on AIXVictor Stinner2013-06-171-0/+4
| | | | | | | | | | sigwaitinfo() can be interrupted on Linux (raises InterruptedError), but not on AIX.
* | Issue #18228: Use locale.setlocale(name, None) instead ofVictor Stinner2013-06-171-2/+2
| | | | | | | | | | | | | | locale.getlocale(name) in test.regrtest.saved_test_environment locale.getlocale() parses the locale, which is useless for saved_test_environment.
* | Issue #18228: Fix locale test of test.regrtest.saved_test_environmentVictor Stinner2013-06-171-2/+3
| | | | | | | | | | Skip LC_ALL becore getlocale(locale.LC_ALL) always fail, and catch also ValueError.
* | (Merge 3.3) regrtest.py: Fix another typo in the usage of the faulthandler ↵Victor Stinner2013-06-171-1/+1
|\ \ | |/ | | | | module
| * regrtest.py: Fix another typo in the usage of the faulthandler moduleVictor Stinner2013-06-171-1/+1
| |
* | (Merge 3.3) regrtest.py: Fix typo in the usage of the faulthandler moduleVictor Stinner2013-06-171-3/+3
|\ \ | |/
| * regrtest.py: Fix typo in the usage of the faulthandler moduleVictor Stinner2013-06-171-3/+3
| |
* | merge headsChristian Heimes2013-06-173-0/+35
|\ \
| * \ Merge headsSerhiy Storchaka2013-06-172-2/+19
| |\ \