whitespace python3 cleanup
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 29 Mar 2018 08:33:21 +0000 (09:33 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 29 Mar 2018 08:33:21 +0000 (09:33 +0100)
src/pinmux_generator.py
src/spec/__init__.py
src/spec/m_class.py

index 6b8452590082b55fcaad1b2e2bc28102967498a0..7d2ddade75010699a302ecf58ee99eb0b0c51a7a 100644 (file)
@@ -49,7 +49,7 @@ if __name__ == '__main__':
              'version=',
              ])
     except getopt.GetoptError as err:
-        print "ERROR: %s" % str(err)
+        print ("ERROR: %s" % str(err))
         printhelp()
         sys.exit(1)
 
@@ -73,7 +73,7 @@ if __name__ == '__main__':
 
     if pinspec:
         if pinspec not in modules:
-            print "ERROR: spec type '%s' does not exist" % pinspec
+            print ("ERROR: spec type '%s' does not exist" % pinspec)
             printhelp()
             sys.exit(1)
         module = modules[pinspec]
@@ -82,7 +82,7 @@ if __name__ == '__main__':
     else:
         gentypes = {'bsv': bsvgen}
         if output_type not in gentypes:
-            print "ERROR: output type '%s' does not exist" % output_type
+            print ("ERROR: output type '%s' does not exist" % output_type)
             printhelp()
             sys.exit(0)
         gentypes[output_type](output_dir, validate)
index 9ec2d1500ee72382216fcab8fbb3180957c96db0..4f2db3d208405c97db1a2533cd3c1d0e74c50fba 100644 (file)
@@ -1,5 +1,5 @@
-import m_class
-import c_class
+from spec import m_class
+from spec import c_class
 from gen import specgen
 
 modules = {'m_class': m_class,
index a43dc4a05ee1ab4471cc066693c3d6a9746836ff..be8ccb1e93da58c8efb72d3380504b1fced23609 100644 (file)
@@ -1,13 +1,13 @@
 #!/usr/bin/env python
 
-from interfaces import jtag, uart, ulpi, uartfull, rgbttl, rgmii
-from interfaces import flexbus1, flexbus2, sdram1, sdram2, mcu8080
-from interfaces import eint, pwm, gpio, spi, i2c, emmc, sdmmc
-from interfaces import quadspi, i2s
-from interfaces import pinmerge, Pinouts
+from spec.interfaces import jtag, uart, ulpi, uartfull, rgbttl, rgmii
+from spec.interfaces import flexbus1, flexbus2, sdram1, sdram2, mcu8080
+from spec.interfaces import eint, pwm, gpio, spi, i2c, emmc, sdmmc
+from spec.interfaces import quadspi, i2s
+from spec.interfaces import pinmerge, Pinouts
 
-from ifaceprint import display, display_fns, check_functions
-from ifaceprint import display_fixed
+from spec.ifaceprint import display, display_fns, check_functions
+from spec.ifaceprint import display_fixed
 
 
 def pinspec():
@@ -137,18 +137,14 @@ def pinspec():
     mmc2 = sdmmc(bankspec, "2", ('G', 28), "G", 2, start=2)
     pinmerge(pinouts, mmc2)
 
-    print "# Pinouts (PinMux)"
-    print
-    print "auto-generated by [[pinouts.py]]"
-    print
-    print "[[!toc  ]]"
-    print
-    print pinouts.keys()
+    print ("""# Pinouts (PinMux)
+auto-generated by [[pinouts.py]]
+
+[[!toc  ]]
+""")
     display(pinouts)
-    print
 
-    print "# Pinouts (Fixed function)"
-    print
+    print ("\n# Pinouts (Fixed function)\n")
 
     fixedpins = {
         'DDR3': [
@@ -334,10 +330,10 @@ def pinspec():
 
     fixedpins = display_fixed(fixedpins, len(pinouts))
 
-    print "# Functions (PinMux)"
-    print
-    print "auto-generated by [[pinouts.py]]"
-    print
+    print ("""# Functions (PinMux)
+
+auto-generated by [[pinouts.py]]
+""")
 
     function_names = {'EINT': 'External Interrupt',
                       'FB': 'MC68k FlexBus',
@@ -679,18 +675,18 @@ def pinspec():
                                   iot, iot_eint, iot_pwm,
                                   descriptions)
 
-    print "# Reference Datasheets"
-    print
-    print "datasheets and pinout links"
-    print
-    print "* <http://datasheets.chipdb.org/AMD/8018x/80186/amd-80186.pdf>"
-    print "* <http://hands.com/~lkcl/eoma/shenzen/frida/FRD144A2701.pdf>"
-    print "* <http://pinouts.ru/Memory/sdcard_pinout.shtml>"
-    print "* p8 <http://www.onfi.org/~/media/onfi/specs/onfi_2_0_gold.pdf?la=en>"
-    print "* <https://www.heyrick.co.uk/blog/files/datasheets/dm9000aep.pdf>"
-    print "* <http://cache.freescale.com/files/microcontrollers/doc/app_note/AN4393.pdf>"
-    print "* <https://www.nxp.com/docs/en/data-sheet/MCF54418.pdf>"
-    print "* ULPI OTG PHY, ST <http://www.st.com/en/interfaces-and-transceivers/stulpi01a.html>"
-    print "* ULPI OTG PHY, TI TUSB1210 <http://ti.com/product/TUSB1210/>"
+    print ("""# Reference Datasheets
+
+datasheets and pinout links
+* <http://datasheets.chipdb.org/AMD/8018x/80186/amd-80186.pdf>
+* <http://hands.com/~lkcl/eoma/shenzen/frida/FRD144A2701.pdf>
+* <http://pinouts.ru/Memory/sdcard_pinout.shtml>
+* p8 <http://www.onfi.org/~/media/onfi/specs/onfi_2_0_gold.pdf?la=en>
+* <https://www.heyrick.co.uk/blog/files/datasheets/dm9000aep.pdf>
+* <http://cache.freescale.com/files/microcontrollers/doc/app_note/AN4393.pdf>
+* <https://www.nxp.com/docs/en/data-sheet/MCF54418.pdf>
+* ULPI OTG PHY, ST <http://www.st.com/en/interfaces-and-transceivers/stulpi01a.html>
+* ULPI OTG PHY, TI TUSB1210 <http://ti.com/product/TUSB1210/>
+""")
 
     return pinouts, bankspec, fixedpins