Python global keyword vs. Pylint W0603

25,051

Solution 1

Generalized use of global variables can make maintenance a nightmare, because they make tracing the flow of your program, and sometimes you get weird bug, because some module has read the variable and acted on its value before some other module changed the value of the variable (and this can result from inverting two import statements in some unrelated 3rd module). See also the wikipedia entry on Global variables.

This is why you should avoid mutable global variables, IMO, and why Pylint issues a warning (and probably should issue more of them. Detecting the use of the global keyword is just an easy way of spotting some of them).

Don't take me wrong: I am not saying you must not use global variables. Only that you should avoid using them. There are lots of legit cases for global variables in Python. As long as you don't get more than a couple W0603, you should fare OK.

Now, Logilab (the company maintaining Pylint, and where I used to work) once had to take over maintenance of a piece of > 50kloc of Python code, with heavy duplication and 100+ mutable global variables. And this was hell.

Solutions to work around global variables include:

  • adding a parameter to the functions which need to access the variable
  • using class attributes
  • using instance attributes (by passing the value you need to the constructor of the class)
  • centralizing mutable global values in a Configuration object which is build so that it is instantiated once at program startup (using environment variables, command line, configuration file...) and never mutated after this.

Solution 2

I would replace this:

the_file = None

def open_the_file(fname):
    global the_file
    the_file = open(fname)

def write_to_the_file(data):
    the_file.write(data)

open_the_file("boo")
write_to_the_file("Hi!")

with this:

class FileProgram(object):
    def __init__(self):
        self.the_file = None

    def open_the_file(fname):
        self.the_file = open(fname)

    def write_to_the_file(data):
        self.the_file.write(data)

if __name__ == "__main__":
    prog = FileProgram()
    prog.open_the_file("boo")
    prog.write_to_the_file("Hi!")

You might say, "that's too complicated for my simple task!" OK, then don't run pylint on your program. You can't ask that pylint understand that your program is too small to use good structure.

Solution 3

In python, a module sharing global data like this is pretty much a singleton. you could accomplish the same thing with a singleton class, or ask yourself whether there is any reason you actually need a singleton. If you don't need a singleton -- use a regular class (instance). If you do need a singleton, google/search SO to figure out which pattern you think will suit you best. Maybe you do want a module -- there is a niche for global -- Otherwise Guido would have cut it out of the language a long time ago -- That niche just happens to be pretty small...

Share:
25,051
Jovik
Author by

Jovik

Updated on January 29, 2022

Comments

  • Jovik
    Jovik about 2 years

    Pylint W0603 states:

    Using the global statement. Used when you use the "global" statement to update a global variable. PyLint just try to discourage this usage. That doesn't mean you can not use it !

    I wonder why is it so? Is there any more Pythonic way of modifying immutable, module-wide variables inside a function? Is it recommended to pack them inside mutable variables like dictionaries? Or maybe turn entire module into class?

    In my opinion this warning should disappear when variable is suggested to be "private" (prefixed with _ or __).

  • Jovik
    Jovik over 11 years
    This seems like a lot of overhead for e.g sharing a filnename between functions within a module. I was surprised to see Pylint W0603 warning, since I've never encountered this kind of negative approach towards global statement
  • mgilson
    mgilson over 11 years
    @Jovik -- then you haven't read very many SO questions where OP used global ;-). In any event, Pylint is just a project that checks code against the Pylint dev's ideal for code. Some of those are pretty well backed (e.g. PEP 8 compliance), but you're free to write code however you wish (even if Pylint complains). I'm just laying out a few alternatives that would probably make Pylint happy.
  • Jovik
    Jovik over 11 years
    I like to keep my code Pylint compliant; hopefully it'll be easier for others to understand. Usually I keep my global variables in a dictionary, which makes global useless, but this time I need to keep a reference to a single object. Thanks for your time.
  • Charles Beattie
    Charles Beattie over 11 years
    Global state data is often considered a bad design choice see: Why is Global State so Evil? programmers.stackexchange.com/questions/148108/…
  • yantrab
    yantrab over 11 years
    @Jovik: putting globals in a dict to avoid a pylint warning is missing the point completely. The point is to avoid global state. Hiding it in a dict to avoid the statement that triggers the warning is just putting black tape over the engine warning light. It's not solving the problem.
  • mgilson
    mgilson over 11 years
    @NedBatchelder -- Wait ... Are you saying that I should actually do something to take care of the "check engine" light that is on in my car?
  • mgilson
    mgilson over 11 years
    Shouldn't you have a def close_the_file in there somewhere? Or even better, turn your class into a context manager! Woo!
  • Jovik
    Jovik over 11 years
    @NedBatchelder - It's an old habit from C, where I got used to keeping data in a context structure. In Python it's an immutable type, so I see no reason against it. Or am I wrong?
  • Jovik
    Jovik over 11 years
    @mgilson - you're right; that's what I meant. My brain is washed out after 9 hours of coding
  • yantrab
    yantrab over 11 years
    @Jovik: read the answers here: it's best to have NO GLOBALS. Also, using a struct in C is good because you can allocate it once. There's no reason in Python to store 4 variables as 4 keys in a dict.