Mark Dickinson
3e4caeb3bf
Issue #5341 : Fix a variety of spelling errors.
2009-02-21 20:27:01 +00:00
Hirokazu Yamamoto
e71fc87112
Fixed svn:eol-style.
2009-02-10 13:31:28 +00:00
Martin v. Löwis
fee1c7f4c9
Issue #4494 : Fix build with Py_NO_ENABLE_SHARED on Windows.
2009-02-02 14:23:16 +00:00
Mark Hammond
6ed1cb0014
Fix issue5075: bdist_wininst should not depend on the vc runtime?
2009-01-29 12:13:31 +00:00
Mark Hammond
9f4f56d4e8
On Windows, use the Python 'Activation Context' when loading extensions
...
to avoid problems loading the CRT from a private assembly. Via bug 4566.
2009-01-27 23:12:23 +00:00
Amaury Forgeot d'Arc
a18392a324
#4807 : Remove a wrong usage of wsprintf in the winreg module
...
("windows sprintf", different than swprintf)
Needed for the windows CE port.
2009-01-13 23:19:08 +00:00
Martin v. Löwis
eefda27e97
Issue #4895 : Use _strdup on Windows CE.
2009-01-11 09:43:55 +00:00
Hirokazu Yamamoto
14aa4599ed
Fixed version number in build_ssl.bat.
2009-01-11 03:28:13 +00:00
Hirokazu Yamamoto
dbf558888e
Added helper script to build Tcl/Tk.
2009-01-10 09:18:16 +00:00
Hirokazu Yamamoto
420ab8a84f
Link to debug version of Tcl/Tk when python is built as debug version.
2009-01-10 08:12:09 +00:00
Hirokazu Yamamoto
e0f8b3d528
Bump up Tcl/Tk version on VC6. (tcl8.4.12 -> tcl8.5.2, tk8.4.12 -> tk8.5.2, tix8.4.0 -> tix8.4.3)
2009-01-10 08:09:43 +00:00
Hirokazu Yamamoto
343b970da9
Bump up bsddb version on VC6. (db-4.4.20 -> db-4.7.25)
2009-01-09 04:10:40 +00:00
Hirokazu Yamamoto
eaec6b6d19
Bump up bzip2 version on VC6. (bzip2-1.0.3 -> bzip2-1.0.5)
2009-01-09 03:32:46 +00:00
Mark Dickinson
d181e3a246
isinf and isnan are macros, not functions; fix configure script
...
to use AC_CHECK_DECLS instead of AC_CHECK_FUNCS for these.
(See discussion in issue #4506 )
2009-01-04 13:57:26 +00:00
Martin v. Löwis
0fa10b3cd5
Issue #4817 : Remove unused function PyOS_GetLastModificationTime.
2009-01-03 17:19:26 +00:00
Christian Heimes
ed2f423775
Bumped up 2.6 to 2.7
2008-12-04 14:34:40 +00:00
Martin v. Löwis
bcb017f353
Issue #4365 : Add crtassem.h constants to the msvcrt module.
2008-11-30 19:28:27 +00:00
Amaury Forgeot d'Arc
98adb5ca65
yuvconvert.c is a part of the "sv" module, an old IRIX thing
...
and certainly not useful for any Windows build.
2008-11-22 19:39:38 +00:00
Hirokazu Yamamoto
ea00ed30df
Follows to python's version change (VC6)
2008-10-03 16:07:28 +00:00
Martin v. Löwis
c2dfd8c081
Update version number to 2.7.
2008-10-03 10:59:55 +00:00
Andrew MacIntyre
41c56b5ea1
build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files
...
Part of source_os2emx.patch in issue 3868:
Include/pystrcmp.h: OS/2 has same C APIs as Windows
Lib/test/test_io.py: OS/2 has same behaviour as Windows for this test
Reviewed by Amaury Forgeot d'Arc
2008-09-22 14:23:45 +00:00
Amaury Forgeot d'Arc
042025f6b8
Attempt to correct the build files for the Microsoft VS7.1 compiler.
...
I don't have a working VS7.1, but VS2005 can automatically convert
the project and build a working python interpreter.
2008-09-02 21:50:47 +00:00
Amaury Forgeot d'Arc
2e9b6cb6ec
Use vs9to8.py to refresh the Visual Studio 2005 build files.
2008-09-02 21:17:05 +00:00
Hirokazu Yamamoto
9f4e7fee62
Added _multiprocessing module support. (VC6)
2008-08-14 11:26:34 +00:00
Hirokazu Yamamoto
eea8eda317
Issue #2065 : VC6 related fix.
...
- PC/VC6/_bsddb.dsp:
removed '/nodefaultlib:"msvcrt"' to fix linker error.
- PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw:
added new module support.
- PC/VC6/_sqlite3.dsp:
/D "MODULE_NAME=\"sqlite3\""
caused extra leading space like
#define MODULE_NAME " sqlite3"
so uses
/D MODULE_NAME=\"sqlite3\"
instead.
- PC/VC6/python.dsp:
changed stack size to 2MB to avoid stack overflow on
some tests.
2008-08-14 01:33:44 +00:00
Gregory P. Smith
b90f4e8730
fix issue3120 - don't truncate handles on 64-bit Windows.
...
This is still messy, realistically PC/_subprocess.c should never cast pointers
to python numbers and back at all.
I don't have a 64-bit windows build environment because microsoft apparently
thinks that should cost money. Time to watch the buildbots. It builds and
passes tests on 32-bit windows.
2008-07-20 00:22:08 +00:00
Martin v. Löwis
06510b2213
Run svneol.py on all sources.
2008-06-13 22:38:33 +00:00
Amaury Forgeot d'Arc
6733ef5273
Add a missing file for VS2005
2008-06-13 21:54:30 +00:00
Amaury Forgeot d'Arc
a4dd2e20e2
Restore support for Microsoft VC6 compiler.
...
Some functions in the msvcrt module are skipped,
and socket.ioctl is enabled only when using a more recent Platform SDK.
(and yes, there are still companies that use a 10-years old compiler)
2008-06-13 00:42:22 +00:00
Amaury Forgeot d'Arc
6fd3321d6c
Update VS8.0 build files, using the script vs9to8.py.
...
Also remove references to odbc libraries, which are not shipped with vs2003 express.
(and certainly not useful)
2008-06-12 21:58:20 +00:00
Gregory P. Smith
b7fea62cca
Rename bytesobject.c back to stringobject.c to keep with the PyString theme.
...
Part of reverting most of r63675 per the mailing list discussion.
2008-06-10 21:23:22 +00:00
Gregory P. Smith
dd96db63f6
This reverts r63675 based on the discussion in this thread:
...
http://mail.python.org/pipermail/python-dev/2008-June/079988.html
Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names
in the spirit of 3.0 are available via a #define only. See the email thread.
2008-06-09 04:58:54 +00:00
Martin v. Löwis
ffe62ed46d
Patch #2125 : Add GetInteger and GetString methods for
...
msilib.Record objects.
2008-06-02 08:40:06 +00:00
Mark Hammond
5bd88333ee
Fix bdist_wininst --user-access-control for win2k
2008-05-31 05:11:07 +00:00
Christian Heimes
36f0a80bce
Used vs9to8.py to port all VS9.0 changes to 8.0
...
Updated VS7.1 and VC6 project files
2008-05-26 13:51:41 +00:00
Christian Heimes
593daf545b
Renamed PyString to PyBytes
2008-05-26 12:51:38 +00:00
Georg Brandl
6634bf2919
Tkinter rename reversal: remove tkinter package, adapt imports and docs.
2008-05-20 07:13:37 +00:00
Georg Brandl
6c90c9faae
Add new tkinter dir to various locations where lib-tk shows up.
2008-05-17 19:14:23 +00:00
Amaury Forgeot d'Arc
f9b54c2411
Sync code with documentation, and remove Win95 support in winsound module.
2008-05-12 21:30:24 +00:00
Alexandre Vassalotti
1aed624f7c
Backport fast alternate io.BytesIO implementation.
...
Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844,
r62846, r62952, r62956.
2008-05-09 21:49:43 +00:00
Brett Cannon
4b964f9c90
Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob
...
Ippolito.
Closes issue #2750 .
2008-05-05 20:21:38 +00:00
Mark Hammond
7c5c8e6823
#2581 : Vista UAC/elevation support for bdist_wininst
2008-05-02 12:48:15 +00:00
Christian Heimes
81ad6a185a
Added new files to Windows project files
...
More Windows related fixes are coming soon
2008-04-18 23:40:40 +00:00
Christian Heimes
6f34109384
I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math.
...
The patch also adds acosh, asinh, atanh, log1p and copysign to all platforms. Finally it fixes differences between platforms like different results or exceptions for edge cases. Have fun :)
2008-04-18 23:13:07 +00:00
Amaury Forgeot d'Arc
14d6b0f8f0
Update project files for all Windows supported compilers
2008-04-14 19:55:40 +00:00
Brett Cannon
76ca13ca2a
Fix an accidental bug of an non-existent init function.
2008-04-13 00:25:15 +00:00
Brett Cannon
e974689038
Re-implement the 'warnings' module in C. This allows for usage of the
...
'warnings' code in places where it was previously not possible (e.g., the
parser). It could also potentially lead to a speed-up in interpreter start-up
if the C version of the code (_warnings) is imported over the use of the
Python version in key places.
Closes issue #1631171 .
2008-04-12 23:44:07 +00:00
Amaury Forgeot d'Arc
7adc776ea6
Issue 2408: remove the _types module
...
It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType),
when they can easily be obtained with python code.
These expressions even work with Jython.
I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 )
at least this change makes it simpler.
2008-04-08 22:07:05 +00:00
Andrew M. Kuchling
eba0004198
Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit
2008-04-08 01:33:10 +00:00
Mark Hammond
495cf99aaf
Issue #2513 : enable 64bit cross compilation on windows.
2008-04-07 01:53:39 +00:00