Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | call_find_module() handles dup() failure: raise an OSError exception | Victor Stinner | 2011-06-20 | 1 | -0/+4 |
| | |||||
* | find_module_path_list() fails if _Py_fopen() failed and raised an exception | Victor Stinner | 2011-06-20 | 1 | -0/+4 |
| | | | | (UnicodeEncodeError). | ||||
* | Issue #6697: _lsprof: normalizeUserObj() doesn't encode/decode (UTF-8) the | Victor Stinner | 2011-06-20 | 1 | -26/+19 |
| | | | | | | | | module name anymore, only work on unicode strings. Therefore it doesn't truncate module names with embedded NUL characters, or fail if the module name contains surrogate characters (UTF-8 encoder fails on a surrogate character). Patch written by Alexander Belopolsky. | ||||
* | calculate_path() decodes the PYTHONPATH environment variable from the locale | Victor Stinner | 2011-06-20 | 1 | -7/+9 |
| | | | | | | encoding using _Py_char2wchar() instead of mbstowcs() to store undecodable bytes as surrogates characters (PEP 383) instead of ignoring silently the PYTHONPATH variable. | ||||
* | merge from 3.2 | Senthil Kumaran | 2011-06-20 | 1 | -2/+2 |
|\ | |||||
| * | Fix closes issue 12360 - correcting parameter names in asyncore documentation. | Senthil Kumaran | 2011-06-20 | 1 | -2/+2 |
| | | |||||
* | | merge heads | Benjamin Peterson | 2011-06-20 | 0 | -0/+0 |
|\ \ | |||||
| * \ | merge heads | Senthil Kumaran | 2011-06-20 | 5 | -10/+26 |
| |\ \ | |||||
| * \ \ | outstanding merge with 3.2 | Senthil Kumaran | 2011-06-20 | 0 | -0/+0 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | minor space nit. | Senthil Kumaran | 2011-06-20 | 1 | -1/+1 |
| | | | | |||||
* | | | | bump magic for super closure change | Benjamin Peterson | 2011-06-20 | 1 | -1/+2 |
| |_|/ |/| | | |||||
* | | | merge heads | Benjamin Peterson | 2011-06-20 | 2 | -8/+20 |
|\ \ \ | |/ / | |||||
| * | | merge from 3.2. Issue 12359 | Senthil Kumaran | 2011-06-20 | 1 | -7/+8 |
| |\ \ | | |/ | |||||
| | * | Fix closes Issue12359 - Minor update to module import description. | Senthil Kumaran | 2011-06-20 | 1 | -7/+8 |
| | | | |||||
| * | | merge from 3.2 | Senthil Kumaran | 2011-06-20 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | Whitespace nit fixed using reident. | Senthil Kumaran | 2011-06-19 | 1 | -1/+1 |
| | | | |||||
| * | | merge from 3.2. Updates to http.client documentation. | Senthil Kumaran | 2011-06-19 | 1 | -1/+12 |
| |\ \ | | |/ | |||||
| | * | Fix closes Issue12315 - Updates to http.client documentation. | Senthil Kumaran | 2011-06-19 | 1 | -1/+12 |
| | | | |||||
* | | | use a invalid name for the __class__ closure for super() (closes #12370) | Benjamin Peterson | 2011-06-20 | 5 | -10/+26 |
|/ / | | | | | | | | | This prevents the assignment of __class__ in the class body from breaking super. (Although a determined person could do locals()["@__class__"] = 4) | ||||
* | | merge 3.2 | Benjamin Peterson | 2011-06-19 | 1 | -7/+7 |
|\ \ | |/ | |||||
| * | fix uglyNamingConvention | Benjamin Peterson | 2011-06-19 | 1 | -7/+7 |
| | | |||||
* | | remove duplicate -I | Benjamin Peterson | 2011-06-19 | 1 | -1/+1 |
| | | |||||
* | | merge from 3.2 | Senthil Kumaran | 2011-06-19 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | merge from 3.1 for issue issue12261. | Senthil Kumaran | 2011-06-19 | 1 | -2/+2 |
| |\ | |||||
| | * | Fix closes issue12261 - Minor documention changes in the urllib.parse.rst | Senthil Kumaran | 2011-06-19 | 1 | -2/+2 |
| | | | |||||
* | | | Improve documentation of packaging hooks | Éric Araujo | 2011-06-19 | 2 | -22/+36 |
| | | | |||||
* | | | packaging: Add the project directory to sys.path to support local setup hooks. | Éric Araujo | 2011-06-19 | 3 | -11/+39 |
| | | | | | | | | | | | | Original patch by Vinay Sajip on #11637. | ||||
* | | | Add missing documentation for packaging.pypi.base and .simple | Éric Araujo | 2011-06-19 | 2 | -13/+95 |
| | | | |||||
* | | | Fix typo | Éric Araujo | 2011-06-19 | 2 | -2/+2 |
| | | | |||||
* | | | merge heads | Benjamin Peterson | 2011-06-19 | 11 | -96/+118 |
|\ \ \ | |||||
| * | | | faulthandler doc: the the => the | Victor Stinner | 2011-06-19 | 1 | -1/+1 |
| | | | | |||||
| * | | | ACKS update for devguide patch (closes #12278) | Nick Coghlan | 2011-06-19 | 1 | -0/+1 |
| | | | | |||||
| * | | | #6771: Move wrapper function into __init__ and eliminate wrapper module | R David Murray | 2011-06-19 | 3 | -51/+49 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Andrew agreed in the issue that eliminating the module file made sense. Wrapper has only been exposed as a function, and so there is no (easy) way to access the wrapper module, which in any case only had the one function in it. Since __init__ already contains a couple wrapper functions, it seems to make sense to just move wrapper there instead of importing it from a single function module. | ||||
| * | | | merge #6771: fix docs: curses.wrapper is exposed as a function, not a module | R David Murray | 2011-06-18 | 1 | -33/+13 |
| |\ \ \ | | |/ / | |||||
| | * | | #6771: fix docs: curses.wrapper is exposed as a function, not a module | R David Murray | 2011-06-18 | 1 | -33/+13 |
| | | | | | | | | | | | | | | | | Patch by July Tikhonov. | ||||
| * | | | merge #11584: make Header and make_header handle binary unknown-8bit input | R David Murray | 2011-06-18 | 3 | -2/+21 |
| |\ \ \ | | |/ / | |||||
| | * | | #11584: make Header and make_header handle binary unknown-8bit input | R David Murray | 2011-06-18 | 3 | -2/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Analogous to the decode_header fix, this fix makes Header.append and make_header correctly handle the unknown-8bit charset introduced by email5.1, when the input to them is binary strings. Previous to this fix the make_header(decode_header(x)) == x invariant was broken in the face of the unknown-8bit charset. | ||||
| * | | | merge #11584: make decode_header handle Header objects correctly | R David Murray | 2011-06-18 | 3 | -4/+8 |
| |\ \ \ | | |/ / | | | | | | | | | | | | | This updates 12e39cd7a0e4 (merge of b21fdfa0019c), which fixed this bug incorrectly. | ||||
| | * | | #11584: make decode_header handle Header objects correctly | R David Murray | 2011-06-18 | 3 | -4/+8 |
| | | | | | | | | | | | | | | | | This updates b21fdfa0019c, which fixed this bug incorrectly. | ||||
| * | | | #11781: update windows build script to account for move of email tests | R David Murray | 2011-06-18 | 1 | -2/+2 |
| | | | | |||||
| * | | | merge #11700: proxy object close methods can now be called multiple times | R David Murray | 2011-06-18 | 3 | -5/+25 |
| |\ \ \ | | |/ / | |||||
| | * | | #11700: proxy object close methods can now be called multiple times | R David Murray | 2011-06-18 | 3 | -5/+25 |
| | | | | | | | | | | | | | | | | This makes them work like the close provided by regular file objects. | ||||
* | | | | clarify | Benjamin Peterson | 2011-06-19 | 1 | -6/+6 |
|/ / / | |||||
* | | | edit and rewrite | Benjamin Peterson | 2011-06-18 | 1 | -40/+45 |
| | | | |||||
* | | | Make decorators used in packaging preserve docstrings | Éric Araujo | 2011-06-17 | 1 | -5/+7 |
| | | | |||||
* | | | Brange merge | Éric Araujo | 2011-06-17 | 3 | -2/+37 |
|\ \ \ | |||||
| * \ \ | merge #11767: use context manager to close file in __getitem__ to prevent FD ↵ | R David Murray | 2011-06-17 | 3 | -2/+37 |
| |\ \ \ | | |/ / | | | | | | | | | leak | ||||
| | * | | #11767: use context manager to close file in __getitem__ to prevent FD leak | R David Murray | 2011-06-17 | 3 | -2/+37 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All of the other methods in mailbox that create message objects take care to close the file descriptors they use, so it seems to make sense to have __getitem__ do so as well. Patch by Filip Gruszczyński. | ||||
* | | | | Brange merge | Éric Araujo | 2011-06-17 | 16 | -147/+123 |
|\ \ \ \ | |/ / / |/| | | | |||||
| * | | | Minor tweaks to packaging tests. | Éric Araujo | 2011-06-17 | 3 | -34/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Move a tearDown method right after setUp - Use assertRaises instead of reinventing it - Skip a test instead of commenting it out, as a reminder |