- 23 Mar, 2006 2 commits
-
-
Neal Norwitz authored
Fix crash when a Unicode string containing an encoding declaration is compile()d. Fixes #1115379.
-
Tim Peters authored
-
- 22 Mar, 2006 10 commits
-
-
Barry Warsaw authored
-
Thomas Heller authored
on 64-bit platforms.
-
Thomas Heller authored
Don't use SEH when compiling wth mingw. Use IS_INTRESOURCE to determine function name from function ordinal. Rewrite the code that allocates and frees callback functions, hopefully this avoids the coverty warnings: Remove the THUNK typedef, and move the definition of struct ffi_info into the header file.
-
Thomas Heller authored
-
Hye-Shik Chang authored
comments in the file. (SF #1455641)
-
Neal Norwitz authored
-
Georg Brandl authored
-
Tim Peters authored
-
Tim Peters authored
-
Barry Warsaw authored
-
- 21 Mar, 2006 9 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Georg Brandl authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Georg Brandl authored
was used unmotivated in the pow() docs)
-
Tim Peters authored
as diagnosed by Nick Coghlan. test_capi.py: A test module should never spawn a thread as a side effect of being imported. Because this one did, the segfault one of its thread tests caused didn't occur until a few tests after test_regrtest.py thought test_capi was finished. Repair that. Also join() the thread spawned at the end, so that test_capi is truly finished when regrtest reports that it's done. _testcapimodule.c test_thread_state(): this spawns a couple of non-threading.py threads, passing them a PyObject* argument, but did nothing to ensure that those threads finished before returning. As a result, the PyObject* _could_ (although this was unlikely) get decref'ed out of existence before the threads got around to using it. Added explicit synchronization (via a Python mutex) so that test_thread_state can reliably wait for its spawned threads to finish.
-
- 20 Mar, 2006 19 commits
-
-
Raymond Hettinger authored
-
Thomas Heller authored
-
Georg Brandl authored
-
Neal Norwitz authored
-
Thomas Heller authored
-
Thomas Heller authored
-
Thomas Heller authored
-
Thomas Heller authored
Including unittest.
-
Neal Norwitz authored
-
Anthony Baxter authored
-
Neal Norwitz authored
more consistent (and smaller by 85 lines or so).
-
Neal Norwitz authored
Make some functions static, reformat function decl to be consistent and check for error from PyModule_GetDict()
-
Neal Norwitz authored
-
Anthony Baxter authored
-
Neal Norwitz authored
This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase).
-
Anthony Baxter authored
-
Anthony Baxter authored
expand tabs.
-
Anthony Baxter authored
-