Displaying 2 results from an estimated 2 matches for "xticsjy".
Did you mean:
xtics
2018 Aug 06
0
Re: [PATCH] v2v: rhv-plugin: Use string literal concatenation
...at http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-top is 'top' for virtual machines. Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://people.redhat.com/~rjones/virt-top
--8cpS+6Cx+xtICsjy
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=send-email
#!/bin/sh -
# Sane wrapper around git send-email.
#
# Example:
# send-email " v2" HEAD~10 libguestfs@redhat.com CC@example.com CC@bar.example.com
# To test, send it to yourself first:
# se...
2018 Aug 06
2
Re: [PATCH] v2v: rhv-plugin: Use string literal concatenation
On Mon, Aug 6, 2018 at 11:02 AM Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Sun, Aug 05, 2018 at 04:37:31PM +0300, Nir Soffer wrote:
> > When splitting long strings over multiple lines, we can use string
> > literal concatenation instead of +.
> >
> > See
> https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation
> >