Skip to content
Snippets Groups Projects
Select Git revision
  • 71be1ddeb128e6068d2f1df605ec9c8c10f67091
  • master default protected
  • schneider/ir
  • rahix/user-space-ctx
  • schneider/iaq-python
  • schneider/ble-mini-demo
  • schneider/ble-ecg-stream-visu
  • schneider/mp-exception-print
  • schneider/sleep-display
  • schneider/deepsleep4
  • schneider/deepsleep2
  • schneider/deepsleep
  • schneider/ble-central
  • rahix/bluetooth-app-favorite
  • schneider/v1.17-changelog
  • schneider/ancs
  • schneider/png
  • schneider/freertos-list-debug
  • schneider/212-reset-hardware-when-entering-repl
  • schneider/bonding-fail-if-full
  • schneider/ble-fixes-2020-3
  • v1.18
  • v1.17
  • v1.16
  • v1.15
  • v1.14
  • v1.13
  • v1.12
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
41 results

group__UART__STATUS.html

Blame
  • open_append.py 511 B
    try:
        import uos as os
    except ImportError:
        import os
    
    if not hasattr(os, "remove"):
        print("SKIP")
        raise SystemExit
    
    # cleanup in case testfile exists
    try:
        os.remove("testfile")
    except OSError:
        pass
    
    # Should create a file
    f = open("testfile", "a")
    f.write("foo")
    f.close()
    
    f = open("testfile")
    print(f.read())
    f.close()
    
    f = open("testfile", "a")
    f.write("bar")
    f.close()
    
    f = open("testfile")
    print(f.read())
    f.close()
    
    # cleanup
    try:
        os.remove("testfile")
    except OSError:
        pass