[ python-Bugs-1280924 ] PyDateTime_Check references static object
SourceForge.net
noreply at sourceforge.net
Fri Sep 2 21:14:05 CEST 2005
Bugs item #1280924, was opened at 2005-09-02 14:14
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1280924&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Library
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Skip Montanaro (montanaro)
Assigned to: Nobody/Anonymous (nobody)
Summary: PyDateTime_Check references static object
Initial Comment:
In trying to use the C API for datetime objects, we
noticed that
PyDateTime_Check references PyDateTime_DateTimeType,
which is declared static in datetimemodule.c. This is true
for 2.3, 2.4 and CVS. That suggests that either
PyDateTime_Check
is supposed to only be used in the datetime module (in
which case it is incorrectly named or its definition is
in the
wrong file) or the static and statichere declarations
need to
be removed from it.
On the assumption that PyDateTime_Check is supposed to be
publically used, I'm going to opt for the latter fix.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1280924&group_id=5470
More information about the Python-bugs-list
mailing list