Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbdc19b1

Browse files
authored
Merge pull request#1812 from python-gitlab/jlvillal/pprint
chore: add `pprint()` and `pformat()` methods to RESTObject
2 parentsac81272 +d69ba04 commitbdc19b1

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

‎docs/api-usage.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,20 @@ resources. For example:
179179
project= gl.projects.get(1)
180180
project.star()
181181
182+
You can print a Gitlab Object. For example:
183+
184+
..code-block::python
185+
186+
project= gl.projects.get(1)
187+
print(project)
188+
189+
# Or in a prettier format.
190+
project.pprint()
191+
192+
# Or explicitly via `pformat()`. This is equivalent to the above.
193+
print(project.pformat())
194+
195+
182196
Base types
183197
==========
184198

‎gitlab/base.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1717

1818
importimportlib
19+
importpprint
1920
importtextwrap
2021
fromtypesimportModuleType
2122
fromtypingimportAny,Dict,Iterable,NamedTuple,Optional,Tuple,Type
@@ -147,6 +148,14 @@ def __str__(self) -> str:
147148
data.update(self._updated_attrs)
148149
returnf"{type(self)} =>{data}"
149150

151+
defpformat(self)->str:
152+
data=self._attrs.copy()
153+
data.update(self._updated_attrs)
154+
returnf"{type(self)} =>\n{pprint.pformat(data)}"
155+
156+
defpprint(self)->None:
157+
print(self.pformat())
158+
150159
def__repr__(self)->str:
151160
ifself._id_attr:
152161
returnf"<{self.__class__.__name__}{self._id_attr}:{self.get_id()}>"

‎tests/unit/test_base.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,3 +201,33 @@ def test_inequality_no_id(self, fake_manager):
201201
obj1=FakeObject(fake_manager, {"attr1":"foo"})
202202
obj2=FakeObject(fake_manager, {"attr1":"bar"})
203203
assertobj1!=obj2
204+
205+
deftest_dunder_str(self,fake_manager):
206+
fake_object=FakeObject(fake_manager, {"attr1":"foo"})
207+
assertstr(fake_object)== (
208+
"<class 'tests.unit.test_base.FakeObject'> => {'attr1': 'foo'}"
209+
)
210+
211+
deftest_pformat(self,fake_manager):
212+
fake_object=FakeObject(
213+
fake_manager, {"attr1":"foo"*10,"ham":"eggs"*15}
214+
)
215+
assertfake_object.pformat()== (
216+
"<class 'tests.unit.test_base.FakeObject'> => "
217+
"\n{'attr1': 'foofoofoofoofoofoofoofoofoofoo',\n"
218+
" 'ham': 'eggseggseggseggseggseggseggseggseggseggseggseggseggseggseggs'}"
219+
)
220+
221+
deftest_pprint(self,capfd,fake_manager):
222+
fake_object=FakeObject(
223+
fake_manager, {"attr1":"foo"*10,"ham":"eggs"*15}
224+
)
225+
result=fake_object.pprint()
226+
assertresultisNone
227+
stdout,stderr=capfd.readouterr()
228+
assertstdout== (
229+
"<class 'tests.unit.test_base.FakeObject'> => "
230+
"\n{'attr1': 'foofoofoofoofoofoofoofoofoofoo',\n"
231+
" 'ham': 'eggseggseggseggseggseggseggseggseggseggseggseggseggseggseggs'}\n"
232+
)
233+
assertstderr==""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp