Skip to content

Commit

Permalink
Fix comment style
Browse files Browse the repository at this point in the history
  • Loading branch information
encukou committed Oct 3, 2023
1 parent 1da65d2 commit 69db01e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/rpmsystem-py.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
PyObject * utf8FromString(const char *s);

#ifndef Py_TPFLAGS_IMMUTABLETYPE
// Flag was added in Python 3.10.
// If the current Python doesn't have it, rpm's type objects will be mutable.
/*
* Flag was added in Python 3.10.
* If the current Python doesn't have it, rpm's type objects will be mutable.
*/
#define Py_TPFLAGS_IMMUTABLETYPE 0
#endif

Expand Down

0 comments on commit 69db01e

Please sign in to comment.