##// END OF EJS Templates
help: clarify quotes are needed for filesets.size expressions
timeless -
r29987:d532ef15 default
parent child Browse files
Show More
@@ -345,10 +345,10 b' def _sizetomax(s):'
345 def size(mctx, x):
345 def size(mctx, x):
346 """File size matches the given expression. Examples:
346 """File size matches the given expression. Examples:
347
347
348 - 1k (files from 1024 to 2047 bytes)
348 - size('1k') - files from 1024 to 2047 bytes
349 - < 20k (files less than 20480 bytes)
349 - size('< 20k') - files less than 20480 bytes
350 - >= .5MB (files at least 524288 bytes)
350 - size('>= .5MB') - files at least 524288 bytes
351 - 4k - 1MB (files from 4096 bytes to 1048576 bytes)
351 - size('4k - 1MB') - files from 4096 bytes to 1048576 bytes
352 """
352 """
353
353
354 # i18n: "size" is a keyword
354 # i18n: "size" is a keyword
General Comments 0
You need to be logged in to leave comments. Login now