File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
# pygtk.require().
8
8
# init-hook=
9
9
10
- # Add files or directories to the blacklist . They should be base names, not
10
+ # Add files or directories to the ignore list . They should be base names, not
11
11
# paths.
12
12
ignore =CVS
13
13
14
- # Add files or directories matching the regex patterns to the blacklist . The
14
+ # Add files or directories matching the regex patterns to the ignore list . The
15
15
# regex matches against base names, not paths.
16
16
ignore-patterns =
17
17
@@ -32,7 +32,7 @@ unsafe-load-any-extension=no
32
32
# A comma-separated list of package or module names from where C extensions may
33
33
# be loaded. Extensions are loading into the active Python interpreter and may
34
34
# run arbitrary code
35
- extension-pkg-whitelist =
35
+ extension-pkg-allow-list =
36
36
37
37
# Allow optimization of some AST trees. This will activate a peephole AST
38
38
# optimizer, which will apply various small optimizations. For instance, it can
Original file line number Diff line number Diff line change 343
343
"policies" : {},
344
344
# Function mapping agent ids to policy ids.
345
345
"policy_mapping_fn" : None ,
346
- # Optional whitelist of policies to train, or None for all policies.
346
+ # Optional list of policies to train, or None for all policies.
347
347
"policies_to_train" : None ,
348
348
# Optional function that can be used to enhance the local agent
349
349
# observations to include more state.
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ def __init__(self,
164
164
policy ids in multi-agent mode. This function will be called
165
165
each time a new agent appears in an episode, to bind that agent
166
166
to a policy for the duration of the episode.
167
- policies_to_train (list): Optional whitelist of policies to train,
167
+ policies_to_train (list): Optional list of policies to train,
168
168
or None for all policies.
169
169
tf_session_creator (func): A function that returns a TF session.
170
170
This is optional and only useful with TFPolicy.
You can’t perform that action at this time.
0 commit comments