Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Close #18264: int- and float-derived enums now converted to int or float. | Ethan Furman | 2013-08-10 | 1 | -17/+20 |
| | |||||
* | Issue #16400: Add command line option for isolated mode. | Christian Heimes | 2013-08-10 | 3 | -4/+22 |
| | | | | | | | | | | -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 values | Eli Bendersky | 2013-08-10 | 1 | -4/+4 |
|\ | |||||
| * | Issue #18668: Further clarify m_size setting for non-negative values | Eli Bendersky | 2013-08-10 | 1 | -4/+4 |
| | | |||||
| * | #18600: In 3.3, as_string does not accept a policy keyword. | R David Murray | 2013-08-09 | 2 | -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 Murray | 2013-08-09 | 3 | -10/+91 |
| | | | | | | | | | | | | | | 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. | ||||
* | | Fix a typo in PyUnicode_CopyCharacters() documentation. | Serhiy Storchaka | 2013-08-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix a typo in PyUnicode_CopyCharacters() documentation. | Serhiy Storchaka | 2013-08-08 | 1 | -1/+1 |
| | | |||||
* | | #18267: merge with 3.3. | Ezio Melotti | 2013-08-08 | 1 | -9/+9 |
|\ \ | |/ | |||||
| * | #18267: make whitespace consistent and fix an operator. | Ezio Melotti | 2013-08-08 | 1 | -9/+9 |
| | | |||||
* | | Closing #18668: Properly document setting m_size in PyModuleDef | Eli Bendersky | 2013-08-07 | 1 | -4/+10 |
|\ \ | |/ | |||||
| * | Issue #18668: Properly document setting m_size in PyModuleDef | Eli Bendersky | 2013-08-07 | 1 | -4/+10 |
| | | |||||
* | | Issue #14323: Expanded the number of digits in the coefficients for the | Serhiy Storchaka | 2013-08-06 | 1 | -0/+7 |
| | | | | | | | | RGB -- YIQ conversions so that they match the FCC NTSC versions. | ||||
* | | Issue #17934: Add a clear() method to frame objects, to help clean up ↵ | Antoine Pitrou | 2013-08-05 | 2 | -0/+18 |
| | | | | | | | | expensive details (local variables) and break reference cycles. | ||||
* | | Issue 18532: Added tests and documentation to formally specify the .name ↵ | Jason R. Coombs | 2013-08-03 | 1 | -0/+12 |
| | | | | | | | | attribute on hashlib objects. | ||||
* | | Fixes #8860: Round half-microseconds to even in the timedelta constructor. | Alexander Belopolsky | 2013-08-04 | 1 | -4/+6 |
| | | | | | | | | (Original patch by Mark Dickinson.) | ||||
* | | Hum, VMS code is still present | Victor Stinner | 2013-08-04 | 1 | -1/+0 |
| | | |||||
* | | Complete What's New in Python 3.4 | Victor Stinner | 2013-08-04 | 1 | -2/+7 |
| | | |||||
* | | Issue #17902: Clarify doc of ElementTree.iterparse and IncrementalParser | Eli Bendersky | 2013-08-04 | 1 | -2/+3 |
|\ \ | |/ | | | | | Based on patch by Aaron Oakley | ||||
| * | Issue #17902: Clarify doc of ElementTree.iterparse | Eli Bendersky | 2013-08-04 | 1 | -1/+2 |
| | | |||||
* | | Fix minor documentation markup error. | Larry Hastings | 2013-08-03 | 1 | -1/+1 |
| | | |||||
* | | Issue #18589: fix hyperlinking of type slots (tp_*) | Antoine Pitrou | 2013-08-01 | 9 | -201/+201 |
|\ \ | |/ | |||||
| * | Issue #18589: fix hyperlinking of type slots (tp_*) | Antoine Pitrou | 2013-08-01 | 9 | -192/+192 |
| | | |||||
* | | #17616: Improve context manager tests, fix bugs in close method and mode docs. | R David Murray | 2013-08-01 | 1 | -8/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'mode' docs fix: the file must always be opened in binary in Python3. Bug in Wave_write.close: when the close method calls the check that the header exists and it raises an error, the _file attribute never gets set to None, so the next close tries to close the file again and we get an ignored traceback in the __del__ method. The fix is to set _file to None in a finally clause. This represents a behavior change...in theory a program could be checking for the error on close and then doing a recovery action on the still open file and closing it again. But this change will only go into 3.4, so I think that behavior change is acceptable given that it would be pretty weird and unlikely logic to begin with. | ||||
* | | #17616: wave.open now supports the 'with' statement. | R David Murray | 2013-07-31 | 3 | -2/+11 |
| | | | | | | | | Feature and tests by ClClaudiu.Popa, I added the doc changes. | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-07-31 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #18573: More copy-paste fixes to assertWarns entry. | Terry Jan Reedy | 2013-07-31 | 1 | -3/+3 |
| | | |||||
* | | Merge: #16273: Fix tutorial discussion of seek/tell (opaque text-mode values). | R David Murray | 2013-07-30 | 1 | -4/+9 |
|\ \ | |/ | |||||
| * | #16273: Fix tutorial discussion of seek/tell (opaque text-mode values). | R David Murray | 2013-07-30 | 1 | -4/+9 |
| | | | | | | | | Patch by Sijin Joseph. | ||||
* | | Merge: #18601: fix error made when difflib example was converted to use 'with'. | R David Murray | 2013-07-30 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #18601: fix error made when difflib example was converted to use 'with'. | R David Murray | 2013-07-30 | 1 | -1/+1 |
| | | |||||
* | | fixed examples to work with changed attribute names | Ethan Furman | 2013-07-30 | 1 | -5/+5 |
| | | |||||
* | | Merge #18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1. | R David Murray | 2013-07-30 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | #18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1. | R David Murray | 2013-07-30 | 2 | -2/+2 |
| | | | | | | | | | | | | testcleanup directive is new as of 1.1, and we are currently running 1.0.7. But using testsetup works just as well, and avoids the unknown directive error when building the docs. | ||||
* | | Merge doc fix | Antoine Pitrou | 2013-07-30 | 1 | -5/+4 |
|\ \ | |/ | |||||
| * | Simplify example of PyErr_Fetch() use | Antoine Pitrou | 2013-07-30 | 1 | -5/+4 |
| | | |||||
* | | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 7 | -43/+114 |
| | | |||||
* | | Merge #18584: make doctest examples in email documentation pass. | R David Murray | 2013-07-29 | 3 | -23/+67 |
|\ \ | |/ | |||||
| * | #18584: make doctest examples in email documentation pass. | R David Murray | 2013-07-29 | 3 | -23/+67 |
| | | | | | | | | | | | | | | | | | | | | | | With the exception of the 'as_string' call in the policy docs. That one is a separate issue. Note that when building the docs sphinx is complaining about .. testcleanup:: being an invalid directive. I don't know why this is, as I'm following the sphinx docs...but fortunately the action is to omit the text in the body, so the generated documentation is correct. | ||||
* | | Merge #15415 from 3.3 | Nick Coghlan | 2013-07-28 | 1 | -8/+30 |
|\ \ | |/ | |||||
| * | Close #15415: Factor out temp dir helpers to test.support | Nick Coghlan | 2013-07-28 | 1 | -8/+30 |
| | | | | | | | | Patch by Chris Jerdonek | ||||
* | | Close #13266: Add inspect.unwrap | Nick Coghlan | 2013-07-28 | 2 | -3/+28 |
| | | | | | | | | Initial patch by Daniel Urban and Aaron Iles | ||||
* | | (Merge 3.3) doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag | Victor Stinner | 2013-07-28 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag | Victor Stinner | 2013-07-28 | 1 | -0/+2 |
| | | |||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-07-27 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #18573: Complete copy-paste from assertRaises entry to assertWarns entry. | Terry Jan Reedy | 2013-07-27 | 1 | -1/+1 |
| | | |||||
* | | #17818: aifc.getparams now returns a namedtuple. | R David Murray | 2013-07-25 | 2 | -1/+9 |
| | | | | | | | | Patch by Claudiu Popa. | ||||
* | | Merge #15130: remove repeat of abstract paragraph from socket howto body. | R David Murray | 2013-07-25 | 1 | -6/+0 |
|\ \ | |/ | |||||
| * | #15130: remove repeat of abstract paragraph from socket howto body. | R David Murray | 2013-07-25 | 1 | -6/+0 |
| | | | | | | | | Patch by Tshepang Lekhonkhobe. | ||||
* | | #16937: merge with 3.3. | Ezio Melotti | 2013-07-25 | 1 | -2/+2 |
|\ \ | |/ |