Language design

C

Chris Angelico

Poetry, including that in English, often *is* concerned with formatting.
Code is more like poetry than prose.




But you cannot do that with poetry!

Evangelical vicar in want of a portable second-hand font. Would
dispose, for the same, of a portrait, in frame, of the Bishop-elect of
Vermont.

I think you could quite easily reconstruct the formatting of that,
based on its internal structure. Even in poetry, English doesn't
depend on its formatting nearly as much as Python does; and even
there, it's line breaks, not indentation - so we're talking more like
REXX than Python. In fact, it's not uncommon for poetry to be laid out
on a single line with slashes to divide lines:

A boat beneath a sunny sky / Lingering onward dreamily / In an evening
of July / Children three that nestle near, / Eager eye and willing ear
/ Pleased a simple tale to hear...

in the same way that I might write:

call sqlexec "connect to words"; call sqlexec "create table dict (word
varchar(20) not null)"; call sqlexec "insert into dict values
('spam')"; call sqlexec "insert into dict values ('ham')"

To be sure, it looks nicer laid out with line breaks; but it's
possible to replace them with other markers. And indentation still is
completely insignificant. The only case I can think of in English of
indentation mattering is the one you mentioned of first line of
subsequent paragraphs, not by any means a universal convention and
definitely not the primary structure of the entire document.

Making line breaks significant usually throws people. It took my
players a lot of time and hints to figure this out:
http://rosuav.com/1/?id=969

ChrisA
 
M

Mark Janssen

Evangelical vicar in want of a portable second-hand font. Would
dispose, for the same, of a portrait, in frame, of the Bishop-elect of
Vermont.

I think you could quite easily reconstruct the formatting of that,
based on its internal structure. Even in poetry, English doesn't
depend on its formatting nearly as much as Python does;

(Just to dispose of this old argument:) Both Python and English
depend on both syntactical, material delimiters and whitespace. While
it may seem that Python depends more on whitespace than English, that
is highly contentious, poetry or not. Take some literature, remove
all the tabs at paragraph start and CRs at paragraph-end so that it
all runs together and you'll find that it impossible to read -- you
just won't be able to enter into the universe that the author is
attempting to build.
 
M

Mark Janssen

Really? Are you saying you (and the community at-large) always derive
If I'm inheriting from str, I inherit from str explicitly:

class MyStr(str): ...

and then str in turn inherits from object explicitly. I certainly do not
inherit from object and then re-implement all the string methods from
scratch:

I know that. Str already inherits from object (due to the language
definition). Your inheritance from object is implied by your
inheritance from a child class (str), but note there is an implied
directionality: you don't say str is the parent of object. But tell
me this: is str the superclass of object or is it the other way
around?
class MyStr(object):
def __new__(cls, value): ...
def upper(self): ...
def lower(self): ...
# and so on...

That would be ridiculous, and goes against the very idea of inheritance.
But nor do I feel the need to explicitly list the entire superclass
hierarchy:

class MyStr(str, object):
...

Now you've lost your marbles. You are arguing points that a python
programmer would not argue. Now, since I know you to be a decent
python programmer, I can only conclude that your sanity is in
question.
which would be silly. Only somebody who doesn't understand how
inheritance works in Python would do that. There's simply no need for it,
and in fact it would be actively harmful for larger hierarchies.

Explicitly inheriting from object ("class myBase(object):" rather than
"class myBase():") would not be "actively harmful" in any way.
It makes no difference whether I write:

atoms -> stars -> galaxies

or

galaxies <- stars <- atoms

nor does it make any difference if I write the chain starting at the top
and pointing down, or at the bottom and pointing up.

Here again, your sanity is questioned. You are simply wrong. Atoms
lie within galaxies, but galaxies do not lie within atoms (poetic
license excluded); i.e. there is a difference, whether your talking
about syntactically by the parser or conceptually by a human being.
Somewhere you have to put yourself in the middle. And that point
defines how you relate to the machine -- towards abstraction (upwards)
or towards the concrete (to the machine itself).
Ah, and now we come to the heart of the matter -- people have been
drawing tree-structures with the root at the top of the page for
centuries, and Mark Janssen is the first person to have realised that
they've got it all backwards.

I'll be waiting for your apology once you simply grasp the simple
(however inconvenient and unbelievable) truth. ;*)
No, Python didn't "arbitrarily" choose this behaviour.

Perhaps you don't recall the discussion.
It is standard,
normal behaviour for a key-value mapping, and it is the standard
behaviour because it is the only behaviour that makes sense for a general
purpose mapping.

No. Please don't propagate your limited sense of things as if it "the
only way to do it".
Python did not invent dicts (although it may have invented the choice of
name "dict").

If you think of inheritance in the Liskov Substitution sense, then you
might *consider* building dicts on top of sets. But it doesn't really
work, because there is no way to sensibly keep set-behaviour for dicts.

There's no need to preserve LSP -- it's just one way to think about
class relations. In fact, I'll argue that one should not -- because
the field has not perfected the object model adequately, so it would
lead to a suboptimal situation akin to premature optimization. The
conceptual abstraction is most important: a subtype (child class)
should do everything that its parent does.

(That's far from a complete definition, but I'm just laying the
groundwork to start to understand the breadth of ideas and in this
landscape of OOP and how they relate to each other.)
For example, take intersection of two sets s and t. It is a basic
principle of set intersection that s&t == t&s.

