Skip to content

Commit ab594b6

Browse files
committed
Merge branch '2.0dev' into 2.0merge
Conflicts: .gitignore .pylint examples/miniedit.py mininet/node.py mininet/util.py util/install.sh util/vm/install-mininet-vm.sh
2 parents ad85e44 + 1f1d590 commit ab594b6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5394
-1542
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.py diff=python

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
mnexec
22
*.pyc
33
*~
4+
*.1
5+
*.xcodeproj
6+
*.xcworkspace
7+
\#*\#
48
mininet.egg-info
59
build
610
dist
11+
doc/html
12+
doc/latex
13+
trunk
14+

.pylint

+10-22
Original file line numberDiff line numberDiff line change
@@ -25,42 +25,30 @@ ignore=CVS
2525
# Pickle collected data for later comparisons.
2626
persistent=yes
2727

28-
# Set the cache size for astng objects.
29-
cache-size=500
30-
3128
# List of plugins (as comma separated values of python modules names) to load,
3229
# usually to register additional checkers.
3330
load-plugins=
3431

3532

3633
[MESSAGES CONTROL]
3734

38-
# Enable only checker(s) with the given id(s). This option conflicts with the
39-
# disable-checker option
40-
#enable-checker=
41-
42-
# Enable all checker(s) except those with the given id(s). This option
43-
# conflicts with the enable-checker option
44-
#disable-checker=
45-
46-
# Enable all messages in the listed categories (IRCWEF).
47-
#enable-msg-cat=
48-
49-
# Disable all messages in the listed categories (IRCWEF).
50-
disable-msg-cat=IR
51-
52-
# Enable the message(s) with the given id(s).
53-
#enable-msg=
35+
# Enable the message, report, category or checker with the given id(s). You can
36+
# either give multiple identifier separated by comma (,) or put this option
37+
# multiple time.
38+
#enable=
5439

55-
# Disable the message(s) with the given id(s).
40+
# Disable the message, report, category or checker with the given id(s). You
41+
# can either give multiple identifier separated by comma (,) or put this option
42+
# multiple time (only on the command line, not in the configuration file where
43+
# it should appear only once).
5644
disable=W0704,C0103,W0231,E1102,W0511,W0142,R0902,R0903,R0904,R0913,R0914,R0801,I0011
5745

5846

5947
[REPORTS]
6048

6149
# Set the output format. Available formats are text, parseable, colorized, msvs
6250
# (visual studio) and html
63-
output-format=text
51+
output-format=colorized
6452

6553
# Include message's id in outpu
6654
include-ids=yes
@@ -276,7 +264,7 @@ int-import-graph=
276264
max-line-length=80
277265

278266
# Maximum number of lines in a module
279-
max-module-lines=1000
267+
max-module-lines=1500
280268

281269
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
282270
# tab).

0 commit comments

Comments
 (0)