From 4bf5fd3ee5911f0e0f1619bd0b57a9bc41430a5e Mon Sep 17 00:00:00 2001 From: Ronan Felipe Date: Wed, 7 Aug 2019 20:41:49 -0300 Subject: [PATCH] Translation to portuguese. (#22889) Translation of a paragraph from english to portuguese. There are still some text in the end of the article that still in english. --- guide/portuguese/python/class/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/portuguese/python/class/index.md b/guide/portuguese/python/class/index.md index 7090d37f4e2..4f3a1cd8919 100644 --- a/guide/portuguese/python/class/index.md +++ b/guide/portuguese/python/class/index.md @@ -25,9 +25,9 @@ class ClassName: 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. - So, if the class definition looked like this: + Referência de atributo usam a sintaxe padrão usada para todas as referências de atributo em Python: `obj.name`. + Nomes de atributos válidos são todos os nomes que estavam na classe quando o objeto daquela classe foi criado. + Então, se a definição da classe for parecida com a definição abaixo: ``` python class MyClass: "" "Um exemplo simples de classe" "" i = 12345