Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
same context functions
#8
Skaperen Wrote:but nearly all of them involve a number of variables in the local context, such as emulating a terminal screen.
Again, the normal pythonic solution is to use instance variables and not variables in the local context. For example
class CookingPot:
    pass

def my_func(lines):
    pot = CookingPot()
    for line in lines:
        for c in line:
            if c == 'a':
                pot.spam = 'foo'
            elif c == 'b':
                pot.spam = 'bar'
            elif c == 'c':
                bacon(pot)

def bacon(pot):
    pot.spam = 'qux'
Also remember that the mapping returned by locals() is not writable.
Reply


Messages In This Thread
same context functions - by Skaperen - Jun-16-2019, 01:33 AM
RE: same context functions - by Yoriz - Jun-16-2019, 07:33 AM
RE: same context functions - by DeaD_EyE - Jun-16-2019, 09:40 AM
RE: same context functions - by Skaperen - Jun-16-2019, 06:26 PM
RE: same context functions - by Gribouillis - Jun-16-2019, 08:41 PM
RE: same context functions - by Skaperen - Jun-17-2019, 12:22 AM
RE: same context functions - by Skaperen - Jun-17-2019, 04:05 AM
RE: same context functions - by Gribouillis - Jun-17-2019, 06:37 AM
RE: same context functions - by Skaperen - Jun-17-2019, 05:35 PM
RE: same context functions - by Gribouillis - Jun-17-2019, 08:36 PM
RE: same context functions - by Skaperen - Jun-18-2019, 05:09 AM
RE: same context functions - by Gribouillis - Jun-18-2019, 05:43 AM
RE: same context functions - by Skaperen - Jun-18-2019, 06:09 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  exception context Skaperen 0 2,383 Mar-06-2021, 08:42 PM
Last Post: Skaperen
  function to store in caller's context Skaperen 7 3,188 Jul-27-2020, 08:45 PM
Last Post: Skaperen
  turning my function into a context manager Skaperen 2 2,060 Nov-14-2019, 09:08 PM
Last Post: Skaperen
  i want to make my own context manager Skaperen 0 1,738 Nov-10-2019, 05:21 AM
Last Post: Skaperen
  Windows Context Menu Depth GWild 0 2,373 Jan-27-2018, 07:18 AM
Last Post: GWild

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020