Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d79fa9e5
Commit
d79fa9e5
authored
Oct 12, 2007
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1216: Restore support for Visual Studio 2002.
parent
d6f63818
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
Misc/NEWS
Misc/NEWS
+5
-0
PC/pyconfig.h
PC/pyconfig.h
+2
-2
No files found.
Misc/NEWS
View file @
d79fa9e5
...
...
@@ -151,6 +151,11 @@ Build
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
to include some information about the build environment.
Windows
-------
- Bug #1216: Restore support for Visual Studio 2002.
What'
s
New
in
Python
2.5.1
?
=============================
...
...
PC/pyconfig.h
View file @
d79fa9e5
...
...
@@ -350,11 +350,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
define these.
If some compiler does not provide them, modify the #if appropriately. */
#if defined(_MSC_VER)
#if _MSC_VER > 1
201
#if _MSC_VER > 1
300
#define HAVE_UINTPTR_T 1
#define HAVE_INTPTR_T 1
#else
/* VC6
&
eVC4 don't support the C99 LL suffix for 64-bit integer literals */
/* VC6
, VS 2002 and
eVC4 don't support the C99 LL suffix for 64-bit integer literals */
#define Py_LL(x) x##I64
#endif
/* _MSC_VER > 1200 */
#endif
/* _MSC_VER */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment