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
5687ffe0
Commit
5687ffe0
authored
Feb 28, 2001
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF patch 404928: Support for next Cygwin gcc (2.95.2-8)
parent
c6cecf55
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
13 deletions
+4
-13
Modules/_sre.c
Modules/_sre.c
+1
-4
Modules/gdbmmodule.c
Modules/gdbmmodule.c
+1
-1
Python/exceptions.c
Python/exceptions.c
+2
-8
No files found.
Modules/_sre.c
View file @
5687ffe0
...
...
@@ -2369,10 +2369,7 @@ static PyMethodDef _functions[] = {
{
NULL
,
NULL
}
};
void
#if defined(WIN32)
__declspec
(
dllexport
)
#endif
DL_EXPORT
(
void
)
init_sre
(
void
)
{
PyObject
*
m
;
...
...
Modules/gdbmmodule.c
View file @
5687ffe0
...
...
@@ -11,7 +11,7 @@
#include <fcntl.h>
#include "gdbm.h"
#if
def WIN32
#if
defined(WIN32) && !defined(__CYGWIN__)
#include "gdbmerrno.h"
extern
const
char
*
gdbm_strerror
(
gdbm_error
);
#endif
...
...
Python/exceptions.c
View file @
5687ffe0
...
...
@@ -1042,10 +1042,7 @@ static struct {
void
#ifdef WIN32
__declspec
(
dllexport
)
#endif
/* WIN32 */
DL_EXPORT
(
void
)
init_exceptions
(
void
)
{
char
*
modulename
=
"exceptions"
;
...
...
@@ -1128,10 +1125,7 @@ init_exceptions(void)
}
void
#ifdef WIN32
__declspec
(
dllexport
)
#endif
/* WIN32 */
DL_EXPORT
(
void
)
fini_exceptions
(
void
)
{
int
i
;
...
...
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