Go to file
Jason Mehring 0dbcdb8c0d qubes: pep8 fixes
-------------------------------------------------------------------------------
ISSUES:
-------------------------------------------------------------------------------

- Some auto-corrected code (when line is too long) may still be over-indented.
  It can be manually chaged and it will be left alone, or is it acceptable as
  I am not sure how strict your rule is for under-indented lines for which
  context.  If you want this only indented 4 spaces, I can work on it some more.
  [Also @ ~line:385 in new file]

  For example, __init__.py:382
  OLD:
    def __contains__(self, key):
        return any((key == vm or key == vm.qid or key == vm.name) for vm in self)

  NEW:
    def __contains__(self, key):
        return any((key == vm or key == vm.qid or key == vm.name)
                   for vm in self)

- will not detect if there are more than 2 spaces between function methods

-------------------------------------------------------------------------------
FIXED:
-------------------------------------------------------------------------------
- Now uses the most horizontial space and does not use excessive lines when
  splitting a line

- __init__:489
  - '#' comments being indented for some lines and not others; would like no indent
  - Only happens if line preceeding comment ends in a ':'

E128 - Fix visual indentation
E128 - Fix a badly indented line [Now allows under-indented lines]

E309 - Add missing blank line (after class declaration) [No longer adds it]

E303 - Remove extra blank lines [Now allows 2 blank lines between function defs]
       [TODO: Create definition to enforce this]

Conflicts:
	qubes/__init__.py
2015-06-29 17:39:26 +02:00
core core3 move: QubesVmCollection 2015-06-29 17:39:23 +02:00
core-modules Fixed typos 2015-06-29 17:39:26 +02:00
dispvm dispvm: clean the VM in case of failed savefile creation 2015-05-15 03:22:06 +02:00
doc Fixed typos 2015-06-29 17:39:26 +02:00
linux linux/block-snapshot: fix handling root.img being already block device 2015-05-27 23:52:57 +02:00
qmemman Fixed typos 2015-06-29 17:39:26 +02:00
qubes qubes: pep8 fixes 2015-06-29 17:39:26 +02:00
qubes-rpc Convert qubes.NotifyTools service to use qubesdb 2015-06-23 00:14:57 +02:00
qubes-rpc-policy qubes-rpc-policy/qubes.GetImageRGBA.policy 2014-05-20 17:49:20 +02:00
qvm-tools Fixed typos 2015-06-29 17:39:26 +02:00
relaxng rpm: install RelaxNG specfiles 2015-06-29 17:39:26 +02:00
rpm_spec rpm: install RelaxNG specfiles 2015-06-29 17:39:26 +02:00
site-packages add convenient symlinks simulating target python files layout 2014-03-10 01:05:01 +01:00
site-packages-qmemman Convenient link for qmemman 2014-04-23 12:53:41 +02:00
tests qubes/tests: Move unit tests inside qubes/, add runner 2015-06-29 17:39:24 +02:00
vm-config Explicitly enable emulated GPU 2015-02-09 06:04:31 +01:00
.gitignore gitignore 2015-05-04 00:35:57 +02:00
.pylintrc Add vm to goodnames in .pylintrc 2015-06-29 17:39:26 +02:00
installer.wxs windows/installer: configurable destination directory 2014-11-19 12:50:31 +01:00
LICENSE Added LICENSE 2010-04-05 21:21:27 +02:00
Makefile rpm: install RelaxNG specfiles 2015-06-29 17:39:26 +02:00
Makefile.builder windows: installer 2014-11-19 12:50:30 +01:00
version version 3.0.14 2015-06-02 11:19:48 +02:00