diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-02-16 18:44:52 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-02-16 18:44:52 (GMT) |
commit | bb8b78b77af4de1a9804773b6f64363e6210bb28 (patch) | |
tree | 28c99e312844cb22d3bb1635bbd77868d9f5fb41 /Modules | |
parent | a5d2b4cb180ec87d006d63f838860fba785bcad0 (diff) | |
download | cpython-bb8b78b77af4de1a9804773b6f64363e6210bb28.zip cpython-bb8b78b77af4de1a9804773b6f64363e6210bb28.tar.gz cpython-bb8b78b77af4de1a9804773b6f64363e6210bb28.tar.bz2 |
Fix the name of the header file.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index fb7b046..54d0c4a 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -133,7 +133,7 @@ Socket methods: /* Generic _socket.h definitions and includes */ #define PySocket_BUILDING_SOCKET -#include "_socket.h" +#include "socketmodule.h" /* Addressing includes */ |