I want to make sure that no developer on our codebase can ever check in code that uses strftime
. It's a super useful method, but since it can't be used on dates before 1900, it's a constant source of bugs that we only discover once code goes live.
I've thought of a few ways to make it so it can't be used:
Create an inspection in Intellij that throws an error when
strftime
is encountered.(This seems OK, but creating Intellij inspections is a big deal.)
Create a unittest that greps any changes that are currently in the code and makes sure
strftime
hasn't snuck back in again.(Seems hacky and adds a dependency for some git tool.)
Create a git hook of some kind that explodes when strftime appears in a commit.
(Looked into this but git hooks must be manually symlinked which kind of defeats the point -- kind of.)
Subclass the
datetime
module with an implementation that raises aNotImplemented
error ifstrftime
is ever used.(But people could still import the regular datetime module.)
Just train myself and everybody else that it's the devil.
(But this hasn't worked so far.)
I feel like this is probably something that has a standard way of being resolved. Any suggestions?
Here's a variant of (4). I'm not necessarily sure if it's the best way to accomplish this, but it will work. Put this in your top-level
__init__.py
, which runs before everything else:This will monkey-patch the built-in
datetime.datetime
implementation with your hacked version. It's important to realize this will also break any of your dependencies which may be usingdatetime.strftime()
, so test before deploying.EDIT: I'm not sure if this will work, but you may be able to abuse Python's warnings system into working around the dependency problem. Start by changing your implementation to this:
This will issue a deprecation warning whenever the function is called. Deprecation warnings are ignored by default, so this will not create false positives for Django. You can then install a warning filter like so:
In theory, this filter should only raise exceptions on code within
your_package
. In practice, I have not tested it, so it might not raise any exceptions whatsoever.