summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Null merge of 3.3 merge heads.R David Murray2013-08-100-0/+0
|\
| * Merge heads.R David Murray2013-08-103-11/+36
| |\
* | \ Merge heads.R David Murray2013-08-103-11/+36
|\ \ \
| * \ \ Merge #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-103-11/+36
| |\ \ \ | | | |/ | | |/|
| | * | #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-103-11/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this patch it would raise an error when trying to display documentation for a method that used annotations. Patch by Claudiu Popa.
* | | | #18505: merge with 3.3.Ezio Melotti2013-08-101-4/+1
|\ \ \ \ | | |_|/ | |/| |
| * | | #18505: fix duplicate name and remove duplicate test. Patch by Vajrasky Kok.Ezio Melotti2013-08-101-4/+1
| | | |
* | | | Merge typo fixes from 3.3.Ezio Melotti2013-08-102-4/+4
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Fix a couple of typos.Ezio Melotti2013-08-102-4/+4
| |/
* | #18453: merge with 3.3.Ezio Melotti2013-08-101-2/+10
|\ \ | |/
| * #18453: fix unused variables in test_xmlrpc. Patch by Vajrasky Kok.Ezio Melotti2013-08-101-2/+10
| |
* | #18465: merge with 3.3.Ezio Melotti2013-08-101-5/+6
|\ \ | |/
| * #18465: fix unused variables in test_minidom. Patch by Vajrasky Kok.Ezio Melotti2013-08-101-5/+6
| |
* | #18484: merge with 3.3.Ezio Melotti2013-08-101-6/+67
|\ \ | |/
| * #18484: improve test coverage of http.cookiejar. Patch by Vajrasky Kok.Ezio Melotti2013-08-101-6/+67
| |
* | #18483: merge with 3.3.Ezio Melotti2013-08-101-0/+2
|\ \ | |/
| * #18483: add one more date format in test_http2time_formats. Patch by ↵Ezio Melotti2013-08-101-0/+2
| | | | | | | | Vajrasky Kok.
* | Issue #15651: PEP 3121 refactoring for _elementtreeEli Bendersky2013-08-101-30/+89
| | | | | | | | Patch by Antoine Pitrou (based on Robin Schreiber's original patch)
* | typo, changeset dd0d751cc7f1 belongs to issue #16499 not issue #16400Christian Heimes2013-08-101-1/+1
| |
* | Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-1011-10/+77
| | | | | | | | | | | | | | | | | | | | -I Run Python in isolated mode. This also implies -E and -s. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting malicious code.
* | Issue #18668: Further clarify m_size setting for non-negative valuesEli Bendersky2013-08-101-4/+4
|\ \ | |/
| * Issue #18668: Further clarify m_size setting for non-negative valuesEli Bendersky2013-08-101-4/+4
| |
* | Null merge related to #18600.R David Murray2013-08-090-0/+0
|\ \ | |/ | | | | For 3.3, we just deleted the example. In 3.4 it was fixed.
| * #18600: In 3.3, as_string does not accept a policy keyword.R David Murray2013-08-092-12/+8
| | | | | | | | Also, document the policy keyword that was added to Message in 3.3.
* | #18600: add policy to add_string, and as_bytes and __bytes__ methods.R David Murray2013-08-096-21/+160
| | | | | | | | | | | | | | This was triggered by wanting to make the doctest in email.policy.rst pass; as_bytes and __bytes__ are clearly useful now that we have BytesGenerator. Also updated the Message docs to document the policy keyword that was added in 3.3.
* | Closes #18671: Output more information when logging exceptions occur.Vinay Sajip2013-08-082-0/+5
| |
* | #18357: merge with 3.3.Ezio Melotti2013-08-083-0/+18
|\ \ | |/
| * #18357: add tests for dictview set difference. Patch by Fraser Tweedale.Ezio Melotti2013-08-083-0/+18
| |
* | #18581: merge with 3.3.Ezio Melotti2013-08-081-32/+0
|\ \ | |/
| * #18581: remove duplicate test and run a test class that was skipped. ↵Ezio Melotti2013-08-081-32/+0
| | | | | | | | Initial patch by Vajrasky Kok.
* | Fix a typo in PyUnicode_CopyCharacters() documentation.Serhiy Storchaka2013-08-081-1/+1
|\ \ | |/
| * Fix a typo in PyUnicode_CopyCharacters() documentation.Serhiy Storchaka2013-08-081-1/+1
| |
* | #18267: merge with 3.3.Ezio Melotti2013-08-081-9/+9
|\ \ | |/
| * #18267: make whitespace consistent and fix an operator.Ezio Melotti2013-08-081-9/+9
| |
* | #18273: merge with 3.3.Ezio Melotti2013-08-0821-44/+25
|\ \ | |/
| * #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make ↵Ezio Melotti2013-08-0821-44/+25
| | | | | | | | them discoverable by unittest. Patch by Zachary Ware.
* | Issue #15301: Parsing fd, uid, and gid parameters for builtinsLarry Hastings2013-08-083-81/+205
| | | | | | | | in Modules/posixmodule.c is now far more robust.
* | Closing #18668: Properly document setting m_size in PyModuleDefEli Bendersky2013-08-071-4/+10
|\ \ | |/
| * Issue #18668: Properly document setting m_size in PyModuleDefEli Bendersky2013-08-071-4/+10
| |
* | Issue #18665: fix typos. Patch by Vajrasky Kok.Antoine Pitrou2013-08-062-2/+2
| |
* | Issue #18666: improve test_frame a bit. Patch by Vajrasky Kok.Antoine Pitrou2013-08-061-0/+3
| |
* | Normalize whitespaceAntoine Pitrou2013-08-061-1/+0
| |
* | Issue #18621: Prevent the site module's patched builtins from keeping too ↵Antoine Pitrou2013-08-063-93/+111
| | | | | | | | many references alive for too long.
* | Improve verbose reporting of shutdown phase by using the "public" module nameAntoine Pitrou2013-08-061-6/+7
| |
* | In _PyGC_Fini(), lose the reference that was kept to the time moduleAntoine Pitrou2013-08-061-0/+1
| |
* | #18443: remove the TextMate entry now that the bundle has been removed and ↵Ezio Melotti2013-08-061-2/+1
| | | | | | | | fix ordering. Patch by Févry Thibault.
* | Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.Christian Heimes2013-08-062-5/+20
|\ \ | |/
| * Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.Christian Heimes2013-08-062-5/+20
| |
* | Issue #14323: Expanded the number of digits in the coefficients for theSerhiy Storchaka2013-08-064-9/+51
| | | | | | | | RGB -- YIQ conversions so that they match the FCC NTSC versions.
* | Put the most important and most frequency accessed struct member first.Raymond Hettinger2013-08-061-1/+1
| |