I use functools and itertools in pretty much every module. I find them so essential that I'm annoyed that I have to import their functions in every module I write. I'd like to create a module, let's call it mytools that imports all of the functions from functools and itertools and makes their functions directly available to any module that imports mytools.
I'm specifically interested in manipulating the import system in this way, so please avoid sidestepping this approach in solutions just for the sake of making functools and itertools easily available.
mytoolsthat itself imports what you want? What exactly is your question here, what difficulty are you encountering?