From 71abe14a8caefc1b215a17c40392e68b0f92a7d2 Mon Sep 17 00:00:00 2001 From: Ronan Felipe Date: Wed, 7 Aug 2019 20:40:59 -0300 Subject: [PATCH] Translation to portuguese. (#22859) There are some parts of the text that still in english. I did translated a phrase to portuguese. --- guide/portuguese/python/class/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/portuguese/python/class/index.md b/guide/portuguese/python/class/index.md index 01a4736cb8..7090d37f4e 100644 --- a/guide/portuguese/python/class/index.md +++ b/guide/portuguese/python/class/index.md @@ -23,7 +23,7 @@ class ClassName: #### Class Objects: - Class objects support two kinds of operations: attribute references and instantiation. + Objetos de uma classe soportam dois tipos de operações: Referência por atributo e instanciação. Attribute references use the standard syntax used for all attribute references in Python: `obj.name`. Valid attribute names are all the names that were in the class's namespace when the class object was created. @@ -68,4 +68,4 @@ python Complexo de classe: def **init** (self, realpart, imagpart): self.r = rea x = complexo (3,0, -4,5) -> > > xr, xi (3,0, -4,5) \`\` \` \ No newline at end of file +> > > xr, xi (3,0, -4,5) \`\` \`