godot/core/io
Rémi Verschelde cd4e46ee65 SCons: Format buildsystem files with psf/black
Configured for a max line length of 120 characters.

psf/black is very opinionated and purposely doesn't leave much room for
configuration. The output is mostly OK so that should be fine for us,
but some things worth noting:

- Manually wrapped strings will be reflowed, so by using a line length
  of 120 for the sake of preserving readability for our long command
  calls, it also means that some manually wrapped strings are back on
  the same line and should be manually merged again.

- Code generators using string concatenation extensively look awful,
  since black puts each operand on a single line. We need to refactor
  these generators to use more pythonic string formatting, for which
  many options are available (`%`, `format` or f-strings).

- CI checks and a pre-commit hook will be added to ensure that future
  buildsystem changes are well-formatted.
2020-03-30 09:05:53 +02:00
..
compression.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
compression.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
config_file.cpp Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
config_file.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
dtls_server.cpp Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
dtls_server.h Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
file_access_buffered.cpp PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
file_access_buffered.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
file_access_buffered_fa.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
file_access_compressed.cpp Fixes crash when resource file is corrupted 2020-02-11 17:29:25 +08:00
file_access_compressed.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
file_access_encrypted.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
file_access_encrypted.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
file_access_memory.cpp Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
file_access_memory.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
file_access_network.cpp Drop old semaphore implementation 2020-03-03 13:20:42 +01:00
file_access_network.h Drop old semaphore implementation 2020-03-03 13:20:42 +01:00
file_access_pack.cpp Improve UX of drive letters 2020-03-03 10:38:34 +01:00
file_access_pack.h Improve UX of drive letters 2020-03-03 10:38:34 +01:00
file_access_zip.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
file_access_zip.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
http_client.cpp Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
http_client.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
image_loader.cpp Removed interactive loader, added proper thread loading. 2020-02-28 11:20:45 -03:00
image_loader.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
ip.cpp Drop old semaphore implementation 2020-03-03 13:20:42 +01:00
ip.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
ip_address.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
ip_address.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
json.cpp Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT. 2020-02-25 12:55:53 +01:00
json.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
logger.cpp Improve the console error logging appearance 2020-01-19 00:24:17 +01:00
logger.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
marshalls.cpp Update docs and bindings for new integer vector types 2020-02-25 15:27:29 +01:00
marshalls.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
multiplayer_api.cpp Merge pull request #36599 from AndreaCatania/gen_rpc_data_export 2020-03-13 10:19:30 +01:00
multiplayer_api.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
net_socket.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
net_socket.h Add peek option to NetSocket recv_from. 2020-02-16 01:11:30 +01:00
networked_multiplayer_peer.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
networked_multiplayer_peer.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
packet_peer.cpp PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
packet_peer.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
packet_peer_dtls.cpp Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
packet_peer_dtls.h Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
packet_peer_udp.cpp UDPServer and PacketPeerUDP connect_to_host. 2020-02-16 01:11:30 +01:00
packet_peer_udp.h UDPServer and PacketPeerUDP connect_to_host. 2020-02-16 01:11:30 +01:00
pck_packer.cpp Fix potential divisions by 0 reported by MSVC 2020-03-21 11:54:08 +01:00
pck_packer.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
resource_format_binary.cpp Fixes bugs found by Sonarcloud and Coverity 2020-03-02 19:17:20 +01:00
resource_format_binary.h Removed interactive loader, added proper thread loading. 2020-02-28 11:20:45 -03:00
resource_importer.cpp Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
resource_importer.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
resource_loader.cpp Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
resource_loader.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
resource_saver.cpp Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
resource_saver.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
SCsub SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
stream_peer.cpp PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
stream_peer.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
stream_peer_ssl.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
stream_peer_ssl.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
stream_peer_tcp.cpp Add TCP poll function (not exposed). 2020-03-08 12:16:09 +01:00
stream_peer_tcp.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
tcp_server.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
tcp_server.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
translation_loader_po.cpp i18n: Fix parsing of multiple escapes before quotes 2020-03-20 08:48:11 +01:00
translation_loader_po.h i18n: Add support for translating the class reference 2020-03-20 08:48:11 +01:00
udp_server.cpp Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
udp_server.h Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
xml_parser.cpp Fixes XMLParser leak when open multiple times 2020-01-20 11:29:14 +08:00
xml_parser.h Style: Harmonize header guards to style guide [Core] 2020-03-25 11:22:19 +01:00
zip_io.cpp Fixes leak when importing zip in AssetLib 2020-01-22 09:34:18 +08:00
zip_io.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00