That's called "commutation", grasshopper. That's the word you want to use.
But now, take two dicts with the same keys but different values, d and e.
What values should be used when calculating d&e compared to e&d? Since
they are different values, we can either:

* prefer the values from the left argument over that from the right;
* prefer the values from the right argument over that from the left;

....the way python effectively does it: d1.update(d2) -- the values in
d2 overwrite the values in d1. This is a semi-arbitrary decision.

But here's how it should be done: any (op)eration: d1 op d2, should
first apply op to the keys of (d1,d2), and then again apply to the
values in a recursive fashion to the values. Now one will have to
define what should happen for things like __sub__ and such but at
least we have a solid framework for starting to think about it in a
more sophisticated way.
* refuse to choose and raise an exception;
* consider the intersection empty

The first three choices will break the Liskov Substitution Principle,
since now dicts *cannot* be substituted for sets. The fourth also breaks
Liskov, but for a different reason:

I'm not going to evaluate your claim because I don't care about LSP.
Why you obsess over it is simply because it's how you've come to make
sense of the confusion that is in the field.
# sets
(key in s) and (key in t) implies (key in s&t);

but

# dicts
(key in d) and (key in e) *does not* imply (key in d&e)

Eh? How so? There is a straightforward and obvious mapping from a
dict to a set, so your last line could be re-written as key in
(set(d)&set(e)) where it is clear that it *is* indeed equivalent.
So either way, whether you are an OOP purist who designs your classes
with type-theoretic purity and the Liskov Substitution Principle in mind,
or a pragmatist who designs your classes with delegation of
implementation in mind, you can't sensibly derive dicts from sets.

You *can* sensibly derive dicts from sets, because there is a clear
function that can map a dict to a set. The dict, then, is just a
specialization of set.

As an attempt to try to nail this terminology down. There's
"extending" a type, and there's "specializing" a type. One adds more
methods and one refines what the methods do. They are different.
Right. The dict literal should be {:} -- the one obvious way to do
it.

I don't agree it is obvious. It is as obvious as (,) being the empty
tuple or [,] being the empty list.

You're just being argumentative. If there are sets as built-ins, then
{:} is the obvious dict literal, because {} is the obvious one for set.
You don't need [,] to be the list literal because there is no simpler
list-type.

The point is that the obvious way to write an empty collection is using a
pair of delimiters, not to shove an arbitrary separator separating
nothing at all in there:

It's not a arbitrary separator, it is the obvious one, given that set
is already using the the empty curly braces and dict uses the colon as
a separator.
"not someone wanting to understand the limitations of python..." -- are
you aware that I started this thread?

Hence, the irony.
 
A

Antoon Pardon

Op 15-09-13 04:37, Mark Janssen schreef:
Here again, your sanity is questioned. You are simply wrong. Atoms
lie within galaxies, but galaxies do not lie within atoms (poetic
license excluded);

No body is questioning that. What is being pointed out is, that it
doesn't make a difference whether you say that atoms lie within galaxies
or you say galaxies have atoms in them. It doesn't matter which of the
items you mention first in defining the relation between the two.
i.e. there is a difference, whether your talking
about syntactically by the parser or conceptually by a human being.
Somewhere you have to put yourself in the middle. And that point
defines how you relate to the machine -- towards abstraction (upwards)
or towards the concrete (to the machine itself).

Maybe, but where you put yourself is not determined by such unimportant
details as to which of the components in a relation you mention first. a
< b or b > a, are two ways to write the exact same relation and someone
arguing that there is an important difference because in the first case
we mention a first while in the second case we mention b first is only
illustrating his own confusion. And that is essentially
what you are doing.
 
N

Neil Cerutti

Evangelical vicar in want of a portable second-hand font. Would
dispose, for the same, of a portrait, in frame, of the Bishop-elect of
Vermont.

I think you could quite easily reconstruct the formatting of
that, based on its internal structure. Even in poetry, English
doesn't depend on its formatting nearly as much as Python does;
and even there, it's line breaks, not indentation - so we're
talking more like REXX than Python. In fact, it's not uncommon
for poetry to be laid out on a single line with slashes to
divide lines:

There's lots of poetry with significant indentation, though.
Imbuing the shape of the text on the page with significance is a
thing.
 
C

Chris Angelico

There's lots of poetry with significant indentation, though.
Imbuing the shape of the text on the page with significance is a
thing.

And you can do that with C code, too. Doesn't mean that indentation is
important to C; it means that you're layering different types of
information into a single piece of work. It's like Perl code drawn in
the shape of a camel - a beautiful hack.

ChrisA
 
N

Neil Cerutti

And you can do that with C code, too. Doesn't mean that
indentation is important to C; it means that you're layering
different types of information into a single piece of work.
It's like Perl code drawn in the shape of a camel - a beautiful
hack.

I just meant you can't condense whitespace in a poem and retain
all its meaning. It will break certain kinds of quotation styles
in publications, as well.
 
C

Chris Angelico

I just meant you can't condense whitespace in a poem and retain
all its meaning. It will break certain kinds of quotation styles
in publications, as well.

Sure. I'm still trying to work out if it's possible to deliver a
verbal speech with fancy information in its written version... English
is a fun language to tinker with!

ChrisA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,226
Members
46,815
Latest member
treekmostly22

Latest Threads

Top