Skip to content
Snippets Groups Projects
  1. May 20, 2016
  2. May 17, 2016
    • Paul Sokolovsky's avatar
      py/stream: Support both "exact size" and "one underlying call" operations. · 7f7c84b1
      Paul Sokolovsky authored
      Both read and write operations support variants where either a) a single
      call is made to the undelying stream implementation and returned buffer
      length may be less than requested, or b) calls are repeated until requested
      amount of data is collected, shorter amount is returned only in case of
      EOF or error.
      
      These operations are available from the level of C support functions to be
      used by other C modules to implementations of Python methods to be used in
      user-facing objects.
      
      The rationale of these changes is to allow to write concise and robust
      code to work with *blocking* streams of types prone to short reads, like
      serial interfaces and sockets. Particular object types may select "exact"
      vs "once" types of methods depending on their needs. E.g., for sockets,
      revc() and send() methods continue to be "once", while read() and write()
      thus converted to "exactly" versions.
      
      These changes don't affect non-blocking handling, e.g. trying "exact"
      method on the non-blocking socket will return as much data as available
      without blocking. No data available is continued to be signaled as None
      return value to read() and write().
      
      From the point of view of CPython compatibility, this model is a cross
      between its io.RawIOBase and io.BufferedIOBase abstract classes. For
      blocking streams, it works as io.BufferedIOBase model (guaranteeing
      lack of short reads/writes), while for non-blocking - as io.RawIOBase,
      returning None in case of lack of data (instead of raising expensive
      exception, as required by io.BufferedIOBase). Such a cross-behavior
      should be optimal for MicroPython needs.
      7f7c84b1
  3. May 14, 2016
  4. May 13, 2016
  5. May 12, 2016
  6. May 11, 2016
  7. May 10, 2016
  8. May 09, 2016
    • Paul Sokolovsky's avatar
      py/vstr: Change allocation policy, +16 to requested size, instead of *2. · 6f34e138
      Paul Sokolovsky authored
      Effect measured on esp8266 port:
      
      Before:
      >>> pystone_lowmem.main(10000)
      Pystone(1.2) time for 10000 passes = 44214 ms
      This machine benchmarks at 226 pystones/second
      >>> pystone_lowmem.main(10000)
      Pystone(1.2) time for 10000 passes = 44246 ms
      This machine benchmarks at 226 pystones/second
      
      After:
      >>> pystone_lowmem.main(10000)
      Pystone(1.2) time for 10000 passes = 44343ms
      This machine benchmarks at 225 pystones/second
      >>> pystone_lowmem.main(10000)
      Pystone(1.2) time for 10000 passes = 44376ms
      This machine benchmarks at 225 pystones/second
      6f34e138
    • Paul Sokolovsky's avatar
      Revert "py/objstr: .format(): Avoid call to vstr_null_terminated_str()." · 40f0096e
      Paul Sokolovsky authored
      This reverts commit 6de8dbb4. The change
      was incorrect (correct change would require comparing with end pointer in
      each if statement in the block).
      40f0096e
    • Paul Sokolovsky's avatar
      py/vstr: vstr_null_terminated_str(): Extend string by at most one byte. · a1f2245a
      Paul Sokolovsky authored
      vstr_null_terminated_str is almost certainly a vstr finalization operation,
      so it should add the requested NUL byte, and not try to pre-allocate more.
      The previous implementation could actually allocate double of the buffer
      size.
      a1f2245a
    • Paul Sokolovsky's avatar
      py/objstr: .format(): Avoid call to vstr_null_terminated_str(). · 6de8dbb4
      Paul Sokolovsky authored
      By comparing with string end pointer instead of checking for NUL byte.
      Should alleviate reallocations and fragmentation a tiny bit.
      6de8dbb4
    • Damien George's avatar
      py/mpz: Fix mpn_div so that it doesn't modify memory of denominator. · 460b0863
      Damien George authored
      Previous to this patch bignum division and modulo would temporarily
      modify the RHS argument to the operation (eg x/y would modify y), but on
      return the RHS would be restored to its original value.  This is not
      allowed because arguments to binary operations are const, and in
      particular might live in ROM.  The modification was to normalise the arg
      (and then unnormalise before returning), and this patch makes it so the
      normalisation is done on the fly and the arg is now accessed as read-only.
      
      This change doesn't increase the order complexity of the operation, and
      actually reduces code size.
      460b0863
  9. May 08, 2016
  10. May 07, 2016
  11. May 04, 2016
  12. May 02, 2016
  13. Apr 28, 2016
    • Paul Sokolovsky's avatar
      extmod/modwebrepl: Module to handle WebREPL protocol. · 25d0f7d5
      Paul Sokolovsky authored
      While just a websocket is enough for handling terminal part of WebREPL,
      handling file transfer operations requires demultiplexing and acting
      upon, which is encapsulated in _webrepl class provided by this module,
      which wraps a websocket object.
      25d0f7d5
  14. Apr 27, 2016
  15. Apr 26, 2016
Loading