[Python-Dev] Split unicodeobject.c into subfiles? (original) (raw)
Benjamin Peterson benjamin at python.org
Sun Oct 7 23:26:04 CEST 2012
- Previous message: [Python-Dev] Split unicodeobject.c into subfiles?
- Next message: [Python-Dev] Split unicodeobject.c into subfiles?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
2012/10/7 Victor Stinner <victor.stinner at gmail.com>:
Another problem with huge files is to handle "dependencies" with static functions. If the function A calls the function B which calls the function C, you have to order A, B and C "correctly" if these functions are private and not declared at the top of the file.
Having separate files doesn't alleviate this, though. If they're in separate files, you have to have header files of prototypes.
-- Regards, Benjamin
- Previous message: [Python-Dev] Split unicodeobject.c into subfiles?
- Next message: [Python-Dev] Split unicodeobject.c into subfiles?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]