summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue #15394: Fix ref leaks in PyModule_Create.Meador Inge2012-07-193-1/+11
| | | | Patch by Julia Lawall.
* Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.Meador Inge2012-07-193-28/+46
|
* remove unused variableMeador Inge2012-07-181-1/+1
|
* Issue #15368: fixing variable typo.Meador Inge2012-07-181-1/+1
|
* Issue #15368: make bytecode generation deterministic.Meador Inge2012-07-182-2/+25
|
* Use posixpath.join() explicitely in posixpath.join() testHynek Schlawack2012-07-171-1/+1
| | | | Used os.path.join before which has different semantics on Windows.
* merge headsEli Bendersky2012-07-173-14/+22
|\
| * #15377: Make posixpath.join() more strict when checking for str/bytes mixHynek Schlawack2012-07-172-14/+19
| | | | | | | | Based on a patch by Nick Coghlan.
| * Issue #15230: Attempt to make the OS X buildbots happy by resolving the tmp ↵Nick Coghlan2012-07-171-1/+1
| | | | | | | | dir symlink in the test suite
| * Fix context manager use in posixpath.join() testsHynek Schlawack2012-07-171-9/+12
| | | | | | | | The asserts were useless (and buggy).
* | ISsue #14988: restore Python 2's behavior of raising ImportError when unable ↵Eli Bendersky2012-07-171-0/+2
|/ | | | to load pyexpat, instead of a SystemError/RuntimeError
* one more test fix for systems without select.poll. tested by deletingGregory P. Smith2012-07-161-3/+6
| | | | | select.poll before running. works both ways (finally). this should fix the windows build.
* Fix unchecked select.poll reference in setUp and tearDown forGregory P. Smith2012-07-161-5/+7
| | | | platforms that don't have it.
* Fix the with_poll tests for platforms without poll. missing import.Gregory P. Smith2012-07-161-0/+1
|
* Fixes Issue #14635: telnetlib will use poll() rather than select() when possibleGregory P. Smith2012-07-164-7/+223
| | | | to avoid failing due to the select() file descriptor limit.
* #15180: Clarify posixpath.join() error message when mixing str & bytesHynek Schlawack2012-07-153-8/+24
|
* Issue #15230: Update runpy docs to clarify a couple of points that came up ↵Nick Coghlan2012-07-142-0/+14
| | | | in this issue
* Close #15230: runpy.run_path now sets __package__ correctly. Also refactored ↵Nick Coghlan2012-07-143-158/+277
| | | | the runpy tests to use a more systematic approach
* Try other approach to fix issue #15334.Antoine Pitrou2012-07-131-3/+8
|
* Remove duplicate entry and fix orderAntoine Pitrou2012-07-131-2/+1
|
* Issue #15334: skip test_dynamic_key when run in non-interactive mode.Antoine Pitrou2012-07-132-0/+2
| | | | Patch by Jeremy Kloth.
* Issue #15338: skip test_UNC_path when the current user doesn't have enough ↵Antoine Pitrou2012-07-131-0/+7
| | | | permissions to access the path.
* Add c_size_t and c_ssize_t to the ctypes summary table.Antoine Pitrou2012-07-121-0/+5
|
* Show the proper way to exit a cmd shellRaymond Hettinger2012-07-121-1/+1
|
* Issue #15300: Ensure the temporary test working directories are in the same ↵Antoine Pitrou2012-07-113-1/+10
| | | | | | parent folder when running tests in multiprocess mode from a Python build. Patch by Chris Jerdonek.
* Use _RPCFile.write properly.Martin v. Löwis2012-07-111-2/+2
|
* Don't use TextIOBase implementations in _RPCFile.Martin v. Löwis2012-07-111-2/+8
|
* Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.Martin v. Löwis2012-07-112-2/+2
|
* Backport test for nested namespace packages.Antoine Pitrou2012-07-091-2/+44
|
* normalize whitespaceMartin v. Löwis2012-07-091-1/+1
|
* Issue #13532: Check that arguments to sys.stdout.write are strings.Martin v. Löwis2012-07-093-3/+25
|
* Issue 12510: Delete actual first param name for all methods; revise tests.Terry Jan Reedy2012-07-091-14/+20
|
* revert the changes done for issue14826 - quoting witin Request is not desirable.Senthil Kumaran2012-07-093-11/+0
|
* Issue #13557: Clarify effect of giving two different namespaces to exec orTerry Jan Reedy2012-07-082-4/+7
| | | | execfile().
* issue 14826 - Address the buildbot failure ( explanation msg164973)Senthil Kumaran2012-07-082-3/+3
|
* Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-083-1/+12
| | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
* Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding ↵Florent Xicluna2012-07-073-1/+8
| | | | declaration.
* Issue #15247: FileIO now raises an error when given a file descriptor ↵Antoine Pitrou2012-07-063-12/+16
| | | | pointing to a directory.
* Issue #15020: The program name used to search for Python's path is now ↵Antoine Pitrou2012-07-052-0/+7
| | | | "python3" under Unix, not "python".
* Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵Senthil Kumaran2012-07-053-1/+19
| | | | invoked using -m switch. Patch contributed by Jeff Knupp
* Issue #1677: Unused variable warning in Non-WindowsJesus Cea2012-07-031-1/+4
|
* Make call of os.getppid() conditional: it is not available on Windows.Georg Brandl2012-07-011-1/+2
|
* Fix inconsistent function name in embedding howto.Georg Brandl2012-07-011-2/+2
|
* Issue #15171: Quote the variable that expands to the current directory.Stefan Krah2012-06-301-1/+1
|
* Issue #9239: add tests for modifying zipfile comments in append mode.Antoine Pitrou2012-06-301-0/+18
|
* MergedTim Golden2012-06-291-22/+15
|\
| * Issue #1677: Handle better a race condition between the interactive ↵Tim Golden2012-06-291-22/+15
| | | | | | | | | | | | interpreter and the Ctrl-C signal handler on Windows
* | urllib.parse cleanup. rename keywords used as variablesSenthil Kumaran2012-06-291-7/+7
| |
* | Better diagnose test failureAntoine Pitrou2012-06-291-2/+2
|/
* #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush()Petri Lehtinen2012-06-293-0/+23
|