This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2007年04月14日 04:06 by ocean-city, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| vc6-trunk.patch | ocean-city, 2007年04月14日 04:06 | |||
| vc6-trunk-ver2.patch | ocean-city, 2007年10月25日 14:11 | |||
| vc6-trunk-ver3.patch | ocean-city, 2008年01月02日 14:11 | |||
| vc6-trunk-ver4b.patch | ocean-city, 2008年01月03日 04:58 | Please forget vc6-trunk-ver4.patch | ||
| vc6-trunk-ver4c.patch | ocean-city, 2008年01月03日 05:09 | |||
| vc6-trunk-ver4c.zip | ocean-city, 2008年01月04日 16:17 | |||
| vc6-trunk-ver4c.zip | ocean-city, 2008年01月04日 16:18 | |||
| vc6-trunk-ver5.zip | ocean-city, 2008年01月20日 14:07 | |||
| Messages (12) | |||
|---|---|---|---|
| msg52442 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2007年04月14日 04:06 | |
Hello. This is follow up patch for current trunk. I confirmed testall.py passes on VC6 except for test_normalization.py. (I needed to expand python_d.exe's stack size to 1MB, though. otherwise, test_excepsion.py etc crashes with stack overflow) # error of test_normalization.py FAILED (errors=1) Traceback (most recent call last): File "test_normalization.py", line 94, in <module> test_main() File "test_normalization.py", line 91, in test_main run_unittest(NormalizationTest) File "e:\python-dev\trunk\lib\test\test_support.py", line 557, in run_unittest run_suite(suite, testclass) File "e:\python-dev\trunk\lib\test\test_support.py", line 542, in run_suite raise TestFailed(err) test.test_support.TestFailed: Traceback (most recent call last): File "test_normalization.py", line 36, in test_main for line in open_urlresource(TESTDATAURL): File "e:\python-dev\trunk\lib\test\test_support.py", line 271, in open_urlreso urce requires('urlfetch') File "e:\python-dev\trunk\lib\test\test_support.py", line 94, in requires raise ResourceDenied(msg) ResourceDenied: Use of the `urlfetch' resource not enabled |
|||
| msg56746 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2007年10月25日 14:11 | |
I updated patch. To avoid conflict <winsock.h> and <winsock2.h>, WIN32_LEAN_AND_MEAN is needed. |
|||
| msg59093 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月02日 14:11 | |
I updated the patch. - Added missing _msi support - Workaround for PC/msvcrtmodule.c (getwch not exists on VC6) |
|||
| msg59122 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月03日 04:47 | |
Sorry, I updated the patch again. - Add Python/pystrcmp.c to pythoncore.dsp. - Rev59671 contains intptr_t unavailable on VC6, avoid compile error by using PyLong_FromVoidPtr(). |
|||
| msg59123 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月03日 04:58 | |
Ummm, I realized my change is probably inproper... Index: Objects/intobject.c =================================================================== --- Objects/intobject.c (revision 59671) +++ Objects/intobject.c (working copy) @@ -1053,7 +1053,7 @@ static PyObject * int_getN(PyIntObject *v, void *context) { - return PyInt_FromLong((intptr_t)context); + return PyLong_FromVoidPtr(context); } I recreated the patch against rev59669 for now. Please try my patch on that revision. Currently, VC6 cannot compile python on HEAD. |
|||
| msg59124 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月03日 05:09 | |
Umm, I found Py_intptr_t... OK, VC6 can compile HEAD. Please forget previous patch. I confirmed test_long.py, test_math.py, test_builtin.py successfully runs. |
|||
| msg59235 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月04日 16:17 | |
I zipped PC/VC6/* as files. |
|||
| msg59236 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月04日 16:18 | |
I zipped PC/VC6/* as files. |
|||
| msg59237 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月04日 16:23 | |
Oops, sorry for double post. My network provider now stucks somehow... |
|||
| msg61294 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年01月20日 14:07 | |
Rev59716 required some fix. I'm not sure the patch for Lib/socket.py is apropriate. |
|||
| msg62239 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年02月09日 23:05 | |
Please don't apply this patch now. VC6 build fails from rev.60696 |
|||
| msg64154 - (view) | Author: Hirokazu Yamamoto (ocean-city) * (Python committer) | Date: 2008年03月20日 05:44 | |
issue2065 contains the patch for this branch too, so I'll close this issue. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:23 | admin | set | github: 44845 |
| 2008年04月01日 10:08:10 | ocean-city | set | files: - vc6-trunk-ver4.patch |
| 2008年03月20日 05:44:28 | ocean-city | set | status: open -> closed resolution: duplicate messages: + msg64154 |
| 2008年02月09日 23:05:19 | ocean-city | set | messages: + msg62239 |
| 2008年01月20日 14:07:48 | ocean-city | set | files:
+ vc6-trunk-ver5.zip messages: + msg61294 |
| 2008年01月04日 16:23:07 | ocean-city | set | messages: + msg59237 |
| 2008年01月04日 16:18:25 | ocean-city | set | files:
+ vc6-trunk-ver4c.zip messages: + msg59236 |
| 2008年01月04日 16:17:55 | ocean-city | set | files:
+ vc6-trunk-ver4c.zip messages: + msg59235 |
| 2008年01月03日 20:19:56 | JosephArmbruster | set | components: + Windows |
| 2008年01月03日 05:09:28 | ocean-city | set | files:
+ vc6-trunk-ver4c.patch messages: + msg59124 |
| 2008年01月03日 04:58:38 | ocean-city | set | files:
+ vc6-trunk-ver4b.patch messages: + msg59123 |
| 2008年01月03日 04:47:11 | ocean-city | set | files:
+ vc6-trunk-ver4.patch messages: + msg59122 |
| 2008年01月02日 14:11:02 | ocean-city | set | files:
+ vc6-trunk-ver3.patch messages: + msg59093 |
| 2007年10月25日 14:11:39 | ocean-city | set | files:
+ vc6-trunk-ver2.patch messages: + msg56746 |
| 2007年04月14日 04:06:20 | ocean-city | create | |