summaryrefslogtreecommitdiff
path: root/tests/functional/r/regression/regression_4891.py
blob: 34945e8126841fdd4cbb01d1a2c490901b3bbd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# pylint: disable=missing-module-docstring
# pylint: disable=too-few-public-methods
import copy

class MyData:
    '''
    class docstring
    '''
    def __init__(self):
        self.data = {}

    def process(self):
        '''
        another method is responsible for putting "static_key"
        '''
        copy.copy(self.data['static_key'])