Shun-ichi GOTO <shunichi.goto@gmail.com>


Found Patch
r862923 r846276

r846276 | xsteve | 2003-06-11 20:08:24 +0000 (Wed, 11 Jun 2003)

* The xemacs menu should work now
* New variable svn-status-wash-control-M-in-process-buffers

Plus some contributed changes:

Patch by: Shun-ichi GOTO  <gotoh@taiyo.co.jp>

  - Convert path separator as Unix style on windows-nt
  - New helper function svn-parse-rev-num
  - (svn-parse-status-result): Parse status line with format not using
    `split-string' to treat a filename which contains spaces. And also
    "A  +" status line format can be handled correctly.


r862923 | djames | 2007-01-01 00:21:41 +0000 (Mon, 01 Jan 2007)

Update Python bindings to correctly treat "None" as an empty stream.
Add tests to verify this fix.

Found by: Markus Fuchs <m.fuchs@fplusp.com>
          Shun-ichi GOTO <shunichi.goto@gmail.com>

[ In subversion/bindings/swig/python ]

  * libsvn_swig_py/swigutil_py.c
    (read_handler_pyio): If py_io is None, return a short read
    to indicate an empty stream.
    (write_handler_pyio): If py_io is None, ignore the input.

  * tests/repository.py
    (test_dump_fs2): Update test to reflect that if you pass in
    None as a stream, it will be treated as an empty stream.

  * tests/ra.py
    (test_get_file): Add test for this function.